:root {
  --bg: #030706;
  --bg-2: #07110f;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-2: rgba(255, 255, 255, 0.115);
  --line: rgba(219, 255, 239, 0.14);
  --text: #f4fbf8;
  --muted: #a9bbb5;
  --ink: #06100e;
  --ink-soft: #52635e;
  --paper: #f4f7f4;
  --accent: #11c789;
  --accent-2: #80e45f;
  --accent-3: #08a9a2;
  --radius: 8px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(17, 199, 137, 0.18), transparent 32rem),
    radial-gradient(circle at 8% 24%, rgba(8, 169, 162, 0.16), transparent 30rem),
    linear-gradient(180deg, #020504 0%, #06100f 48%, #020504 100%);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 7, 6, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark,
.footer-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius);
  color: #dce9e5;
  font-size: 0.91rem;
  font-weight: 800;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-action {
  color: #05100e;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.site-header.is-scrolled {
  background: rgba(3, 7, 6, 0.92);
}

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

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

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
  padding: 130px 0 88px;
}

.hero-logo {
  width: 164px;
  height: auto;
  margin-bottom: 42px;
  opacity: 0.98;
}

.hero h1,
.section-heading h2,
.cta-section h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 5.8vw, 5.6rem);
  line-height: 0.96;
  font-weight: 850;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: #d9e7e2;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.55;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 850;
}

.button.primary {
  color: #04100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 18px 44px rgba(17, 199, 137, 0.28);
}

.button.primary:hover {
  transform: translateY(-2px);
}

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

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

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #c7dad4;
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mark {
  position: absolute;
  width: min(520px, 92%);
  opacity: 0.16;
  filter: blur(0.2px) drop-shadow(0 0 90px rgba(17, 199, 137, 0.32));
}

.studio-panel {
  position: relative;
  z-index: 1;
  width: min(455px, 100%);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.studio-top {
  display: flex;
  gap: 8px;
  padding: 6px 4px 18px;
}

.studio-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
}

.studio-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(4, 12, 11, 0.48);
}

.studio-row.active {
  background: linear-gradient(135deg, rgba(128, 228, 95, 0.16), rgba(17, 199, 137, 0.08));
}

.studio-row small {
  color: var(--accent-2);
  font-weight: 900;
}

.studio-row strong {
  font-size: 1.04rem;
}

.studio-row span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.trusted-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.trusted-band span {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #dcebe7;
  background: rgba(4, 9, 8, 0.78);
  font-weight: 850;
  text-align: center;
}

.trust-section {
  padding: 112px 0 28px;
  color: var(--text);
}

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

.trust-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.trust-card h3 {
  margin: 0;
  font-size: 1.22rem;
}

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

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  padding: 118px 0;
  color: var(--text);
}

.section-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 950;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
  line-height: 0.98;
  font-weight: 850;
}

.section-heading p {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.section-heading.center p {
  margin-right: auto;
  margin-left: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 248px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.service-card,
.trust-card,
.process-step,
.project-row,
.contact-card,
.studio-panel {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.trust-card:hover,
.process-step:hover,
.project-row:hover {
  transform: translateY(-4px);
  border-color: rgba(128, 228, 95, 0.34);
}

.service-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 16px 35px rgba(17, 199, 137, 0.22);
}

.service-card h3,
.project-row h3 {
  margin: 0;
  font-size: 1.28rem;
}

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

.process-section,
.projects-section,
.cta-section {
  padding: 112px 0;
  color: var(--text);
}

.process-section {
  margin-top: 16px;
  background: transparent;
}

.process-section .section-heading p,
.projects-section .section-heading p,
.project-row p,
.process-step p,
.cta-section p {
  color: var(--muted);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.process-step span {
  color: #0a8e70;
  font-size: 2.2rem;
  font-weight: 950;
}

.projects-section {
  background: transparent;
}

.project-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.project-row {
  display: grid;
  grid-template-columns: 170px 0.8fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.project-row span {
  color: #0a8e70;
  font-weight: 950;
}

.cta-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 50px;
  align-items: center;
  padding-bottom: 132px;
  background: transparent;
}

.cta-logo {
  width: 170px;
  margin-bottom: 32px;
  filter: drop-shadow(0 18px 44px rgba(17, 199, 137, 0.18));
}

.cta-section h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  line-height: 0.98;
  font-weight: 850;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(6, 16, 14, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 28px 70px rgba(8, 16, 15, 0.1);
}

.contact-card label {
  display: grid;
  gap: 8px;
  color: #26312f;
  font-size: 0.9rem;
  font-weight: 850;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  border: 1px solid rgba(8, 16, 15, 0.13);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.contact-card input:focus,
.contact-card textarea:focus,
.contact-card select:focus {
  border-color: rgba(17, 199, 137, 0.78);
  box-shadow: 0 0 0 4px rgba(17, 199, 137, 0.14);
}

.form-status {
  padding: 13px 14px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
}

.form-status.success {
  color: #063d2b;
  background: rgba(18, 201, 133, 0.16);
}

.form-status.error {
  color: #6d1e1e;
  background: rgba(220, 55, 55, 0.13);
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.text-link {
  color: #0a8e70;
  font-weight: 950;
}

.footer {
  padding: 0;
  color: #dcebe7;
  background: #111716;
  border-top: 1px solid rgba(219, 255, 239, 0.12);
}

.footer-main {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 1.25fr 0.62fr 0.62fr 0.95fr;
  gap: 56px;
  align-items: start;
  margin: 0 auto;
  padding: 58px 0;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
}

.footer-logo {
  width: 170px;
  height: auto;
}

.footer p {
  max-width: 430px;
  margin: 0;
  color: #b9c8c4;
  line-height: 1.7;
}

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

.footer-column strong {
  margin-bottom: 4px;
  color: #f4fbf8;
  font-size: 1rem;
}

.footer-column a {
  color: #c2d0cc;
  font-weight: 760;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-social {
  gap: 18px;
}

.social-buttons {
  display: flex;
  gap: 12px;
}

.social-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(219, 255, 239, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-button:hover {
  transform: translateY(-2px);
  color: #04100d;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.footer-email-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 22px;
  border-radius: 999px;
  color: #04100d !important;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 16px 40px rgba(17, 199, 137, 0.22);
  font-weight: 900 !important;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  padding: 18px 16px;
  color: #a9bbb5;
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.92rem;
  font-weight: 720;
}

.animate-in {
  opacity: 1;
  transform: none;
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.portal-body {
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(120deg, rgba(128, 228, 95, 0.08), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(17, 199, 137, 0.28), transparent 30rem),
    radial-gradient(circle at 12% 18%, rgba(8, 169, 162, 0.22), transparent 28rem),
    linear-gradient(180deg, #04110e 0%, #020504 74%);
}

.login-shell {
  min-height: 100vh;
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 72px 0;
}

.portal-brand {
  margin-bottom: 58px;
}

.login-logo {
  width: 170px;
  margin-bottom: 34px;
}

.login-brand h1,
.portal-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.96;
}

.login-brand p,
.portal-hero p {
  max-width: 630px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.75;
}

.login-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.login-trust span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dcebe7;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.login-card,
.portal-card,
.portal-status {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.login-card {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.login-card h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.login-card label {
  display: grid;
  gap: 8px;
  color: #dcebe7;
  font-size: 0.9rem;
  font-weight: 850;
}

.login-card input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: 15px;
  color: var(--text);
  background: rgba(3, 7, 6, 0.62);
  outline: none;
}

.login-card input:focus {
  border-color: rgba(17, 199, 137, 0.72);
  box-shadow: 0 0 0 4px rgba(17, 199, 137, 0.13);
}

.portal-header {
  width: min(1120px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 18px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 7, 6, 0.9);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.portal-header nav {
  display: flex;
  gap: 8px;
}

.portal-header nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: #dcebe7;
  font-weight: 800;
}

.portal-header nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.portal-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0 120px;
}

.portal-hero {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: end;
}

.portal-status {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(128, 228, 95, 0.18), rgba(17, 199, 137, 0.08)),
    rgba(255, 255, 255, 0.1);
}

.portal-status small,
.portal-status span {
  display: block;
  color: #c2d3ce;
  font-weight: 800;
}

.portal-status strong {
  display: block;
  margin: 12px 0;
  font-size: 2rem;
  color: #f8fffb;
}

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

.portal-card {
  min-height: 270px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.075)),
    rgba(5, 18, 15, 0.72);
}

.portal-card span {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 950;
}

.portal-card h2 {
  margin: 24px 0 12px;
  color: #f8fffb;
}

.portal-card p {
  color: #c2d3ce;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 7, 6, 0.96);
  }

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

  .site-nav a {
    justify-content: center;
  }

  .hero,
  .split-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 112px;
  }

  .trusted-band,
  .trust-grid,
  .process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .login-shell,
  .portal-hero,
  .portal-grid {
    grid-template-columns: 1fr;
  }

  .project-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

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

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .section-shell {
    width: calc(100% - 20px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 3.16rem;
  }

  .hero-logo {
    width: 132px;
    margin-bottom: 32px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .studio-row {
    grid-template-columns: 36px 1fr;
  }

  .studio-row span {
    grid-column: 2;
  }

  .trusted-band,
  .trust-grid,
  .services-grid,
  .process-track {
    grid-template-columns: 1fr;
  }

  .login-shell {
    width: calc(100% - 20px);
    padding-top: 36px;
  }

  .login-card {
    padding: 20px;
  }

  .portal-shell,
  .portal-header {
    width: calc(100% - 20px);
  }

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

  .split-section,
  .process-section,
  .projects-section,
  .cta-section {
    padding: 78px 0;
  }
}

/* 2026-04-28 corrective polish: proportional desktop/mobile tech product site */
body {
  overflow-x: hidden;
}

html,
body {
  max-width: 100%;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(17, 199, 137, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 199, 137, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 58%);
}

.section-shell {
  width: min(1180px, calc(100% - 48px));
}

.site-header {
  width: min(1180px, calc(100% - 48px));
}

.site-nav a {
  font-size: 0.84rem;
  padding: 0 11px;
}

.hero {
  min-height: 760px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  padding: 128px 0 72px;
}

.hero-logo {
  width: 118px;
  margin-bottom: 34px;
}

.hero-kicker {
  letter-spacing: 0.02em;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.1rem, 4.65vw, 5.05rem);
  line-height: 0.98;
}

.hero-lead {
  max-width: 610px;
  font-size: clamp(1.02rem, 1.18vw, 1.22rem);
  line-height: 1.68;
}

.hero-visual {
  min-height: 520px;
}

.tech-orbit {
  min-height: 500px;
}

.tech-orbit::before {
  width: min(500px, 84vw);
  background:
    radial-gradient(circle at 46% 45%, rgba(128, 228, 95, 0.13), transparent 22%),
    radial-gradient(circle, rgba(17, 199, 137, 0.18), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
}

.tech-orbit::after {
  content: "";
  position: absolute;
  width: min(570px, 90vw);
  aspect-ratio: 1;
  border: 1px dashed rgba(128, 228, 95, 0.18);
  border-radius: 50%;
}

.tech-orbit .hero-mark {
  width: 108px;
  opacity: 0.92;
}

.window-main {
  top: 56px;
  right: 24px;
  width: min(360px, 75vw);
  padding: 18px;
}

.window-side {
  left: 24px;
  bottom: 118px;
}

.window-mini {
  right: 72px;
  bottom: 42px;
}

.product-signal {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(3, 16, 13, 0.55);
}

.product-signal strong,
.product-signal span {
  grid-column: 1;
}

.product-signal b {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--accent-2);
  font-size: 1.8rem;
}

.trusted-band {
  margin-top: -20px;
}

.products-section,
.split-section,
.scope-section,
.trust-section,
.process-section,
.cta-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.section-heading.center {
  max-width: 820px;
  margin-inline: auto;
}

.section-heading h2,
.cta-section h2 {
  text-wrap: balance;
}

.product-grid {
  gap: 22px;
}

.product-card {
  min-height: 500px;
  padding: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(128, 228, 95, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(5, 18, 15, 0.88);
}

.product-card h3 {
  font-size: clamp(2.35rem, 3.3vw, 3.7rem);
  line-height: 0.96;
}

.product-card p {
  max-width: 520px;
}

.product-card li,
.plan-card li {
  line-height: 1.45;
}

.brand-band {
  margin: 48px 0 24px;
  padding: 76px 0;
  color: var(--text);
  background:
    radial-gradient(circle at 24% 12%, rgba(128, 228, 95, 0.24), transparent 22rem),
    linear-gradient(135deg, rgba(17, 199, 137, 0.18), rgba(8, 169, 162, 0.1)),
    rgba(6, 21, 18, 0.92);
  border-block: 1px solid rgba(219, 255, 239, 0.12);
}

.brand-band .section-number {
  color: var(--accent);
}

.brand-band h2 {
  color: var(--text);
  font-size: clamp(2.35rem, 3.9vw, 4.1rem);
}

.brand-band p {
  color: #c7d8d3;
}

.services-grid-large {
  gap: 18px;
}

.service-card,
.scope-card,
.trust-card,
.process-step {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.052)),
    rgba(5, 18, 15, 0.72);
}

.scope-grid {
  gap: 18px;
}

.scope-card {
  min-height: 245px;
}

.contact-card {
  color: var(--text);
  border: 1px solid rgba(219, 255, 239, 0.16);
  background:
    radial-gradient(circle at 84% 8%, rgba(17, 199, 137, 0.18), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065)),
    rgba(5, 18, 15, 0.92);
  box-shadow: 0 34px 95px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(22px);
}

.contact-card label {
  color: #dcebe7;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  color: var(--text);
  border: 1px solid rgba(219, 255, 239, 0.14);
  background: rgba(2, 8, 7, 0.78);
}

.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(220, 235, 231, 0.48);
}

.contact-card select option {
  color: #06100e;
}

.text-link {
  color: var(--accent);
}

.prelaunch-dialog {
  width: min(720px, 100%);
  background:
    radial-gradient(circle at 86% 8%, rgba(17, 199, 137, 0.22), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    #06110f;
}

.prelaunch-dialog .contact-card {
  box-shadow: none;
}

@media (prefers-reduced-motion: no-preference) {
  .tech-orbit::after {
    animation: orbitSpin 22s linear infinite;
  }

  .product-card::after {
    animation: pulseGlow 5.5s ease-in-out infinite;
  }
}

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

@keyframes pulseGlow {
  50% {
    opacity: 0.55;
    transform: scale(1.08);
  }
}

@media (max-width: 960px) {
  .section-shell,
  .site-header {
    width: min(100% - 32px, 720px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 10vw, 4.2rem);
  }

  .hero-visual {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .section-shell,
  .site-header {
    width: calc(100% - 24px);
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 46px;
  }

  .hero-logo {
    width: 92px;
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 10.2vw, 3rem);
    line-height: 1.02;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .trusted-band {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trusted-band span {
    min-height: 48px;
  }

  .tech-orbit {
    min-height: 350px;
  }

  .window-main {
    top: 24px;
    left: 50%;
    right: auto;
    margin-left: -135px;
    width: min(270px, 78vw);
  }

  .window-side {
    left: 0;
    bottom: 64px;
    width: 172px;
  }

  .window-mini {
    right: 6px;
    bottom: 12px;
    width: 150px;
  }

  .products-section,
  .split-section,
  .scope-section,
  .trust-section,
  .process-section,
  .cta-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.02;
  }

  .product-card h3 {
    font-size: 2.25rem;
  }

  .brand-band {
    padding: 62px 0;
  }

  .brand-band h2 {
    font-size: 2.2rem;
  }

  .contact-card {
    padding: 20px;
  }

  .footer-main {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    padding: 44px 0;
  }

  .footer-logo {
    width: 138px;
  }

  .footer-email-button {
    width: 100%;
  }
}

.hero-visual,
.tech-orbit {
  overflow: hidden;
}

.product-card,
.product-card *,
.service-card *,
.scope-card *,
.trust-card *,
.process-step * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hp-field {
  display: none !important;
}

@media (max-width: 640px) {
  .tech-orbit {
    width: 100%;
  }

  .product-card {
    overflow: hidden;
  }
}

/* Full tech company redesign pass */
:root {
  --tech-bg: #020706;
  --tech-panel: rgba(10, 24, 21, 0.82);
  --tech-panel-strong: rgba(13, 31, 27, 0.96);
  --tech-border: rgba(195, 255, 226, 0.16);
  --tech-text: #f6fffb;
  --tech-muted: #b6cbc4;
}

body {
  color: var(--tech-text);
  background:
    radial-gradient(circle at 78% 4%, rgba(17, 199, 137, 0.16), transparent 32rem),
    radial-gradient(circle at 14% 20%, rgba(8, 169, 162, 0.14), transparent 28rem),
    var(--tech-bg);
}

body::before {
  background:
    linear-gradient(180deg, rgba(2, 7, 6, 0.68), rgba(2, 7, 6, 0.95)),
    radial-gradient(circle at 70% 12%, rgba(17, 199, 137, 0.14), transparent 32rem),
    linear-gradient(180deg, #020706 0%, #04120f 44%, #020706 100%);
}

.site-header {
  top: 16px;
  width: min(1240px, calc(100% - 48px));
  min-height: 68px;
  padding: 10px 12px 10px 16px;
  border-color: rgba(195, 255, 226, 0.14);
  background: rgba(2, 8, 7, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.36);
}

.brand {
  min-width: 142px;
}

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

.site-nav {
  flex: 1;
  justify-content: flex-end;
  gap: 14px;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 44px;
  padding: 4px;
  border: 1px solid rgba(195, 255, 226, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
}

.site-nav a {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: #dcebe7;
  font-size: 0.82rem;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-action {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #02100d;
  white-space: nowrap;
}

.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: 820px;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: 72px;
  padding: 150px 0 86px;
}

.hero-content {
  align-self: center;
}

.hero-logo {
  width: 124px;
  margin-bottom: 34px;
}

.hero-kicker,
.section-number {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.65rem, 5.35vw, 6.3rem);
  line-height: 0.91;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 640px;
  color: var(--tech-muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.button {
  border-radius: 999px;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  min-height: 610px;
}

.tech-orbit {
  min-height: 590px;
  overflow: visible;
}

.tech-orbit::before {
  width: min(560px, 88vw);
  opacity: 0.92;
}

.tech-orbit::after {
  width: min(640px, 94vw);
  opacity: 0.72;
}

.window-main {
  top: 52px;
  right: 8px;
  width: min(405px, 78vw);
  padding: 20px;
}

.window-side {
  left: 8px;
  bottom: 134px;
  width: 250px;
}

.window-mini {
  right: 86px;
  bottom: 44px;
  width: 188px;
}

.code-window {
  border-color: rgba(195, 255, 226, 0.18);
  background:
    radial-gradient(circle at 85% 10%, rgba(17, 199, 137, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
}

.trusted-band {
  width: min(1240px, calc(100% - 48px));
  margin-top: 4px;
  border-radius: 999px;
}

.trusted-band span {
  min-height: 58px;
  color: #dcebe7;
}

.command-section {
  padding: 38px 0 96px;
}

.command-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--tech-border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(17, 199, 137, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.command-copy h2 {
  max-width: 520px;
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 0.98;
}

.command-copy p {
  max-width: 560px;
  color: var(--tech-muted);
  line-height: 1.75;
}

.command-ui {
  padding: 18px;
  border: 1px solid rgba(195, 255, 226, 0.14);
  border-radius: 8px;
  background: rgba(2, 8, 7, 0.62);
}

.command-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.command-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.26);
}

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

.command-metrics div {
  min-height: 132px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.command-metrics strong {
  color: var(--tech-text);
}

.command-metrics b {
  color: var(--accent);
  font-size: 2.4rem;
}

.command-metrics small {
  color: var(--tech-muted);
  font-weight: 750;
}

.command-flow {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

.command-flow span {
  padding: 10px 12px;
  border-radius: 999px;
  color: #07110f;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-size: 0.8rem;
  font-weight: 900;
}

.command-flow i {
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.products-section,
.split-section,
.scope-section,
.trust-section,
.process-section,
.cta-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-heading h2 {
  color: var(--tech-text);
}

.section-heading p {
  color: var(--tech-muted);
}

.product-grid {
  gap: 24px;
}

.product-card {
  min-height: 540px;
  border-color: rgba(195, 255, 226, 0.16);
  background:
    radial-gradient(circle at 84% 10%, rgba(17, 199, 137, 0.22), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.058)),
    var(--tech-panel);
}

.product-card h3 {
  font-size: clamp(2.8rem, 3.35vw, 4.2rem);
}

.brand-band {
  background:
    linear-gradient(135deg, rgba(17, 199, 137, 0.92), rgba(8, 169, 162, 0.86)),
    #10b995;
}

.brand-band h2,
.brand-band p,
.brand-band .section-number {
  color: #02100d;
}

.brand-band h2 {
  max-width: 720px;
}

.service-card,
.scope-card,
.trust-card,
.process-step,
.contact-card {
  border-color: rgba(195, 255, 226, 0.16);
}

.contact-card {
  background:
    radial-gradient(circle at 84% 8%, rgba(17, 199, 137, 0.17), transparent 14rem),
    var(--tech-panel-strong);
}

.footer {
  background: #181c1f;
}

@media (prefers-reduced-motion: no-preference) {
  .command-metrics div {
    animation: metricBreath 4.8s ease-in-out infinite;
  }

  .command-metrics div:nth-child(2) {
    animation-delay: 700ms;
  }

  .command-metrics div:nth-child(3) {
    animation-delay: 1400ms;
  }
}

@keyframes metricBreath {
  50% {
    transform: translateY(-5px);
    border-color: rgba(128, 228, 95, 0.34);
  }
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .site-nav {
    justify-content: flex-start;
  }

  .nav-links {
    border-radius: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    border: 1px solid var(--tech-border);
    border-radius: 8px;
    background: rgba(2, 8, 7, 0.98);
  }

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

  .nav-links {
    display: grid;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .site-nav a,
  .site-nav .nav-action {
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
  }

  .command-panel {
    grid-template-columns: 1fr;
  }

  .command-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 62px;
    width: calc(100% - 24px);
  }

  .brand {
    min-width: 0;
  }

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

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .tech-orbit {
    overflow: hidden;
  }

  .trusted-band {
    width: calc(100% - 24px);
    border-radius: 8px;
  }

  .command-panel {
    padding: 22px;
  }

  .command-flow {
    grid-template-columns: 1fr;
  }

  .command-flow i {
    display: none;
  }

  .products-section,
  .split-section,
  .scope-section,
  .trust-section,
  .process-section,
  .cta-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }
}

/* Precision pass: header, Pulse/BID proportions and footer alignment */
.brand-logo {
  width: 116px;
  height: auto;
}

.site-header .brand {
  min-width: 146px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.site-header .brand-mark {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 18px rgba(17, 199, 137, 0.26));
}

.site-header {
  position: sticky;
  top: 14px;
  left: auto;
  transform: none;
  margin: 14px auto 0;
  min-height: 60px;
  padding: 8px 10px 8px 18px;
  background:
    linear-gradient(90deg, rgba(3, 12, 10, 0.94), rgba(6, 19, 16, 0.88)),
    rgba(3, 8, 7, 0.9);
}

.nav-links {
  min-height: 40px;
}

.site-nav a {
  min-height: 34px;
  font-size: 0.8rem;
}

.site-nav .nav-action {
  min-height: 40px;
}

.hero {
  padding-top: 78px;
}

.hero-logo {
  display: none;
}

.pulse-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
  width: min(1180px, calc(100% - 64px));
}

.pulse-section .section-heading h2 {
  max-width: 620px;
  font-size: clamp(2.6rem, 3.4vw, 4rem);
  line-height: 1;
}

.pulse-section .section-heading p {
  max-width: 610px;
  text-align: left;
}

.pulse-section .services-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pulse-section .service-card {
  min-height: 310px;
  padding: 28px;
}

.pulse-section .service-card p {
  font-size: 1rem;
  line-height: 1.62;
}

.bid-section .section-heading {
  max-width: 900px;
}

.bid-section .section-heading h2 {
  font-size: clamp(2.8rem, 4.1vw, 4.75rem);
  line-height: 0.98;
}

.bid-section .section-heading p {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.bid-intel-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin: 42px 0 28px;
  padding: 30px;
  border: 1px solid rgba(195, 255, 226, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 20%, rgba(17, 199, 137, 0.2), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.bid-intel-copy h3 {
  max-width: 520px;
  margin: 12px 0;
  font-size: clamp(2rem, 3.1vw, 3.55rem);
  line-height: 0.98;
}

.bid-intel-copy p {
  max-width: 560px;
  color: var(--tech-muted);
  line-height: 1.72;
}

.bid-orbit {
  position: relative;
  min-height: 320px;
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 199, 137, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 199, 137, 0.06) 1px, transparent 1px),
    rgba(2, 8, 7, 0.52);
  background-size: 48px 48px;
}

.bid-orbit::before {
  content: "";
  position: absolute;
  inset: 42px;
  border: 1px dashed rgba(128, 228, 95, 0.22);
  border-radius: 50%;
}

.bid-node {
  position: absolute;
  width: 170px;
  padding: 14px;
  border: 1px solid rgba(195, 255, 226, 0.16);
  border-radius: 8px;
  background: rgba(8, 23, 20, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.bid-node strong,
.bid-node span {
  display: block;
}

.bid-node strong {
  color: var(--tech-text);
}

.bid-node span {
  margin-top: 6px;
  color: var(--tech-muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.bid-node.main {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #02100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.bid-node.main strong,
.bid-node.main span {
  color: #02100d;
}

.bid-node.a {
  top: 28px;
  left: 36px;
}

.bid-node.b {
  top: 48px;
  right: 34px;
}

.bid-node.c {
  right: 96px;
  bottom: 34px;
}

.bid-section .scope-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.bid-section .scope-card {
  min-height: 230px;
  padding: 24px;
}

.footer-main {
  align-items: start;
  grid-template-columns: 1.08fr 0.72fr 0.72fr 0.95fr;
  gap: 48px;
}

.footer-brand-block {
  align-content: start;
  justify-items: start;
  gap: 22px;
}

.footer-logo {
  width: 138px;
}

.footer p {
  max-width: 360px;
}

.footer-email-button {
  min-width: 260px;
}

@media (prefers-reduced-motion: no-preference) {
  .bid-node.main {
    animation: bidPulse 4.2s ease-in-out infinite;
  }

  .bid-orbit::before {
    animation: orbitSpin 28s linear infinite;
  }
}

@keyframes bidPulse {
  50% {
    box-shadow: 0 0 0 10px rgba(17, 199, 137, 0.09), 0 22px 60px rgba(17, 199, 137, 0.22);
  }
}

@media (max-width: 1100px) {
  .pulse-section,
  .bid-intel-panel {
    grid-template-columns: 1fr;
  }

  .pulse-section .services-grid-large,
  .bid-section .scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .brand-logo {
    width: 104px;
  }

  .site-nav {
    justify-items: stretch;
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-left: 14px;
  }

  .hero {
    padding-top: 52px;
  }

  .pulse-section .services-grid-large,
  .bid-section .scope-grid {
    grid-template-columns: 1fr;
  }

  .pulse-section .service-card,
  .bid-section .scope-card {
    min-height: auto;
  }

  .bid-section .section-heading h2 {
    font-size: clamp(2.25rem, 9vw, 3.1rem);
  }

  .bid-intel-panel {
    padding: 20px;
  }

  .bid-orbit {
    min-height: 360px;
  }

  .bid-node {
    width: 150px;
  }

  .bid-node.a {
    left: 16px;
  }

  .bid-node.b {
    right: 16px;
  }

  .bid-node.c {
    right: 42px;
  }

  .footer-main {
    gap: 26px;
  }
}

/* Hero product-grade dashboard */
.ecosystem-dashboard {
  position: relative;
  width: min(660px, 100%);
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.dashboard-glow {
  position: absolute;
  inset: 7% 0 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 56% 42%, rgba(17, 199, 137, 0.26), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(128, 228, 95, 0.13), transparent 24%);
  filter: blur(8px);
  opacity: 0.9;
  z-index: -1;
}

.dashboard-shell {
  width: min(620px, 100%);
  border: 1px solid rgba(195, 255, 226, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.135), rgba(255, 255, 255, 0.055)),
    rgba(4, 14, 12, 0.9);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.dashboard-topbar {
  min-height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(195, 255, 226, 0.12);
  background: rgba(0, 0, 0, 0.2);
}

.dashboard-topbar span,
.dashboard-topbar em {
  color: var(--accent);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-topbar strong {
  display: block;
  margin-top: 4px;
  color: var(--tech-text);
  font-size: 1.05rem;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 86px 1fr;
  min-height: 390px;
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px 12px;
  border-right: 1px solid rgba(195, 255, 226, 0.1);
  background: rgba(0, 0, 0, 0.16);
}

.dashboard-sidebar img {
  width: 34px;
  margin: 0 auto 10px;
}

.dashboard-sidebar span {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #bcd0ca;
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.72rem;
  font-weight: 850;
}

.dashboard-sidebar span.active {
  color: #02100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.dashboard-main {
  padding: 18px;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-metrics article {
  min-height: 104px;
  display: grid;
  align-content: space-between;
  padding: 14px;
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
}

.dashboard-metrics span,
.dashboard-metrics small {
  color: #aac0ba;
  font-size: 0.72rem;
  font-weight: 760;
}

.dashboard-metrics strong {
  color: var(--tech-text);
  font-size: 1.7rem;
  line-height: 1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 12px;
}

.signal-board,
.radar-board {
  min-height: 214px;
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 8px;
  background: rgba(1, 8, 7, 0.52);
}

.signal-board {
  padding: 14px;
}

.board-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.board-head strong {
  color: var(--tech-text);
}

.board-head span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
}

.signal-row {
  min-height: 34px;
  display: grid;
  grid-template-columns: 8px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.signal-row b {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(17, 199, 137, 0.45);
}

.signal-row span {
  color: #dcebe7;
  font-size: 0.78rem;
  font-weight: 800;
}

.signal-row em {
  color: #9db1ab;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
}

.signal-row.hot {
  background: rgba(17, 199, 137, 0.12);
}

.radar-board {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 199, 137, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 199, 137, 0.06) 1px, transparent 1px),
    rgba(1, 8, 7, 0.58);
  background-size: 34px 34px;
}

.radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 116px;
  min-height: 86px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  color: #02100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 900;
  z-index: 2;
}

.radar-core span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #02100d;
}

.radar-core strong {
  font-size: 0.92rem;
}

.orbit {
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(128, 228, 95, 0.22);
  border-radius: 50%;
}

.orbit.two {
  inset: 58px;
  opacity: 0.65;
}

.scan-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(128, 228, 95, 0.75), transparent);
  z-index: 1;
}

.orbit-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 14px;
  border: 1px solid rgba(195, 255, 226, 0.16);
  border-radius: 8px;
  background: rgba(6, 19, 16, 0.94);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

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

.orbit-card strong {
  color: var(--tech-text);
}

.orbit-card span {
  margin-top: 6px;
  color: var(--tech-muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.pulse-card {
  top: 26px;
  right: 4px;
}

.bid-card {
  left: 6px;
  bottom: 42px;
}

@media (prefers-reduced-motion: no-preference) {
  .scan-line {
    animation: radarSweep 4.5s linear infinite;
  }

  .pulse-card,
  .bid-card {
    animation: softFloat 6s ease-in-out infinite;
  }

  .bid-card {
    animation-delay: 900ms;
  }
}

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

@media (max-width: 960px) {
  .ecosystem-dashboard {
    width: 100%;
    min-height: 520px;
  }

  .dashboard-shell {
    width: min(620px, 100%);
  }
}

@media (max-width: 640px) {
  .ecosystem-dashboard {
    min-height: auto;
    padding-top: 16px;
  }

  .dashboard-shell {
    width: 100%;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    grid-template-columns: repeat(5, 1fr);
    border-right: 0;
    border-bottom: 1px solid rgba(195, 255, 226, 0.1);
  }

  .dashboard-sidebar img {
    width: 26px;
    margin: 0;
  }

  .dashboard-sidebar span {
    font-size: 0.64rem;
  }

  .dashboard-metrics,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .radar-board {
    min-height: 220px;
  }

  .orbit-card {
    position: relative;
    width: 100%;
    margin-top: 10px;
  }

  .pulse-card,
  .bid-card {
    inset: auto;
  }
}

/* 2026-04-28: final hero command-center composition */
.hero {
  grid-template-columns: minmax(0, 0.84fr) minmax(560px, 1.16fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
  min-height: 780px;
}

.hero-content {
  max-width: 610px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(3.1rem, 4.4vw, 5.15rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 570px;
  font-size: 1.04rem;
}

.hero-visual {
  min-height: 580px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.ecosystem-dashboard {
  width: min(600px, 100%);
  min-height: 540px;
}

.dashboard-shell {
  width: min(560px, calc(100% - 28px));
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    linear-gradient(180deg, rgba(10, 29, 25, 0.98), rgba(3, 11, 10, 0.96));
}

.dashboard-topbar {
  min-height: 64px;
}

.dashboard-body {
  grid-template-columns: 78px 1fr;
  min-height: 368px;
}

.dashboard-main {
  padding: 16px;
}

.dashboard-metrics article {
  min-height: 96px;
  padding: 12px;
}

.dashboard-metrics strong {
  font-size: 1.58rem;
}

.signal-board,
.radar-board {
  min-height: 198px;
}

.radar-core {
  width: 104px;
  min-height: 78px;
}

.pulse-card {
  top: 48px;
  right: 10px;
}

.bid-card {
  left: 12px;
  bottom: 58px;
}

.orbit-card {
  width: 176px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 104px;
  }

  .hero-content {
    max-width: 820px;
  }

  .hero h1,
  .hero-lead {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 54px;
    gap: 28px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .hero-lead {
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .hero-visual {
    min-height: auto;
  }

  .ecosystem-dashboard {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .dashboard-shell {
    width: 100%;
  }

  .dashboard-topbar {
    min-height: 58px;
    padding: 14px;
  }

  .dashboard-topbar em {
    display: none;
  }

  .dashboard-sidebar {
    grid-template-columns: 28px repeat(4, 1fr);
    gap: 7px;
    padding: 10px;
  }

  .dashboard-sidebar span {
    min-height: 30px;
    padding: 0 6px;
  }

  .dashboard-main {
    padding: 12px;
  }

  .dashboard-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .dashboard-metrics article {
    min-height: 86px;
    padding: 9px;
  }

  .dashboard-metrics span,
  .dashboard-metrics small {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .dashboard-metrics strong {
    font-size: 1.28rem;
  }

  .dashboard-grid {
    gap: 8px;
  }

  .signal-board,
  .radar-board {
    min-height: auto;
  }

  .signal-board {
    padding: 10px;
  }

  .signal-row {
    min-height: 30px;
    gap: 7px;
    padding: 7px;
  }

  .signal-row span,
  .signal-row em {
    font-size: 0.66rem;
  }

  .radar-board {
    min-height: 170px;
  }

  .radar-core {
    width: 96px;
    min-height: 70px;
  }

  .orbit-card {
    display: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .animate-in {
    animation: revealUp 720ms ease both;
  }

  .hero-mark {
    animation: softFloat 6s ease-in-out infinite;
  }

  .studio-row.active {
    animation: activeGlow 2.8s ease-in-out infinite;
  }
}

/* 2026-04-28: invisible premium topbar with product submenu */
.site-header {
  width: min(1240px, calc(100% - 48px));
  min-height: 68px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(2, 8, 7, 0.72), rgba(2, 8, 7, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  background: rgba(3, 12, 10, 0.76);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  min-width: auto;
  width: 54px;
  height: 54px;
  justify-content: center;
}

.site-header .brand-mark {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 0 20px rgba(17, 199, 137, 0.38));
}

.site-nav {
  gap: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-item {
  position: relative;
}

.site-nav a,
.nav-parent {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(238, 249, 245, 0.82);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 850;
}

.site-nav a:hover,
.nav-parent:hover,
.nav-item:focus-within .nav-parent {
  color: #ffffff;
  background: transparent;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(195, 255, 226, 0.14);
  border-radius: 12px;
  background: rgba(3, 12, 10, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  color: #dcebe7;
}

.nav-submenu a:hover {
  color: #04110e;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.site-nav .nav-action {
  min-height: auto;
  padding: 0;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}

.site-nav .nav-action:hover {
  color: #ffffff;
}

.site-nav .nav-action::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 8px 12px;
    border: 1px solid rgba(195, 255, 226, 0.12);
    border-radius: 16px;
    background: rgba(3, 12, 10, 0.82);
    backdrop-filter: blur(18px);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: auto !important;
    gap: 42px !important;
    overflow: hidden !important;
    padding: 112px 0 66px !important;
  }

  .hero-content,
  .hero h1,
  .hero-lead {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h1 {
    font-size: 2.55rem !important;
    line-height: 1.02 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero-lead {
    font-size: 0.98rem !important;
  }

  .lymos-system-map {
    width: 100% !important;
    min-height: 500px !important;
  }

  .site-header .brand {
    width: 46px;
    height: 46px;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    gap: 12px;
  }

  .nav-links {
    align-items: stretch;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .nav-action::after {
    display: none;
  }
}

/* 2026-04-28: FINAL LOCK - must stay after legacy transparent navigation */
body {
  font-family: var(--font-body) !important;
}

.site-header,
.site-header.is-scrolled {
  top: 18px !important;
  width: min(1260px, calc(100% - 56px)) !important;
  min-height: 64px !important;
  padding: 8px 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .brand {
  width: 62px !important;
  height: 62px !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, rgba(218, 255, 241, 0.08), rgba(218, 255, 241, 0.025)) !important;
  box-shadow: inset 0 0 0 1px rgba(187, 255, 229, 0.1), 0 20px 60px rgba(0, 0, 0, 0.22) !important;
}

.site-header .brand-mark {
  width: 42px !important;
  height: 42px !important;
}

.site-nav a,
.nav-parent,
.site-nav .nav-action {
  font-family: var(--font-tech) !important;
  font-size: 0.78rem !important;
}

.section-shell {
  width: min(1260px, calc(100% - 56px)) !important;
}

.hero {
  min-height: min(920px, 100svh) !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 0.88fr) !important;
  gap: 84px !important;
  padding: 112px 0 72px !important;
}

.hero h1 {
  max-width: 690px !important;
  font-family: var(--font-display) !important;
  font-size: 4.55rem !important;
  line-height: 0.96 !important;
  font-weight: 700 !important;
}

.hero-lead {
  max-width: 600px !important;
  margin-top: 24px !important;
  font-size: 1.1rem !important;
  line-height: 1.72 !important;
}

.hero-actions {
  margin-top: 30px !important;
}

.lymos-system-map {
  width: 540px !important;
  max-width: 100% !important;
  min-height: 520px !important;
  border: 1px solid rgba(187, 255, 229, 0.12) !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 36%, rgba(21, 210, 147, 0.18), transparent 19rem),
    linear-gradient(135deg, rgba(218, 255, 241, 0.095), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.58) !important;
}

.lymos-system-map::before {
  content: "LYMOS INTELLIGENCE GRID" !important;
  font-family: var(--font-tech) !important;
}

.portal-brand {
  display: grid !important;
  place-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  width: 72px !important;
  height: 72px !important;
  padding: 0 !important;
  border-radius: 22px !important;
}

.portal-brand .brand-mark {
  width: 52px !important;
  height: 52px !important;
}

.login-brand h1,
.login-card h2,
.section-heading h2,
.command-copy h2,
.product-card h3 {
  font-family: var(--font-display) !important;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto !important;
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.84fr) !important;
  }

  .hero h1 {
    font-size: 4rem !important;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 112px !important;
  }

  .lymos-system-map {
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    width: min(100% - 24px, 560px) !important;
    border: 1px solid rgba(187, 255, 229, 0.12) !important;
    border-radius: 20px !important;
    background: rgba(2, 8, 7, 0.86) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .brand {
    width: 50px !important;
    height: 50px !important;
  }

  .site-header .brand-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .hero h1 {
    max-width: 100% !important;
    font-size: 2.55rem !important;
    line-height: 1.02 !important;
    overflow-wrap: anywhere !important;
  }

  .hero-lead {
    max-width: 100% !important;
    font-size: 0.98rem !important;
  }

  .lymos-system-map {
    min-height: 500px !important;
  }

  .hero {
    overflow: hidden !important;
  }
}

/* 2026-04-28: final visual lock after legacy overrides */
body {
  font-family: var(--font-body) !important;
}

.section-shell {
  width: min(1260px, calc(100% - 56px)) !important;
}

.topbar-shade {
  height: 132px !important;
  background: linear-gradient(180deg, rgba(2, 8, 7, 0.98) 0%, rgba(2, 8, 7, 0.78) 46%, rgba(2, 8, 7, 0.24) 78%, rgba(2, 8, 7, 0) 100%) !important;
}

.site-header,
.site-header.is-scrolled {
  top: 18px !important;
  width: min(1260px, calc(100% - 56px)) !important;
  min-height: 64px !important;
  padding: 8px 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .brand {
  width: 62px !important;
  height: 62px !important;
  border-radius: 18px !important;
  background: linear-gradient(145deg, rgba(218, 255, 241, 0.08), rgba(218, 255, 241, 0.025)) !important;
  box-shadow: inset 0 0 0 1px rgba(187, 255, 229, 0.1), 0 20px 60px rgba(0, 0, 0, 0.22) !important;
}

.site-header .brand-mark {
  width: 42px !important;
  height: 42px !important;
}

.site-nav a,
.nav-parent,
.site-nav .nav-action {
  font-family: var(--font-tech) !important;
  font-size: 0.78rem !important;
  color: rgba(238, 251, 247, 0.88) !important;
}

.site-nav .nav-action {
  color: var(--accent) !important;
}

.hero {
  min-height: 100svh !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 0.88fr) !important;
  gap: clamp(54px, 7vw, 112px) !important;
  padding: 138px 0 104px !important;
}

.hero-logo {
  width: 134px !important;
  margin-bottom: 36px !important;
}

.hero h1 {
  max-width: 720px !important;
  font-family: var(--font-display) !important;
  font-size: 5.25rem !important;
  line-height: 0.94 !important;
  font-weight: 700 !important;
}

.hero-lead {
  max-width: 610px !important;
  font-size: 1.18rem !important;
  line-height: 1.72 !important;
}

.hero-kicker,
.section-number {
  font-family: var(--font-tech) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.hero-visual {
  width: min(600px, 100%) !important;
}

.lymos-system-map {
  width: 590px !important;
  max-width: 100% !important;
  min-height: 560px !important;
  border: 1px solid rgba(187, 255, 229, 0.12) !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 36%, rgba(21, 210, 147, 0.18), transparent 19rem),
    linear-gradient(135deg, rgba(218, 255, 241, 0.095), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.58) !important;
}

.lymos-system-map::before {
  content: "LYMOS INTELLIGENCE GRID" !important;
  position: absolute !important;
  top: 24px !important;
  left: 26px !important;
  z-index: 5 !important;
  color: var(--accent) !important;
  font-family: var(--font-tech) !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
}

.system-grid {
  inset: 34px !important;
  border-radius: 28px !important;
  mask-image: linear-gradient(#000, #000) !important;
}

.system-core {
  width: 184px !important;
  min-height: 184px !important;
  border-radius: 28px !important;
}

.lymos-system-map .pulse-card {
  top: 88px !important;
  left: 34px !important;
}

.lymos-system-map .bid-card {
  right: 34px !important;
  bottom: 88px !important;
}

.chip-a {
  top: 70px !important;
  left: 292px !important;
}

.chip-b {
  top: 256px !important;
  right: 18px !important;
}

.chip-c {
  left: 26px !important;
  bottom: 202px !important;
}

.chip-d {
  right: 202px !important;
  bottom: 44px !important;
}

.metric-a {
  right: 94px !important;
  top: 96px !important;
}

.metric-b {
  left: 136px !important;
  bottom: 78px !important;
}

.section-heading h2,
.command-copy h2,
.product-card h3,
.login-brand h1,
.login-card h2 {
  font-family: var(--font-display) !important;
}

.section-heading h2 {
  font-size: 3.8rem !important;
  line-height: 1.02 !important;
}

.command-copy h2 {
  font-size: 3.7rem !important;
  line-height: 1 !important;
}

.product-card h3 {
  font-size: 3.45rem !important;
  line-height: 0.98 !important;
}

.product-card,
.service-card,
.scope-card,
.trust-card,
.contact-card,
.command-panel,
.login-card {
  border-radius: 22px !important;
}

.login-shell {
  width: min(1160px, calc(100% - 64px)) !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 84px !important;
}

.login-brand h1 {
  font-size: 4.7rem !important;
  line-height: 0.98 !important;
}

.portal-brand {
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 42px !important;
  border-radius: 22px !important;
}

.portal-brand .brand-mark {
  width: 52px !important;
  height: 52px !important;
}

.login-card {
  border-radius: 26px !important;
  padding: 32px !important;
}

.login-card h2 {
  font-size: 2.45rem !important;
  line-height: 1.04 !important;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.84fr) !important;
    gap: 54px !important;
  }

  .hero h1 {
    font-size: 4.35rem !important;
  }

  .lymos-system-map {
    width: 500px !important;
    min-height: 520px !important;
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 36px, 720px) !important;
  }

  .site-header,
  .site-header.is-scrolled {
    width: min(100% - 32px, 720px) !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding-top: 112px !important;
  }

  .hero h1 {
    font-size: 4rem !important;
  }

  .lymos-system-map {
    width: 100% !important;
    min-height: 520px !important;
  }

  .login-shell {
    width: min(100% - 36px, 650px) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .login-brand h1 {
    font-size: 3.6rem !important;
  }
}

@media (max-width: 760px) {
  .topbar-shade {
    height: 112px !important;
  }

  .section-shell {
    width: min(100% - 28px, 560px) !important;
  }

  .site-header,
  .site-header.is-scrolled {
    width: min(100% - 24px, 560px) !important;
    border: 1px solid rgba(187, 255, 229, 0.12) !important;
    border-radius: 20px !important;
    background: rgba(2, 8, 7, 0.86) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .brand {
    width: 50px !important;
    height: 50px !important;
  }

  .site-header .brand-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .hero h1 {
    font-size: 3.15rem !important;
  }

  .hero-lead {
    font-size: 1rem !important;
  }

  .lymos-system-map {
    min-height: 520px !important;
    border-radius: 24px !important;
  }

  .signal-chip,
  .system-metric {
    display: none !important;
  }

  .system-core {
    width: 150px !important;
    min-height: 150px !important;
  }

  .lymos-system-map .orbit-card {
    width: min(188px, 62vw) !important;
  }

  .lymos-system-map .pulse-card {
    top: 66px !important;
    left: 14px !important;
  }

  .lymos-system-map .bid-card {
    right: 14px !important;
    bottom: 66px !important;
  }

  .section-heading h2,
  .command-copy h2,
  .product-card h3 {
    font-size: 2.35rem !important;
  }

  .login-shell {
    width: min(100% - 28px, 540px) !important;
  }

  .login-brand h1 {
    font-size: 3rem !important;
  }
}

/* 2026-04-28: desktop proportion correction for SaaS premium fold */
.hero {
  min-height: min(920px, 100svh) !important;
  padding: 112px 0 72px !important;
  gap: 84px !important;
}

.hero h1 {
  max-width: 690px !important;
  font-size: 4.55rem !important;
  line-height: 0.96 !important;
}

.hero-lead {
  max-width: 600px !important;
  margin-top: 24px !important;
  font-size: 1.1rem !important;
}

.hero-actions {
  margin-top: 30px !important;
}

.hero-visual {
  align-self: center !important;
}

.lymos-system-map {
  width: 540px !important;
  min-height: 520px !important;
}

.lymos-system-map .pulse-card {
  top: 80px !important;
  left: 28px !important;
}

.lymos-system-map .bid-card {
  right: 28px !important;
  bottom: 80px !important;
}

.chip-a {
  top: 64px !important;
  left: 262px !important;
}

.chip-b {
  top: 236px !important;
  right: 14px !important;
}

.chip-c {
  left: 24px !important;
  bottom: 184px !important;
}

.chip-d {
  right: 178px !important;
  bottom: 40px !important;
}

.metric-a {
  right: 78px !important;
  top: 88px !important;
}

.metric-b {
  left: 120px !important;
  bottom: 68px !important;
}

.portal-brand {
  display: grid !important;
  place-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto !important;
  }

  .hero h1 {
    font-size: 4rem !important;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 112px !important;
    gap: 42px !important;
  }

  .hero h1 {
    font-size: 3rem !important;
  }

  .lymos-system-map {
    width: 100% !important;
    min-height: 500px !important;
  }
}

/* Final proportionality pass: floating menu and zoom-safe hero */
.site-header,
.site-header.is-scrolled {
  width: min(1240px, calc(100% - 48px)) !important;
  min-height: 72px !important;
  padding: 12px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .brand {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
}

.site-header .brand-mark {
  width: 44px !important;
  height: 44px !important;
}

.site-nav {
  flex: 0 1 auto !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: clamp(18px, 2.2vw, 32px) !important;
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.nav-links > a,
.nav-parent,
.site-nav .nav-action {
  position: relative;
  min-height: auto !important;
  padding: 8px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(239, 250, 246, 0.86) !important;
  font-size: clamp(0.78rem, 0.72vw, 0.92rem) !important;
  line-height: 1 !important;
}

.nav-links > a::after,
.nav-parent::after,
.site-nav .nav-action::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links > a:hover,
.nav-parent:hover,
.has-submenu:focus-within .nav-parent,
.site-nav .nav-action:hover {
  color: #ffffff !important;
}

.nav-links > a:hover::after,
.has-submenu:hover .nav-parent::after,
.has-submenu:focus-within .nav-parent::after,
.site-nav .nav-action:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.site-nav .nav-action {
  color: var(--accent) !important;
  white-space: nowrap;
}

.nav-submenu {
  top: calc(100% + 12px) !important;
  min-width: 210px !important;
  padding: 12px !important;
  border: 1px solid rgba(195, 255, 226, 0.12) !important;
  border-radius: 10px !important;
  background:
    linear-gradient(180deg, rgba(9, 28, 24, 0.96), rgba(3, 12, 10, 0.96)) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42) !important;
  backdrop-filter: blur(18px);
}

.nav-submenu a {
  min-height: 40px !important;
  padding: 0 12px !important;
  border-radius: 8px !important;
  justify-content: flex-start !important;
}

.hero {
  width: min(1240px, calc(100% - clamp(40px, 6vw, 96px))) !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.98fr) !important;
  gap: clamp(34px, 5vw, 74px) !important;
  min-height: clamp(660px, calc(100svh - 26px), 820px) !important;
  padding-top: clamp(72px, 9vh, 118px) !important;
  padding-bottom: clamp(46px, 7vh, 82px) !important;
}

.hero-content {
  max-width: 600px !important;
}

.hero h1 {
  max-width: 620px !important;
  font-size: clamp(3rem, 4.05vw, 4.85rem) !important;
  line-height: 0.97 !important;
}

.hero-lead {
  max-width: 560px !important;
  font-size: clamp(0.96rem, 0.9vw, 1.05rem) !important;
  line-height: 1.62 !important;
}

.hero-visual {
  min-height: auto !important;
  align-self: center !important;
}

.ecosystem-dashboard {
  width: min(540px, 100%) !important;
  min-height: 500px !important;
}

.dashboard-shell {
  width: min(510px, calc(100% - 20px)) !important;
}

.dashboard-body {
  grid-template-columns: 72px 1fr !important;
  min-height: 340px !important;
}

.dashboard-metrics article {
  min-height: 88px !important;
}

.dashboard-metrics strong {
  font-size: 1.42rem !important;
}

.signal-board,
.radar-board {
  min-height: 180px !important;
}

.orbit-card {
  width: 166px !important;
}

.pulse-card {
  right: 0 !important;
}

.bid-card {
  left: 0 !important;
  bottom: 56px !important;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-content,
  .hero h1,
  .hero-lead {
    max-width: 760px !important;
  }

  .ecosystem-dashboard {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 24px) !important;
    min-height: 62px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(195, 255, 226, 0.12) !important;
    border-radius: 16px !important;
    background: rgba(3, 12, 10, 0.84) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .brand {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
  }

  .site-header .brand-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .hero {
    width: min(100% - 24px, 520px) !important;
    padding-top: 54px !important;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.2rem) !important;
  }

  .ecosystem-dashboard {
    min-height: auto !important;
  }

  .dashboard-shell {
    width: 100% !important;
  }
}

/* 2026-04-28: hero maturity and logged portal redesign */
.hero {
  width: min(1180px, calc(100% - clamp(48px, 7vw, 112px))) !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.88fr) !important;
  gap: clamp(44px, 6vw, 86px) !important;
  min-height: clamp(650px, calc(100svh - 44px), 760px) !important;
  padding-top: clamp(82px, 10vh, 124px) !important;
  padding-bottom: clamp(56px, 7vh, 88px) !important;
}

.hero-content {
  max-width: 570px !important;
}

.hero-kicker {
  margin-bottom: 18px !important;
  font-size: clamp(0.78rem, 0.78vw, 0.88rem) !important;
}

.hero h1 {
  max-width: 570px !important;
  font-size: clamp(2.85rem, 3.55vw, 4.22rem) !important;
  line-height: 1.02 !important;
}

.hero-lead {
  max-width: 540px !important;
  margin-top: 28px !important;
  color: rgba(220, 235, 231, 0.82) !important;
  font-size: clamp(0.96rem, 0.86vw, 1.02rem) !important;
}

.hero-actions {
  margin-top: 34px !important;
}

.hero-visual {
  justify-self: center !important;
  transform: translateY(8px);
}

.ecosystem-dashboard {
  width: min(492px, 100%) !important;
  min-height: 450px !important;
}

.dashboard-shell {
  width: min(468px, 100%) !important;
  border-radius: 14px !important;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.38) !important;
}

.dashboard-topbar {
  min-height: 58px !important;
  padding: 14px 16px !important;
}

.dashboard-topbar strong {
  font-size: 1rem !important;
}

.dashboard-body {
  grid-template-columns: 66px 1fr !important;
  min-height: 312px !important;
}

.dashboard-sidebar {
  padding: 14px 10px !important;
}

.dashboard-sidebar span {
  min-height: 30px !important;
  font-size: 0.66rem !important;
}

.dashboard-main {
  padding: 14px !important;
}

.dashboard-metrics {
  gap: 8px !important;
}

.dashboard-metrics article {
  min-height: 82px !important;
  padding: 10px !important;
}

.dashboard-metrics span,
.dashboard-metrics small {
  font-size: 0.62rem !important;
}

.dashboard-metrics strong {
  font-size: 1.28rem !important;
}

.dashboard-grid {
  grid-template-columns: 1.06fr 0.94fr !important;
  gap: 10px !important;
  margin-top: 10px !important;
}

.signal-board,
.radar-board {
  min-height: 166px !important;
}

.board-head {
  margin-bottom: 8px !important;
}

.board-head strong {
  font-size: 0.9rem !important;
}

.signal-row {
  min-height: 29px !important;
  margin-top: 6px !important;
  padding: 7px !important;
}

.signal-row span,
.signal-row em {
  font-size: 0.64rem !important;
}

.radar-core {
  width: 88px !important;
  min-height: 64px !important;
  border-radius: 10px !important;
}

.orbit-card {
  display: none !important;
}

.portal-body {
  background:
    radial-gradient(circle at 80% 0%, rgba(17, 199, 137, 0.2), transparent 28rem),
    linear-gradient(180deg, #04100e 0%, #020605 100%) !important;
}

.portal-header {
  width: min(1180px, calc(100% - 40px)) !important;
  min-height: 70px !important;
  padding: 12px 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portal-brand-link {
  gap: 12px !important;
  color: #eefbf7 !important;
}

.portal-brand-link .brand-mark {
  width: 40px !important;
  height: 40px !important;
}

.portal-brand-link span {
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(238, 251, 247, 0.72);
}

.portal-header nav {
  gap: 22px !important;
}

.portal-header nav a {
  min-height: auto !important;
  padding: 8px 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(238, 251, 247, 0.78) !important;
}

.portal-header nav a:hover {
  color: #ffffff !important;
  background: transparent !important;
}

.portal-shell {
  width: min(1180px, calc(100% - 40px)) !important;
  padding: 64px 0 110px !important;
}

.portal-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px) !important;
  gap: clamp(28px, 4vw, 58px) !important;
  align-items: center !important;
}

.portal-hero-copy {
  max-width: 720px;
}

.portal-hero h1 {
  max-width: 720px !important;
  font-size: clamp(2.8rem, 5.2vw, 5.25rem) !important;
  line-height: 0.98 !important;
}

.portal-hero p {
  max-width: 660px !important;
  margin-top: 22px !important;
  color: rgba(220, 235, 231, 0.8) !important;
}

.portal-status,
.portal-command,
.portal-card,
.portal-account {
  border: 1px solid rgba(195, 255, 226, 0.12) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(5, 18, 15, 0.72) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32) !important;
  backdrop-filter: blur(20px);
}

.portal-status {
  padding: 24px !important;
}

.portal-status strong {
  font-size: clamp(1.7rem, 2.2vw, 2.35rem) !important;
  line-height: 1 !important;
}

.portal-status small,
.portal-status span,
.portal-account span,
.portal-account small,
.portal-command-head span,
.portal-step small {
  color: rgba(207, 224, 219, 0.78) !important;
}

.portal-command {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  margin-top: 34px;
  padding: 18px;
}

.portal-command-main {
  display: grid;
  gap: 18px;
}

.portal-command-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.portal-command-head span,
.portal-account span {
  display: block;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portal-command-head strong,
.portal-account strong {
  display: block;
  color: #f5fffb;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

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

.portal-step {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(195, 255, 226, 0.1);
  border-radius: 12px;
  background: rgba(2, 8, 7, 0.42);
}

.portal-step span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #06110f;
  background: rgba(238, 251, 247, 0.78);
  font-weight: 950;
}

.portal-step.is-done span,
.portal-step.is-active span {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.portal-step strong {
  color: #f5fffb;
  font-size: 1rem;
}

.portal-account {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}

.portal-account strong {
  overflow-wrap: anywhere;
  font-size: 1.05rem;
}

.portal-grid {
  gap: 16px !important;
  margin-top: 18px !important;
}

.portal-card {
  min-height: 230px !important;
  padding: 22px !important;
}

.portal-card span {
  font-size: 1rem !important;
  font-weight: 950 !important;
}

.portal-card h2 {
  margin: 16px 0 12px !important;
  font-size: 1.35rem !important;
}

.portal-card p {
  color: rgba(207, 224, 219, 0.82) !important;
}

.portal-card-accent {
  background:
    radial-gradient(circle at 80% 10%, rgba(17, 199, 137, 0.22), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(5, 18, 15, 0.72) !important;
}

@media (max-width: 980px) {
  .portal-hero,
  .portal-command,
  .portal-grid {
    grid-template-columns: 1fr !important;
  }

  .portal-timeline {
    grid-template-columns: 1fr !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .hero {
    width: min(100% - 24px, 520px) !important;
    padding-top: 62px !important;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10.5vw, 3.15rem) !important;
  }

  .ecosystem-dashboard {
    width: 100% !important;
  }

  .dashboard-shell {
    width: 100% !important;
  }

  .portal-header,
  .portal-shell {
    width: min(100% - 24px, 520px) !important;
  }

  .portal-header {
    min-height: 62px !important;
  }

  .portal-brand-link span {
    display: none;
  }

  .portal-shell {
    padding-top: 44px !important;
  }

  .portal-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.35rem) !important;
  }
}

/* Portal contrast correction */
.portal-body::before {
  background:
    radial-gradient(circle at 78% 0%, rgba(17, 199, 137, 0.18), transparent 34rem),
    linear-gradient(180deg, rgba(2, 7, 6, 0.08), rgba(2, 7, 6, 0.24)) !important;
}

.portal-body::after {
  opacity: 0.14 !important;
  mask-image: radial-gradient(circle at 52% 10%, #000 0%, transparent 70%) !important;
}

.portal-body .animate-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.portal-body,
.portal-body h1,
.portal-body h2,
.portal-body strong,
.portal-body b {
  color: #f4fffb !important;
}

.portal-body p,
.portal-body small,
.portal-body .portal-status span,
.portal-body .portal-step small,
.portal-body .portal-card p {
  color: rgba(220, 235, 231, 0.86) !important;
}

.portal-body .section-number,
.portal-command-head span,
.portal-account span,
.portal-card > span {
  color: var(--accent) !important;
}

.portal-body .form-status.success {
  color: #dfffee !important;
  border: 1px solid rgba(128, 228, 95, 0.22);
  background: rgba(17, 199, 137, 0.14) !important;
}

/* 2026-04-28: replace fake dashboard with Lymos ecosystem map */
.hero-visual {
  transform: none !important;
}

.lymos-system-map {
  position: relative;
  width: min(520px, 100%) !important;
  min-height: 520px !important;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.lymos-system-map .dashboard-shell {
  display: none !important;
}

.system-grid {
  position: absolute;
  inset: 42px;
  border-radius: 50%;
  background:
    linear-gradient(rgba(17, 199, 137, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 199, 137, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, #000 0 58%, transparent 72%);
  opacity: 0.9;
}

.system-orbit {
  position: absolute;
  border: 1px solid rgba(128, 228, 95, 0.18);
  border-radius: 50%;
}

.orbit-a {
  inset: 78px;
}

.orbit-b {
  inset: 126px;
  border-style: dashed;
  opacity: 0.75;
}

.system-core {
  position: relative;
  z-index: 3;
  width: 184px;
  min-height: 184px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(195, 255, 226, 0.18);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(128, 228, 95, 0.28), transparent 54%),
    linear-gradient(145deg, rgba(13, 31, 27, 0.98), rgba(3, 12, 10, 0.94));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42), 0 0 70px rgba(17, 199, 137, 0.12);
}

.system-core img {
  width: 48px;
  filter: drop-shadow(0 0 24px rgba(17, 199, 137, 0.5));
}

.system-core span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.system-core strong {
  color: #f5fffb;
  font-size: 1.05rem;
  line-height: 1.1;
}

.lymos-system-map .orbit-card {
  z-index: 4;
  display: grid !important;
  width: 210px !important;
  min-height: 126px;
  padding: 18px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(195, 255, 226, 0.14) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(5, 18, 15, 0.9) !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34) !important;
}

.lymos-system-map .orbit-card::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 34px rgba(17, 199, 137, 0.24);
}

.lymos-system-map .orbit-card strong {
  color: #f5fffb !important;
  font-size: 1.1rem;
}

.lymos-system-map .orbit-card span {
  color: rgba(220, 235, 231, 0.78) !important;
  font-size: 0.86rem !important;
  line-height: 1.45;
}

.lymos-system-map .pulse-card {
  top: 72px !important;
  left: 0 !important;
  right: auto !important;
}

.lymos-system-map .bid-card {
  right: 0 !important;
  left: auto !important;
  bottom: 72px !important;
}

.signal-chip,
.system-metric {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 999px;
  background: rgba(3, 12, 10, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.signal-chip {
  padding: 10px 14px;
  color: rgba(238, 251, 247, 0.82);
  font-size: 0.76rem;
  font-weight: 850;
}

.chip-a {
  top: 26px;
  left: 152px;
}

.chip-b {
  top: 214px;
  right: 0;
}

.chip-c {
  left: 16px;
  bottom: 142px;
}

.chip-d {
  right: 116px;
  bottom: 18px;
}

.system-metric {
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 24px;
}

.system-metric small {
  color: rgba(220, 235, 231, 0.7);
  font-size: 0.68rem;
  font-weight: 850;
}

.system-metric strong {
  color: var(--accent);
  font-size: 1.55rem;
}

.metric-a {
  right: 26px;
  top: 42px;
}

.metric-b {
  left: 92px;
  bottom: 42px;
}

@media (prefers-reduced-motion: no-preference) {
  .system-orbit {
    animation: systemSpin 18s linear infinite;
  }

  .orbit-b {
    animation-duration: 26s;
    animation-direction: reverse;
  }

  .system-core,
  .lymos-system-map .orbit-card,
  .signal-chip,
  .system-metric {
    animation: systemFloat 7s ease-in-out infinite;
  }
}

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

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

@media (max-width: 760px) {
  .lymos-system-map {
    width: 100% !important;
    min-height: 620px !important;
  }

  .system-core {
    width: 162px;
    min-height: 162px;
  }

  .lymos-system-map .orbit-card {
    width: min(220px, 72vw) !important;
  }

  .lymos-system-map .pulse-card {
    top: 26px !important;
    left: 0 !important;
  }

  .lymos-system-map .bid-card {
    right: 0 !important;
    bottom: 34px !important;
  }

  .chip-a {
    top: 180px;
    left: 0;
  }

  .chip-b {
    top: 228px;
    right: 0;
  }

  .chip-c {
    left: 0;
    bottom: 206px;
  }

  .chip-d {
    right: 0;
    bottom: 158px;
  }

  .metric-a {
    right: 12px;
    top: 322px;
  }

  .metric-b {
    left: 12px;
    bottom: 70px;
  }
}

/* 2026-04-28: refined login experience */
.login-shell {
  width: min(1180px, calc(100% - 48px)) !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 440px) !important;
  gap: clamp(48px, 7vw, 110px) !important;
  padding: clamp(48px, 8vh, 88px) 0 !important;
}

.login-brand {
  max-width: 680px;
}

.portal-brand {
  width: 54px;
  height: 54px;
  margin-bottom: clamp(48px, 8vh, 86px) !important;
}

.portal-brand .brand-mark {
  width: 42px !important;
  height: 42px !important;
}

.login-logo {
  display: none !important;
}

.login-brand h1 {
  max-width: 650px;
  margin-top: 18px !important;
  font-size: clamp(3.2rem, 5.3vw, 5.75rem) !important;
  line-height: 0.96 !important;
}

.login-brand p {
  max-width: 620px !important;
  margin-top: 24px;
  color: rgba(220, 235, 231, 0.84) !important;
}

.login-trust {
  gap: 12px !important;
  margin-top: 30px !important;
}

.login-trust span {
  border-radius: 999px !important;
  color: rgba(238, 251, 247, 0.88) !important;
  background: rgba(255, 255, 255, 0.045) !important;
}

.login-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.login-preview div {
  min-height: 150px;
  padding: 16px;
  border: 1px solid rgba(195, 255, 226, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(5, 18, 15, 0.62);
}

.login-preview span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 950;
}

.login-preview strong {
  display: block;
  margin: 18px 0 8px;
  color: #f4fffb;
  font-size: 1rem;
}

.login-preview small {
  color: rgba(220, 235, 231, 0.72);
  line-height: 1.45;
}

.login-card {
  gap: 18px !important;
  padding: 30px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(195, 255, 226, 0.13) !important;
  background:
    radial-gradient(circle at 85% 0%, rgba(17, 199, 137, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.04)),
    rgba(5, 18, 15, 0.82) !important;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38) !important;
}

.login-card h2 {
  max-width: 340px;
  margin-top: 12px !important;
  font-size: clamp(2rem, 2.8vw, 2.8rem) !important;
}

.login-card p {
  margin: 10px 0 0;
  color: rgba(220, 235, 231, 0.74);
  line-height: 1.55;
}

.login-card label {
  color: rgba(238, 251, 247, 0.88) !important;
}

.login-card input {
  min-height: 54px;
  border-radius: 12px !important;
  border-color: rgba(195, 255, 226, 0.12) !important;
  color: #f4fffb !important;
  background: rgba(2, 8, 7, 0.72) !important;
}

.login-card .button {
  min-height: 56px;
  margin-top: 2px;
}

.login-card .text-link {
  color: var(--accent) !important;
}

.login-card .form-status.error {
  color: #ffd6d6 !important;
  border: 1px solid rgba(255, 118, 118, 0.16);
  border-radius: 12px;
  background: rgba(160, 42, 42, 0.16) !important;
}

@media (max-width: 980px) {
  .login-shell {
    grid-template-columns: 1fr !important;
  }

  .login-preview {
    grid-template-columns: 1fr !important;
  }

  .login-card {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .login-shell {
    width: min(100% - 24px, 520px) !important;
    padding: 30px 0 64px !important;
  }

  .portal-brand {
    margin-bottom: 46px !important;
  }

  .login-brand h1 {
    font-size: clamp(2.7rem, 12vw, 3.65rem) !important;
  }

  .login-card {
    padding: 22px !important;
  }
}

/* 2026-04-28: top menu readability shade and centered login */
.topbar-shade {
  position: fixed;
  inset: 0 0 auto;
  z-index: 18;
  height: 96px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 8, 7, 0.88) 0%, rgba(2, 8, 7, 0.54) 48%, rgba(2, 8, 7, 0) 100%);
}

.site-header {
  z-index: 21 !important;
}

.login-shell {
  min-height: 100svh !important;
  width: min(1120px, calc(100% - 56px)) !important;
  grid-template-columns: minmax(0, 0.92fr) 430px !important;
  gap: clamp(42px, 6vw, 86px) !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(36px, 6vh, 64px) 0 !important;
}

.login-brand {
  max-width: 580px !important;
  align-self: center;
}

.portal-brand {
  margin-bottom: clamp(34px, 6vh, 58px) !important;
}

.login-brand h1 {
  max-width: 560px !important;
  font-size: clamp(3rem, 4.8vw, 5.05rem) !important;
}

.login-brand p {
  max-width: 540px !important;
}

.login-preview {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  max-width: 560px;
}

.login-preview div {
  min-height: 132px !important;
}

.login-card {
  width: 100% !important;
  max-width: 430px !important;
  align-self: center !important;
  justify-self: center !important;
  padding: 28px !important;
}

.login-card h2 {
  font-size: clamp(2rem, 2.4vw, 2.55rem) !important;
}

@media (max-width: 980px) {
  .login-shell {
    width: min(100% - 32px, 620px) !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .login-brand,
  .login-brand h1,
  .login-brand p,
  .login-preview,
  .login-card {
    max-width: 100% !important;
  }

  .login-preview {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  .topbar-shade {
    height: 92px;
  }

  .login-shell {
    width: min(100% - 24px, 520px) !important;
    padding: 28px 0 58px !important;
  }
}

/* 2026-04-28: Lymos premium SaaS direction */
:root {
  --font-body: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Space Grotesk", "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
  --font-tech: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --bg: #020807;
  --bg-2: #06110f;
  --surface: rgba(218, 255, 241, 0.07);
  --surface-2: rgba(218, 255, 241, 0.12);
  --line: rgba(187, 255, 229, 0.14);
  --text: #f3fff9;
  --muted: #b8cbc5;
  --accent: #15d293;
  --accent-2: #73e85b;
  --accent-3: #0cb8aa;
  --radius: 14px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
  background: #020807;
}

body::before {
  background:
    linear-gradient(rgba(115, 232, 91, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 78% 10%, rgba(21, 210, 147, 0.2), transparent 33rem),
    radial-gradient(circle at 14% 26%, rgba(12, 184, 170, 0.14), transparent 28rem),
    linear-gradient(180deg, #020807 0%, #05100e 48%, #020807 100%);
  background-size: 72px 72px, 72px 72px, auto, auto, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.055), transparent 34rem),
    linear-gradient(115deg, transparent 0 40%, rgba(21, 210, 147, 0.055) 48%, transparent 56% 100%);
  opacity: 0.72;
}

.section-shell {
  width: min(1260px, calc(100% - 56px)) !important;
}

.site-header,
.site-header.is-scrolled {
  top: 18px !important;
  width: min(1260px, calc(100% - 56px)) !important;
  min-height: 64px !important;
  padding: 8px 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header .brand {
  width: 62px !important;
  height: 62px !important;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(218, 255, 241, 0.08), rgba(218, 255, 241, 0.025));
  box-shadow: inset 0 0 0 1px rgba(187, 255, 229, 0.1), 0 20px 60px rgba(0, 0, 0, 0.22);
}

.site-header .brand-mark {
  width: 42px !important;
  height: 42px !important;
}

.nav-links {
  gap: 30px !important;
}

.site-nav a,
.nav-parent {
  font-family: var(--font-tech);
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: none;
  color: rgba(238, 251, 247, 0.86) !important;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.nav-parent:hover,
.nav-item:focus-within .nav-parent {
  color: #ffffff !important;
  transform: translateY(-1px);
}

.site-nav .nav-action {
  color: var(--accent) !important;
  min-height: 40px !important;
  padding: 0 2px !important;
}

.nav-submenu {
  border-radius: 16px !important;
  border-color: rgba(187, 255, 229, 0.16) !important;
  background:
    radial-gradient(circle at 88% 0%, rgba(21, 210, 147, 0.18), transparent 10rem),
    rgba(2, 8, 7, 0.95) !important;
}

.topbar-shade {
  height: 132px !important;
  background:
    linear-gradient(180deg, rgba(2, 8, 7, 0.98) 0%, rgba(2, 8, 7, 0.78) 46%, rgba(2, 8, 7, 0.24) 78%, rgba(2, 8, 7, 0) 100%) !important;
}

.hero {
  min-height: 100svh !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 0.88fr) !important;
  gap: clamp(54px, 7vw, 112px) !important;
  align-items: center !important;
  padding: 138px 0 104px !important;
}

.hero-content {
  max-width: 700px;
}

.hero-logo {
  width: 134px !important;
  margin-bottom: 36px !important;
}

.hero-kicker,
.section-number {
  font-family: var(--font-tech);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px !important;
  font-size: 0.78rem !important;
}

.hero-kicker::before {
  content: "";
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.hero h1,
.section-heading h2,
.brand-band h2,
.command-copy h2,
.cta-section h2,
.login-brand h1,
.login-card h2,
.portal-hero h1 {
  font-family: var(--font-display);
  letter-spacing: 0 !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: 5.25rem !important;
  line-height: 0.94 !important;
  font-weight: 700 !important;
}

.hero-lead {
  max-width: 610px !important;
  color: rgba(229, 244, 239, 0.82) !important;
  font-size: 1.18rem !important;
  line-height: 1.72 !important;
}

.button {
  border-radius: 999px !important;
  font-family: var(--font-body);
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button.secondary {
  border-color: rgba(187, 255, 229, 0.18) !important;
  background: rgba(218, 255, 241, 0.055) !important;
}

.button.primary {
  box-shadow: 0 20px 58px rgba(21, 210, 147, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.34) !important;
}

.hero-visual {
  width: min(600px, 100%) !important;
}

.lymos-system-map {
  width: 590px !important;
  min-height: 560px !important;
  border: 1px solid rgba(187, 255, 229, 0.12);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(21, 210, 147, 0.18), transparent 19rem),
    linear-gradient(135deg, rgba(218, 255, 241, 0.095), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.58);
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lymos-system-map::before {
  content: "LYMOS INTELLIGENCE GRID";
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 5;
  color: var(--accent);
  font-family: var(--font-tech);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.lymos-system-map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(21, 210, 147, 0.12) 50%, transparent 51% 100%),
    linear-gradient(180deg, transparent 0 49%, rgba(21, 210, 147, 0.1) 50%, transparent 51% 100%);
  opacity: 0.6;
}

.system-grid {
  inset: 34px !important;
  border-radius: 28px !important;
  mask-image: linear-gradient(#000, #000) !important;
  opacity: 0.72 !important;
}

.system-orbit {
  z-index: 2;
  border-color: rgba(115, 232, 91, 0.22) !important;
}

.orbit-a {
  inset: 96px !important;
}

.orbit-b {
  inset: 142px !important;
}

.system-core {
  width: 184px !important;
  min-height: 184px !important;
  border-radius: 28px !important;
  background:
    radial-gradient(circle at 30% 0%, rgba(115, 232, 91, 0.42), transparent 52%),
    linear-gradient(145deg, rgba(18, 47, 40, 0.98), rgba(3, 13, 11, 0.96)) !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 68px rgba(21, 210, 147, 0.16) !important;
}

.system-core span,
.system-metric small,
.signal-chip {
  font-family: var(--font-tech);
}

.system-core strong {
  font-family: var(--font-display);
  font-size: 1.12rem !important;
}

.lymos-system-map .orbit-card {
  width: 204px !important;
  min-height: 118px !important;
  border-radius: 18px !important;
  backdrop-filter: blur(16px);
}

.lymos-system-map .orbit-card::before {
  width: 30px !important;
  height: 30px !important;
  border-radius: 8px !important;
  margin-bottom: 14px !important;
}

.lymos-system-map .pulse-card {
  top: 88px !important;
  left: 34px !important;
}

.lymos-system-map .bid-card {
  right: 34px !important;
  bottom: 88px !important;
}

.signal-chip {
  color: rgba(238, 251, 247, 0.84) !important;
  background: rgba(2, 8, 7, 0.74) !important;
}

.chip-a {
  top: 70px !important;
  left: 292px !important;
}

.chip-b {
  top: 256px !important;
  right: 18px !important;
}

.chip-c {
  left: 26px !important;
  bottom: 202px !important;
}

.chip-d {
  right: 202px !important;
  bottom: 44px !important;
}

.system-metric {
  width: 104px !important;
  height: 92px !important;
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(218, 255, 241, 0.095), rgba(218, 255, 241, 0.03)),
    rgba(3, 12, 10, 0.82) !important;
}

.metric-a {
  right: 94px !important;
  top: 96px !important;
}

.metric-b {
  left: 136px !important;
  bottom: 78px !important;
}

.command-section {
  padding-top: 20px !important;
}

.command-panel {
  border-radius: 30px !important;
  border: 1px solid rgba(187, 255, 229, 0.13) !important;
  background:
    radial-gradient(circle at 84% 18%, rgba(21, 210, 147, 0.2), transparent 22rem),
    linear-gradient(135deg, rgba(218, 255, 241, 0.085), rgba(218, 255, 241, 0.025)),
    rgba(4, 14, 12, 0.82) !important;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.36);
}

.command-copy h2 {
  font-size: 3.7rem !important;
  line-height: 1 !important;
}

.command-copy p {
  color: rgba(225, 241, 236, 0.78) !important;
}

.command-ui {
  border-radius: 24px !important;
  background:
    linear-gradient(rgba(21, 210, 147, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.06) 1px, transparent 1px),
    rgba(2, 8, 7, 0.54) !important;
  background-size: 34px 34px, 34px 34px, auto;
}

.command-metrics div,
.service-card,
.scope-card,
.product-card,
.trust-card,
.contact-card,
.prelaunch-dialog {
  border-radius: 22px !important;
  border-color: rgba(187, 255, 229, 0.14) !important;
  background:
    linear-gradient(145deg, rgba(218, 255, 241, 0.08), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.7) !important;
}

.section-heading h2 {
  font-size: 3.8rem !important;
  line-height: 1.02 !important;
  font-weight: 700 !important;
}

.section-heading p {
  color: rgba(225, 241, 236, 0.78) !important;
}

.product-grid {
  gap: 22px !important;
}

.product-card {
  min-height: 540px !important;
  padding: 34px !important;
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 3.45rem !important;
  line-height: 0.98 !important;
}

.product-card span,
.product-card li {
  font-family: var(--font-tech);
  font-size: 0.86rem !important;
}

.service-card h3,
.scope-card h3,
.trust-card h3 {
  font-family: var(--font-display);
}

.contact-card label,
.login-card label {
  font-family: var(--font-tech);
  font-size: 0.78rem !important;
  letter-spacing: 0.02em;
}

.contact-card input,
.contact-card textarea,
.contact-card select,
.login-card input {
  border-radius: 14px !important;
  border-color: rgba(187, 255, 229, 0.16) !important;
  background: rgba(1, 7, 6, 0.74) !important;
}

.login-shell {
  width: min(1160px, calc(100% - 64px)) !important;
  grid-template-columns: minmax(0, 1fr) 420px !important;
  gap: 84px !important;
}

.login-brand {
  max-width: 620px !important;
}

.portal-brand {
  width: 72px !important;
  height: 72px !important;
  margin-bottom: 42px !important;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(218, 255, 241, 0.08), rgba(218, 255, 241, 0.025));
  box-shadow: inset 0 0 0 1px rgba(187, 255, 229, 0.1), 0 24px 70px rgba(0, 0, 0, 0.26);
}

.portal-brand .brand-mark {
  width: 52px !important;
  height: 52px !important;
}

.login-brand h1 {
  font-size: 4.7rem !important;
  line-height: 0.98 !important;
}

.login-brand p {
  font-size: 1.08rem;
  line-height: 1.75;
}

.login-trust span {
  font-family: var(--font-tech);
  border-color: rgba(187, 255, 229, 0.16) !important;
}

.login-preview {
  gap: 14px !important;
}

.login-preview div {
  border-radius: 18px !important;
  background:
    linear-gradient(145deg, rgba(218, 255, 241, 0.075), rgba(218, 255, 241, 0.025)),
    rgba(4, 14, 12, 0.74) !important;
}

.login-preview span {
  font-family: var(--font-tech);
}

.login-card {
  border-radius: 26px !important;
  padding: 32px !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(21, 210, 147, 0.22), transparent 13rem),
    linear-gradient(145deg, rgba(218, 255, 241, 0.11), rgba(218, 255, 241, 0.035)),
    rgba(6, 18, 15, 0.88) !important;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.login-card h2 {
  font-size: 2.45rem !important;
  line-height: 1.04 !important;
}

.login-card .button {
  min-height: 58px !important;
}

@media (prefers-reduced-motion: no-preference) {
  .lymos-system-map {
    animation: softFloat 9s ease-in-out infinite;
  }

  .signal-chip,
  .system-metric {
    animation: systemFloat 6.5s ease-in-out infinite;
  }

  .command-flow i {
    position: relative;
    overflow: hidden;
  }

  .command-flow i::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(115, 232, 91, 0.9), transparent);
    animation: dataTravel 2.8s ease-in-out infinite;
  }
}

@keyframes dataTravel {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.84fr) !important;
    gap: 54px !important;
  }

  .hero h1 {
    font-size: 4.35rem !important;
  }

  .lymos-system-map {
    width: 500px !important;
    min-height: 520px !important;
  }

  .signal-chip {
    display: none;
  }
}

@media (max-width: 980px) {
  .section-shell {
    width: min(100% - 36px, 720px) !important;
  }

  .site-header,
  .site-header.is-scrolled {
    width: min(100% - 32px, 720px) !important;
  }

  .hero {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    padding-top: 112px !important;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero h1 {
    font-size: 4rem !important;
  }

  .hero-visual {
    width: 100% !important;
  }

  .lymos-system-map {
    width: 100% !important;
    min-height: 520px !important;
  }

  .command-panel,
  .brand-band-inner,
  .product-grid,
  .services-grid-large,
  .scope-grid {
    grid-template-columns: 1fr !important;
  }

  .command-copy h2,
  .section-heading h2 {
    font-size: 3rem !important;
  }

  .login-shell {
    width: min(100% - 36px, 650px) !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .login-brand h1 {
    font-size: 3.6rem !important;
  }
}

@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 28px, 560px) !important;
  }

  .site-header,
  .site-header.is-scrolled {
    width: min(100% - 24px, 560px) !important;
    border-radius: 20px !important;
    background: rgba(2, 8, 7, 0.86) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .brand {
    width: 50px !important;
    height: 50px !important;
  }

  .site-header .brand-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .hero h1 {
    font-size: 3.15rem !important;
  }

  .hero-lead {
    font-size: 1rem !important;
  }

  .hero-logo {
    width: 112px !important;
  }

  .lymos-system-map {
    min-height: 520px !important;
    border-radius: 24px !important;
  }

  .system-core {
    width: 150px !important;
    min-height: 150px !important;
  }

  .lymos-system-map .orbit-card {
    width: min(188px, 62vw) !important;
  }

  .lymos-system-map .pulse-card {
    top: 66px !important;
    left: 14px !important;
  }

  .lymos-system-map .bid-card {
    right: 14px !important;
    bottom: 66px !important;
  }

  .system-metric {
    display: none !important;
  }

  .command-copy h2,
  .section-heading h2,
  .product-card h3 {
    font-size: 2.35rem !important;
  }

  .login-shell {
    width: min(100% - 28px, 540px) !important;
  }

  .login-brand h1 {
    font-size: 3rem !important;
  }

  .login-preview {
    display: none !important;
  }

  .portal-brand {
    width: 58px !important;
    height: 58px !important;
  }

  .portal-brand .brand-mark {
    width: 42px !important;
    height: 42px !important;
  }
}

/* System map correction: fixed composition box and visible hero */
.hero .animate-in,
.hero .animate-in.is-visible {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.hero-visual {
  width: min(560px, 100%) !important;
  justify-self: center !important;
}

.lymos-system-map {
  width: 540px !important;
  max-width: 100% !important;
  min-height: 520px !important;
  margin-inline: auto;
}

.system-core {
  width: 168px !important;
  min-height: 168px !important;
}

.lymos-system-map .pulse-card {
  top: 92px !important;
  left: 18px !important;
}

.lymos-system-map .bid-card {
  right: 18px !important;
  bottom: 92px !important;
}

.chip-a {
  top: 42px !important;
  left: 238px !important;
}

.chip-b {
  top: 220px !important;
  right: 6px !important;
}

.chip-c {
  left: 18px !important;
  bottom: 196px !important;
}

.chip-d {
  right: 170px !important;
  bottom: 36px !important;
}

.metric-a {
  right: 74px !important;
  top: 78px !important;
}

.metric-b {
  left: 126px !important;
  bottom: 70px !important;
}

@media (max-width: 760px) {
  .hero-visual {
    width: 100% !important;
  }

  .lymos-system-map {
    width: 100% !important;
    min-width: 100% !important;
    min-height: 590px !important;
  }

  .system-core {
    width: 150px !important;
    min-height: 150px !important;
  }

  .lymos-system-map .orbit-card {
    width: min(204px, 68vw) !important;
    min-height: 116px;
  }

  .lymos-system-map .pulse-card {
    top: 32px !important;
    left: 0 !important;
  }

  .lymos-system-map .bid-card {
    right: 0 !important;
    bottom: 42px !important;
  }

  .signal-chip {
    padding: 9px 11px;
    font-size: 0.68rem;
  }

  .chip-a {
    top: 178px !important;
    left: 0 !important;
  }

  .chip-b {
    top: 222px !important;
    right: 0 !important;
  }

  .chip-c {
    left: 0 !important;
    bottom: 194px !important;
  }

  .chip-d {
    right: 0 !important;
    bottom: 150px !important;
  }

  .system-metric {
    width: 78px;
    height: 78px;
    border-radius: 18px;
  }

  .metric-a {
    right: 12px !important;
    top: 320px !important;
  }

  .metric-b {
    left: 12px !important;
    bottom: 74px !important;
  }
}

@keyframes softFloat {
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes activeGlow {
  50% {
    box-shadow: 0 0 0 1px rgba(128, 228, 95, 0.18), 0 0 34px rgba(17, 199, 137, 0.16);
  }
}

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

  .animate-in {
    opacity: 1;
    transform: none;
  }
}

/* Lymos tech company layout */
.hero-kicker {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
}

.tech-orbit {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.tech-orbit::before {
  content: "";
  position: absolute;
  width: min(460px, 82vw);
  aspect-ratio: 1;
  border: 1px solid rgba(219, 255, 239, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(17, 199, 137, 0.2), transparent 62%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent);
  filter: drop-shadow(0 30px 90px rgba(17, 199, 137, 0.16));
}

.tech-orbit .hero-mark {
  position: absolute;
  z-index: 2;
  width: 132px;
  filter: drop-shadow(0 22px 52px rgba(17, 199, 137, 0.32));
}

.code-window {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(219, 255, 239, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px);
}

.window-main {
  right: 0;
  top: 82px;
  width: min(320px, 72vw);
  padding: 16px;
}

.window-side {
  left: 8px;
  bottom: 104px;
  width: 220px;
  padding: 18px;
}

.window-mini {
  right: 46px;
  bottom: 42px;
  width: 170px;
  padding: 16px;
}

.code-window strong {
  display: block;
  color: #f8fffb;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.code-window span {
  color: #bfd1cb;
  font-size: 0.88rem;
  font-weight: 800;
}

.code-line {
  height: 12px;
  width: 76%;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.16));
}

.code-line.wide {
  width: 100%;
}

.code-line.short {
  width: 54%;
}

.metric-pill {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #03100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  font-weight: 900;
}

.brand-band {
  margin: 56px 0;
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(17, 199, 137, 0.95), rgba(8, 169, 162, 0.92)),
    #0fae8a;
  color: #03100d;
}

.brand-band-inner {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.brand-band .section-number,
.brand-band p {
  color: rgba(3, 16, 13, 0.76);
}

.brand-band h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  line-height: 0.98;
}

.brand-band p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.72;
  font-weight: 750;
}

.services-grid-large {
  grid-template-columns: repeat(3, 1fr);
}

.plans-section,
.scope-section {
  padding: 96px 0;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.plan-card,
.scope-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.065));
  box-shadow: var(--shadow);
}

.plan-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.plan-card.featured {
  border-color: rgba(128, 228, 95, 0.42);
  background:
    linear-gradient(145deg, rgba(128, 228, 95, 0.18), rgba(17, 199, 137, 0.08)),
    rgba(255, 255, 255, 0.08);
}

.plan-card > span,
.scope-card > span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-card h3 {
  margin: 18px 0 8px;
  color: #f8fffb;
  font-size: 2.3rem;
}

.plan-card strong {
  display: block;
  color: #f8fffb;
  font-size: 1.35rem;
}

.plan-card p {
  color: #c3d4cf;
  line-height: 1.65;
}

.plan-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 26px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 24px;
  color: #dbe8e4;
  font-weight: 750;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(17, 199, 137, 0.45);
}

.plan-card .button {
  margin-top: auto;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}

.scope-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.scope-card h3 {
  margin: 18px 0 10px;
  color: #f8fffb;
}

.scope-card p {
  color: #c3d4cf;
  line-height: 1.65;
}

.scope-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 900;
}

.products-section {
  padding: 108px 0 72px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.product-card {
  min-height: 620px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(17, 199, 137, 0.15), rgba(255, 255, 255, 0.065)),
    rgba(5, 18, 15, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.product-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(128, 228, 95, 0.22), transparent 68%);
}

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

.product-card span {
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-card h3 {
  margin: 18px 0 14px;
  color: #f8fffb;
  font-size: clamp(2.3rem, 4vw, 4.4rem);
  line-height: 0.94;
}

.product-card p {
  color: #c4d6d0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-card ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 30px;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 24px;
  color: #e0ebe8;
  font-weight: 760;
}

.product-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(17, 199, 137, 0.46);
}

.product-card .button {
  margin-top: auto;
}

.prelaunch-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
}

.prelaunch-modal.is-open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.prelaunch-dialog {
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 8%, rgba(17, 199, 137, 0.22), transparent 16rem),
    #07110f;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
}

.prelaunch-dialog h2 {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.prelaunch-dialog p {
  color: #c4d6d0;
  line-height: 1.65;
}

.modal-close {
  float: right;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #dcebe7;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-weight: 850;
}

.modal-form {
  margin-top: 20px;
}

@media (prefers-reduced-motion: no-preference) {
  .code-window {
    animation: softFloat 7s ease-in-out infinite;
  }

  .window-side {
    animation-delay: 800ms;
  }

  .window-mini {
    animation-delay: 1400ms;
  }
}

@media (max-width: 960px) {
  .tech-orbit {
    min-height: 430px;
  }

  .services-grid-large,
  .product-grid,
  .plans-grid,
  .scope-grid,
  .brand-band-inner {
    grid-template-columns: 1fr;
  }

  .brand-band {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .hero-kicker {
    font-size: 0.78rem;
  }

  .tech-orbit {
    min-height: 360px;
  }

  .tech-orbit .hero-mark {
    width: 92px;
  }

  .window-main {
    top: 38px;
    right: 0;
    width: 238px;
  }

  .window-side {
    left: 0;
    bottom: 70px;
    width: 178px;
  }

  .window-mini {
    right: 10px;
    bottom: 18px;
    width: 142px;
  }

  .brand-band h2 {
    font-size: 2.35rem;
  }

  .plan-card {
    min-height: auto;
  }

  .product-card {
    min-height: auto;
    padding: 22px;
  }

  .prelaunch-modal {
    padding: 10px;
    align-items: flex-start;
  }

  .prelaunch-dialog {
    max-height: calc(100vh - 20px);
    width: min(100%, calc(100vw - 20px));
    max-width: calc(100vw - 20px);
    padding: 20px;
  }
}

/* Final override: transparent Lymos navigation */
.hero {
  min-height: min(920px, 100svh) !important;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 0.88fr) !important;
  gap: 84px !important;
  padding: 112px 0 72px !important;
}

.hero h1 {
  max-width: 690px !important;
  font-family: var(--font-display) !important;
  font-size: 4.55rem !important;
  line-height: 0.96 !important;
  font-weight: 700 !important;
}

.hero-lead {
  max-width: 600px !important;
  margin-top: 24px !important;
  font-size: 1.1rem !important;
  line-height: 1.72 !important;
}

.hero-actions {
  margin-top: 30px !important;
}

.lymos-system-map {
  width: 540px !important;
  max-width: 100% !important;
  min-height: 520px !important;
  border: 1px solid rgba(187, 255, 229, 0.12) !important;
  border-radius: 34px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 50% 36%, rgba(21, 210, 147, 0.18), transparent 19rem),
    linear-gradient(135deg, rgba(218, 255, 241, 0.095), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.58) !important;
}

.portal-brand {
  display: grid !important;
  place-items: center !important;
  gap: 0 !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.site-header {
  width: min(1260px, calc(100% - 56px));
  min-height: 68px;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(2, 8, 7, 0.72), rgba(2, 8, 7, 0));
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.is-scrolled {
  border: 1px solid rgba(195, 255, 226, 0.12);
  border-radius: 999px;
  padding: 8px 10px 8px 14px;
  background: rgba(3, 12, 10, 0.76);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  min-width: auto;
  width: 62px;
  height: 62px;
  justify-content: center;
}

.site-header .brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 20px rgba(17, 199, 137, 0.38));
}

.site-nav {
  gap: 26px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.nav-item {
  position: relative;
}

.site-nav a,
.nav-parent {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(238, 249, 245, 0.82);
  background: transparent;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 850;
}

.site-nav a:hover,
.nav-parent:hover,
.nav-item:focus-within .nav-parent {
  color: #ffffff;
  background: transparent;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 30;
  min-width: 190px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(195, 255, 226, 0.14);
  border-radius: 12px;
  background: rgba(3, 12, 10, 0.94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-submenu a {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  color: #dcebe7;
}

.nav-submenu a:hover {
  color: #04110e;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.site-nav .nav-action {
  min-height: auto;
  padding: 0;
  color: var(--accent);
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
}

.site-nav .nav-action:hover {
  color: #ffffff;
}

.site-nav .nav-action::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 8px 12px;
    border: 1px solid rgba(195, 255, 226, 0.12);
    border-radius: 16px;
    background: rgba(3, 12, 10, 0.82);
    backdrop-filter: blur(18px);
  }

  .site-header .brand {
    width: 46px;
    height: 46px;
  }

  .site-header .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav {
    gap: 12px;
  }

  .nav-links {
    align-items: stretch;
    gap: 0;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .nav-action::after {
    display: none;
  }
}

/* 2026-04-28: absolute final mobile proportion lock */
@media (max-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) !important;
    min-height: auto !important;
    gap: 42px !important;
    overflow: hidden !important;
    padding: 112px 0 66px !important;
  }

  .hero-content,
  .hero h1,
  .hero-lead {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero h1 {
    font-size: 2.55rem !important;
    line-height: 1.02 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero-lead {
    font-size: 0.98rem !important;
  }

  .lymos-system-map {
    width: 100% !important;
    min-height: 500px !important;
  }
}
/* 2026-04-28: hero and Pulse redesign requested after review */
.hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 0.82fr) !important;
  gap: clamp(56px, 6vw, 92px) !important;
  align-items: center !important;
  min-height: min(860px, 100svh) !important;
  padding: 108px 0 64px !important;
}

.hero-content {
  max-width: 760px !important;
}

.hero-logo {
  display: none !important;
}

.hero-kicker {
  margin-bottom: 22px !important;
}

.hero h1 {
  max-width: 760px !important;
  font-size: clamp(3.8rem, 4.75vw, 5.05rem) !important;
  line-height: 0.98 !important;
  text-wrap: balance;
}

.hero-lead {
  max-width: 670px !important;
  font-size: 1.06rem !important;
  line-height: 1.72 !important;
}

.hero-actions {
  margin-top: 28px !important;
}

.hero-visual {
  width: min(560px, 100%) !important;
}

.lymos-system-map {
  width: 560px !important;
  min-height: 480px !important;
  border-radius: 28px !important;
  transform: translateY(12px);
}

.system-core {
  width: 158px !important;
  min-height: 158px !important;
}

.lymos-system-map .orbit-card {
  width: 188px !important;
  min-height: 108px !important;
}

.lymos-system-map .pulse-card {
  top: 76px !important;
  left: 28px !important;
}

.lymos-system-map .bid-card {
  right: 28px !important;
  bottom: 76px !important;
}

.metric-a {
  right: 78px !important;
  top: 72px !important;
}

.metric-b {
  left: 124px !important;
  bottom: 58px !important;
}

.chip-a {
  top: 60px !important;
  left: 268px !important;
}

.chip-b {
  top: 220px !important;
  right: 12px !important;
}

.chip-c {
  left: 24px !important;
  bottom: 170px !important;
}

.chip-d {
  right: 178px !important;
  bottom: 34px !important;
}

.pulse-section {
  padding: 104px 0 !important;
}

.pulse-section .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr) !important;
  gap: clamp(32px, 6vw, 84px) !important;
  align-items: end !important;
  margin-bottom: 34px !important;
}

.pulse-section .section-heading h2 {
  max-width: 680px !important;
  font-size: clamp(3rem, 4.4vw, 4.75rem) !important;
  line-height: 0.98 !important;
  text-wrap: balance;
}

.pulse-section .section-heading p {
  max-width: 470px !important;
  margin: 0 !important;
  font-size: 1.05rem !important;
  line-height: 1.72 !important;
}

.pulse-product {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pulse-console,
.pulse-modules article {
  border: 1px solid rgba(187, 255, 229, 0.13);
  background:
    linear-gradient(145deg, rgba(218, 255, 241, 0.085), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.76);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.pulse-console {
  min-height: 430px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(rgba(21, 210, 147, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 74% 24%, rgba(21, 210, 147, 0.2), transparent 18rem),
    rgba(4, 14, 12, 0.82);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.pulse-console::after {
  content: "";
  position: absolute;
  inset: auto -20% 24% 18%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(115, 232, 91, 0.72), transparent);
  box-shadow: 0 0 42px rgba(21, 210, 147, 0.32);
  transform: rotate(-10deg);
}

.pulse-console-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
}

.pulse-console-head span,
.pulse-step small,
.pulse-modules span,
.pulse-signal-list strong {
  font-family: var(--font-tech);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-console-head strong {
  font-family: var(--font-display);
  color: #f3fff9;
  font-size: 1.15rem;
}

.pulse-flow {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: center;
  gap: 12px;
}

.pulse-step {
  min-height: 136px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(187, 255, 229, 0.12);
  border-radius: 20px;
  background: rgba(2, 8, 7, 0.52);
}

.pulse-step.is-active {
  background: linear-gradient(145deg, rgba(115, 232, 91, 0.2), rgba(21, 210, 147, 0.08)), rgba(2, 8, 7, 0.6);
}

.pulse-step strong {
  font-family: var(--font-display);
  color: #f3fff9;
  font-size: 1.45rem;
}

.pulse-step span {
  color: rgba(225, 241, 236, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pulse-flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 210, 147, 0), rgba(21, 210, 147, 0.9), rgba(21, 210, 147, 0));
}

.pulse-signal-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.pulse-signal-list div {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(2, 8, 7, 0.58);
}

.pulse-signal-list b {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 22px rgba(21, 210, 147, 0.45);
}

.pulse-signal-list span {
  color: rgba(243, 255, 249, 0.88);
  font-weight: 760;
}

.pulse-modules {
  display: grid;
  gap: 14px;
}

.pulse-modules article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 56px minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
}

.pulse-modules h3 {
  margin: 0;
  font-family: var(--font-display);
  color: #f3fff9;
  font-size: 1.45rem;
  line-height: 1.08;
}

.pulse-modules p {
  margin: 0;
  color: rgba(225, 241, 236, 0.74);
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  .pulse-console::after {
    animation: pulseLine 4.5s ease-in-out infinite;
  }
}

@keyframes pulseLine {
  50% {
    transform: rotate(-10deg) translateX(18%);
    opacity: 0.45;
  }
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 0.82fr) !important;
  }

  .hero h1 {
    font-size: clamp(3.45rem, 5vw, 4.25rem) !important;
  }

  .pulse-product,
  .pulse-section .section-heading {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .hero {
    padding-top: 116px !important;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 10vw, 3.05rem) !important;
  }

  .lymos-system-map {
    min-height: 460px !important;
  }

  .pulse-section {
    padding: 72px 0 !important;
  }

  .pulse-section .section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
  }

  .pulse-product {
    grid-template-columns: 1fr;
  }

  .pulse-console {
    min-height: auto;
    padding: 20px;
  }

  .pulse-flow {
    grid-template-columns: 1fr;
  }

  .pulse-flow i {
    width: 1px;
    height: 26px;
    margin: 0 auto;
  }

  .pulse-modules article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* 2026-04-28: Pulse section structural correction */
.pulse-section.split-section {
  display: block !important;
  padding-top: 96px !important;
  padding-bottom: 108px !important;
}

.pulse-section .section-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.62fr) !important;
  grid-template-areas:
    "label label"
    "title text" !important;
  column-gap: clamp(40px, 7vw, 96px) !important;
  row-gap: 14px !important;
  align-items: end !important;
  margin: 0 0 34px !important;
}

.pulse-section .section-heading .section-number {
  grid-area: label !important;
  margin: 0 !important;
}

.pulse-section .section-heading h2 {
  grid-area: title !important;
  max-width: 760px !important;
  margin: 0 !important;
  font-size: clamp(3.15rem, 4.6vw, 4.85rem) !important;
  line-height: 0.98 !important;
}

.pulse-section .section-heading p {
  grid-area: text !important;
  max-width: 470px !important;
  margin: 0 0 8px !important;
  font-size: 1.05rem !important;
  line-height: 1.72 !important;
}

.pulse-product {
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.82fr) !important;
  gap: 18px !important;
}

.pulse-console {
  min-height: 390px !important;
}

.pulse-modules article {
  min-height: 120px !important;
  grid-template-columns: 42px minmax(160px, 0.46fr) minmax(0, 1fr) !important;
}

.pulse-modules p {
  font-size: 0.96rem !important;
}

@media (max-width: 980px) {
  .pulse-section .section-heading,
  .pulse-product {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "label"
      "title"
      "text" !important;
  }

  .pulse-section .section-heading p {
    max-width: 680px !important;
  }
}

@media (max-width: 760px) {
  .pulse-section.split-section {
    padding-top: 72px !important;
    padding-bottom: 78px !important;
  }

  .pulse-section .section-heading h2 {
    font-size: clamp(2.25rem, 10vw, 3rem) !important;
  }

  .pulse-modules article {
    grid-template-columns: 1fr !important;
  }
}
.pulse-section {
  scroll-margin-top: 132px !important;
}
/* 2026-04-28: SVG logo, footer redesign and mobile navigation cleanup */
.brand-mark,
.footer-logo,
.hero-logo,
.cta-logo,
.system-core img,
.portal-brand .brand-mark {
  object-fit: contain;
}

.site-header .brand-mark,
.portal-brand .brand-mark,
.system-core img {
  filter: drop-shadow(0 0 18px rgba(21, 210, 147, 0.42));
}

.footer {
  position: relative !important;
  overflow: hidden !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(187, 255, 229, 0.13) !important;
  background:
    linear-gradient(rgba(21, 210, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 18, 15, 0.98), rgba(9, 14, 15, 0.98)) !important;
  background-size: 72px 72px, 72px 72px, auto !important;
}

.footer-glow {
  position: absolute;
  inset: -120px 0 auto;
  height: 260px;
  pointer-events: none;
  background: radial-gradient(circle at 18% 40%, rgba(21, 210, 147, 0.18), transparent 24rem), radial-gradient(circle at 82% 18%, rgba(115, 232, 91, 0.12), transparent 22rem);
}

.footer-main {
  position: relative !important;
  z-index: 1 !important;
  width: min(1260px, calc(100% - 56px)) !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 1.1fr) minmax(150px, 0.52fr) minmax(150px, 0.52fr) minmax(260px, 0.8fr) !important;
  gap: clamp(34px, 6vw, 86px) !important;
  align-items: start !important;
  padding: 72px 0 58px !important;
}

.footer-brand-block {
  align-items: flex-start !important;
  gap: 24px !important;
}

.footer-brand {
  display: inline-grid !important;
  place-items: center !important;
  width: 220px !important;
  min-height: 126px !important;
  padding: 20px 24px !important;
  border: 1px solid rgba(187, 255, 229, 0.12) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 48% 18%, rgba(21, 210, 147, 0.16), transparent 9rem),
    rgba(2, 8, 7, 0.42) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07) !important;
}

.footer-logo {
  width: 172px !important;
  height: auto !important;
  max-height: 82px !important;
  opacity: 1 !important;
  filter: drop-shadow(0 0 20px rgba(21, 210, 147, 0.22)) !important;
}

.footer p {
  max-width: 390px !important;
  margin: 0 !important;
  color: rgba(225, 241, 236, 0.8) !important;
  font-size: 1rem !important;
  line-height: 1.72 !important;
}

.footer-mini-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(187, 255, 229, 0.14);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 850;
  background: rgba(218, 255, 241, 0.04);
}

.footer-column {
  gap: 14px !important;
  padding-top: 12px;
}

.footer-column strong {
  margin: 0 0 8px !important;
  color: #f3fff9 !important;
  font-family: var(--font-tech) !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(225, 241, 236, 0.82) !important;
  font-size: 0.98rem !important;
  font-weight: 760 !important;
}

.footer-column a:hover {
  color: var(--accent) !important;
}

.footer-social-copy {
  max-width: 260px !important;
  color: rgba(225, 241, 236, 0.68) !important;
  font-size: 0.92rem !important;
}

.social-buttons {
  display: flex;
  gap: 12px;
  margin: 6px 0 12px;
}

.social-button {
  width: 48px !important;
  height: 48px !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid rgba(187, 255, 229, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(218, 255, 241, 0.055) !important;
  color: #f3fff9 !important;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease !important;
}

.social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 210, 147, 0.46) !important;
  background: rgba(21, 210, 147, 0.13) !important;
}

.social-button svg {
  width: 21px !important;
  height: 21px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-email-button {
  width: min(100%, 300px) !important;
  min-height: 54px !important;
  border-radius: 999px !important;
  font-size: 0.96rem !important;
  box-shadow: 0 18px 54px rgba(21, 210, 147, 0.2) !important;
}

.footer-bottom {
  position: relative !important;
  z-index: 1 !important;
  border-top: 1px solid rgba(187, 255, 229, 0.08) !important;
  background: rgba(2, 8, 7, 0.42) !important;
  color: rgba(225, 241, 236, 0.74) !important;
}

@media (max-width: 980px) {
  .footer-main {
    width: min(100% - 36px, 720px) !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 34px !important;
  }

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

@media (max-width: 760px) {
  .topbar-shade {
    height: 112px !important;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 66px !important;
    padding: 8px 10px !important;
    border-radius: 22px !important;
    background: rgba(2, 8, 7, 0.9) !important;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28) !important;
  }

  .nav-toggle {
    display: inline-grid !important;
    place-items: center !important;
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    border-color: rgba(187, 255, 229, 0.16) !important;
    background: rgba(218, 255, 241, 0.06) !important;
  }

  .nav-toggle span {
    width: 19px !important;
    margin: 3px auto !important;
  }

  .site-nav {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    right: 0 !important;
    display: grid !important;
    gap: 12px !important;
    padding: 16px !important;
    border: 1px solid rgba(187, 255, 229, 0.14) !important;
    border-radius: 22px !important;
    background:
      radial-gradient(circle at 84% 0%, rgba(21, 210, 147, 0.16), transparent 13rem),
      rgba(2, 8, 7, 0.96) !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.4) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-8px) !important;
    transition: opacity 180ms ease, transform 180ms ease !important;
  }

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

  .nav-links {
    display: grid !important;
    gap: 4px !important;
  }

  .site-nav a,
  .nav-parent {
    min-height: 46px !important;
    justify-content: space-between !important;
    padding: 0 12px !important;
    border-radius: 14px !important;
    font-size: 0.86rem !important;
    background: rgba(218, 255, 241, 0.035) !important;
  }

  .nav-submenu {
    display: grid !important;
    gap: 6px !important;
    margin: 6px 0 8px 0 !important;
    padding: 8px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.035) !important;
  }

  .nav-submenu a {
    min-height: 40px !important;
    padding: 0 12px !important;
    background: transparent !important;
  }

  .site-nav .nav-action {
    min-height: 50px !important;
    justify-content: center !important;
    color: #03100d !important;
    background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3)) !important;
  }

  .footer-main {
    width: min(100% - 28px, 560px) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 52px 0 40px !important;
  }

  .footer-brand {
    width: 100% !important;
    min-height: 122px !important;
  }

  .footer-logo {
    width: 190px !important;
  }

  .footer-column {
    padding-top: 0 !important;
  }

  .footer-email-button {
    width: 100% !important;
  }

  .cta-section {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .cta-section h2 {
    font-size: clamp(2.55rem, 13vw, 4rem) !important;
    line-height: 1.02 !important;
  }

  .contact-card {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  .contact-card input,
  .contact-card textarea,
  .contact-card select {
    min-height: 54px !important;
    font-size: 0.95rem !important;
  }
}
/* 2026-04-28: footer logo visibility and solid mobile menu */
.footer-brand {
  grid-template-columns: auto 1fr !important;
  justify-content: start !important;
  width: min(100%, 330px) !important;
  min-height: 116px !important;
  gap: 18px !important;
  padding: 22px !important;
}

.footer-logo {
  width: 74px !important;
  max-height: none !important;
  filter: drop-shadow(0 0 24px rgba(21, 210, 147, 0.42)) !important;
}

.footer-brand span {
  color: #f3fff9;
  font-family: var(--font-tech);
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: 0.34em;
  line-height: 1;
  text-shadow: 0 0 28px rgba(21, 210, 147, 0.18);
}

@media (max-width: 760px) {
  .site-header {
    z-index: 90 !important;
  }

  .site-nav {
    position: fixed !important;
    top: 92px !important;
    left: 14px !important;
    right: 14px !important;
    z-index: 95 !important;
    max-height: calc(100svh - 110px) !important;
    overflow: auto !important;
    background: #020807 !important;
    background-image:
      radial-gradient(circle at 82% 0%, rgba(21, 210, 147, 0.2), transparent 14rem),
      linear-gradient(rgba(21, 210, 147, 0.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 210, 147, 0.035) 1px, transparent 1px) !important;
    background-size: auto, 42px 42px, 42px 42px !important;
  }

  .site-nav a,
  .nav-parent {
    color: #f3fff9 !important;
    background: rgba(218, 255, 241, 0.07) !important;
    backdrop-filter: none !important;
  }

  .nav-submenu {
    border-color: rgba(187, 255, 229, 0.12) !important;
    background: rgba(255, 255, 255, 0.055) !important;
  }

  .nav-submenu a {
    color: rgba(225, 241, 236, 0.9) !important;
    background: rgba(2, 8, 7, 0.5) !important;
  }

  .footer-brand {
    width: 100% !important;
    min-height: 108px !important;
  }

  .footer-logo {
    width: 66px !important;
  }

  .footer-brand span {
    font-size: 1.55rem !important;
  }
}
@media (max-width: 760px) {
  .site-nav {
    display: grid !important;
    opacity: 0 !important;
    background-color: #020807 !important;
    transition: none !important;
  }

  .site-nav.is-open {
    display: grid !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52), 0 0 0 100vmax rgba(2, 8, 7, 0.62) !important;
  }
}
@media (max-width: 760px) {
  .site-nav .nav-action {
    border-radius: 16px !important;
    width: 100% !important;
  }
}
/* 2026-04-28: final mobile header drawer correction */
@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden !important;
  }

  .site-header,
  .site-header.is-scrolled {
    position: fixed !important;
    top: 12px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    transform: none !important;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 64px !important;
    padding: 8px 10px !important;
    border: 1px solid rgba(187, 255, 229, 0.14) !important;
    border-radius: 22px !important;
    background: rgba(2, 8, 7, 0.96) !important;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.44) !important;
    backdrop-filter: blur(18px) !important;
  }

  .site-header .brand {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    border-radius: 16px !important;
  }

  .site-header .brand-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .nav-toggle {
    position: relative !important;
    z-index: 1002 !important;
    display: grid !important;
    place-items: center !important;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid rgba(187, 255, 229, 0.16) !important;
    border-radius: 16px !important;
    background: rgba(218, 255, 241, 0.07) !important;
    color: #f3fff9 !important;
  }

  .nav-toggle span {
    grid-area: 1 / 1 !important;
    width: 20px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
    transition: transform 180ms ease, opacity 180ms ease !important;
  }

  .nav-toggle span:first-child {
    transform: translateY(-4px) !important;
  }

  .nav-toggle span:last-child {
    transform: translateY(4px) !important;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) !important;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) !important;
  }

  .site-nav {
    position: fixed !important;
    top: 88px !important;
    left: 12px !important;
    right: 12px !important;
    z-index: 1001 !important;
    display: grid !important;
    gap: 12px !important;
    max-height: calc(100svh - 104px) !important;
    overflow: auto !important;
    padding: 16px !important;
    border: 1px solid rgba(187, 255, 229, 0.15) !important;
    border-radius: 24px !important;
    background: #020807 !important;
    background-image:
      radial-gradient(circle at 86% 0%, rgba(21, 210, 147, 0.2), transparent 14rem),
      linear-gradient(rgba(21, 210, 147, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(21, 210, 147, 0.035) 1px, transparent 1px) !important;
    background-size: auto, 44px 44px, 44px 44px !important;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58), 0 0 0 100vmax rgba(2, 8, 7, 0.72) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease !important;
  }

  .site-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-links {
    display: grid !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .nav-item {
    display: grid !important;
    gap: 8px !important;
  }

  .site-nav a,
  .nav-parent {
    min-height: 48px !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 14px !important;
    border: 1px solid rgba(187, 255, 229, 0.08) !important;
    border-radius: 16px !important;
    color: #f3fff9 !important;
    background: rgba(218, 255, 241, 0.075) !important;
    font-family: var(--font-tech) !important;
    font-size: 0.86rem !important;
    font-weight: 850 !important;
    transform: none !important;
  }

  .nav-submenu {
    position: static !important;
    display: grid !important;
    gap: 8px !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 10px !important;
    border: 1px solid rgba(187, 255, 229, 0.1) !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.045) !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav-submenu a {
    min-height: 42px !important;
    color: rgba(225, 241, 236, 0.92) !important;
    background: rgba(2, 8, 7, 0.72) !important;
  }

  .site-nav .nav-action {
    min-height: 52px !important;
    justify-content: center !important;
    color: #03100d !important;
    background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3)) !important;
    box-shadow: 0 18px 48px rgba(21, 210, 147, 0.22) !important;
  }

  .site-nav .nav-action::after {
    display: none !important;
  }
}
/* 2026-04-28: hard lock mobile header open state */
@media (max-width: 760px) {
  body.menu-open::before {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 998 !important;
    background: rgba(2, 8, 7, 0.82) !important;
    backdrop-filter: blur(6px) !important;
  }

  body.menu-open .site-header {
    z-index: 1002 !important;
  }

  .site-nav,
  .site-nav.is-open {
    transition: none !important;
  }

  .site-nav {
    isolation: isolate !important;
  }

  .site-nav::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    border-radius: inherit !important;
    background: #020807 !important;
  }

  .site-nav.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) !important;
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(-45deg) !important;
  }
}

/* 2026-04-28: premium footer using official transparent SVGs */
.footer {
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(187, 255, 229, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(4, 28, 23, 0.86), rgba(4, 10, 9, 0.98) 44%, #040807 100%),
    linear-gradient(rgba(21, 210, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.035) 1px, transparent 1px) !important;
  background-size: auto, 64px 64px, 64px 64px !important;
}

.footer::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 12% 16%, rgba(21, 210, 147, 0.18), transparent 25rem),
    radial-gradient(circle at 84% 18%, rgba(94, 230, 99, 0.11), transparent 24rem) !important;
}

.footer-glow {
  display: none !important;
}

.footer-main {
  position: relative !important;
  z-index: 1 !important;
  max-width: 1440px !important;
  width: min(100% - 96px, 1440px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(320px, 1.08fr) minmax(140px, 0.42fr) minmax(140px, 0.42fr) minmax(280px, 0.72fr) !important;
  gap: clamp(42px, 5vw, 96px) !important;
  align-items: start !important;
  padding: clamp(58px, 7vw, 92px) 0 54px !important;
}

.footer-brand-block {
  display: grid !important;
  justify-items: start !important;
  gap: 22px !important;
  max-width: 420px !important;
}

.footer-brand,
.footer-brand.footer-brand-logo {
  width: clamp(220px, 18vw, 305px) !important;
  height: clamp(92px, 7.5vw, 128px) !important;
  min-height: 0 !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.footer-brand span,
.footer-brand.footer-brand-logo span {
  display: none !important;
}

.footer-logo,
.footer-logo.footer-logo-full {
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center !important;
  filter: drop-shadow(0 0 24px rgba(21, 210, 147, 0.16)) drop-shadow(0 16px 36px rgba(0, 0, 0, 0.5)) !important;
}

.footer-brand-block p {
  max-width: 360px !important;
  margin: 0 !important;
  color: rgba(225, 241, 236, 0.82) !important;
  font-size: clamp(1rem, 1.15vw, 1.18rem) !important;
  line-height: 1.55 !important;
}

.footer-mini-cta {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 22px !important;
  border: 1px solid rgba(187, 255, 229, 0.16) !important;
  border-radius: 999px !important;
  color: var(--accent) !important;
  background: rgba(218, 255, 241, 0.035) !important;
  font-family: var(--font-tech) !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.04em !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

.footer-column {
  gap: 13px !important;
  padding-top: 14px !important;
}

.footer-column strong {
  color: #f3fff9 !important;
  font-family: var(--font-tech) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.footer-column a {
  color: rgba(225, 241, 236, 0.84) !important;
  font-size: 1.02rem !important;
  font-weight: 780 !important;
}

.footer-column a:hover {
  color: #f7fffb !important;
}

.footer-social-copy {
  max-width: 280px !important;
  margin: 8px 0 8px !important;
  color: rgba(225, 241, 236, 0.78) !important;
  font-size: 1.02rem !important;
  line-height: 1.5 !important;
}

.social-buttons {
  display: flex !important;
  gap: 12px !important;
  margin: 10px 0 22px !important;
}

.social-button {
  width: 50px !important;
  height: 50px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(187, 255, 229, 0.15) !important;
  background: rgba(218, 255, 241, 0.065) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

.social-button:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(21, 210, 147, 0.46) !important;
  background: rgba(21, 210, 147, 0.13) !important;
}

.social-button svg {
  width: 21px !important;
  height: 21px !important;
  stroke-width: 2 !important;
}

.footer-email-button {
  min-height: 56px !important;
  width: min(100%, 310px) !important;
  padding: 0 26px !important;
  border: 0 !important;
  border-radius: 999px !important;
  color: #03100d !important;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3)) !important;
  box-shadow: 0 24px 60px rgba(21, 210, 147, 0.2) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.footer-bottom {
  position: relative !important;
  z-index: 1 !important;
  min-height: 66px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-top: 1px solid rgba(187, 255, 229, 0.09) !important;
  background: rgba(2, 8, 7, 0.48) !important;
  color: rgba(225, 241, 236, 0.8) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .footer-main {
    width: min(100% - 48px, 760px) !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 38px 54px !important;
    padding: 58px 0 42px !important;
  }

  .footer-social {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 640px) {
  .footer-main {
    width: min(100% - 36px, 430px) !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 196px 0 34px !important;
    text-align: left !important;
  }

  .footer-brand-block {
    max-width: none !important;
    justify-items: start !important;
  }

  .footer-brand,
  .footer-brand.footer-brand-logo {
    width: min(270px, 78vw) !important;
    height: 112px !important;
  }

  .footer-column {
    padding-top: 0 !important;
  }

  .footer-email-button {
    width: 100% !important;
  }

  .footer-bottom {
    min-height: 58px !important;
    padding: 0 18px !important;
    text-align: center !important;
  }
}

/* 2026-04-28: emergency mobile hero correction after real device review */
@media (max-width: 760px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  .section-shell,
  .hero.section-shell {
    width: min(100% - 36px, 430px) !important;
    max-width: 430px !important;
  }

  .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 34px !important;
    min-height: auto !important;
    padding: 118px 0 58px !important;
    align-items: start !important;
    overflow: visible !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    display: grid !important;
    gap: 18px !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .hero-kicker {
    max-width: 250px !important;
    margin: 0 0 4px !important;
    font-size: 0.72rem !important;
    line-height: 1.45 !important;
    letter-spacing: 0.13em !important;
    text-wrap: balance !important;
  }

  .hero h1 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    color: #f4fff9 !important;
    font-size: clamp(2.42rem, 11.2vw, 3.05rem) !important;
    line-height: 1.03 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero-lead {
    width: 100% !important;
    max-width: 100% !important;
    margin: 2px 0 0 !important;
    color: rgba(226, 241, 236, 0.86) !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
    text-wrap: pretty !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .hero-actions {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    margin-top: 8px !important;
  }

  .hero-actions .button {
    width: 100% !important;
    min-height: 54px !important;
    padding: 0 18px !important;
    justify-content: center !important;
    border-radius: 18px !important;
    font-size: 0.94rem !important;
    white-space: normal !important;
    text-align: center !important;
    line-height: 1.15 !important;
  }

  .hero-visual {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: relative !important;
    z-index: 1 !important;
    margin: 4px 0 0 !important;
    transform: none !important;
    overflow: hidden !important;
    border-radius: 28px !important;
  }

  .lymos-system-map {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 360px !important;
    height: 360px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    border: 1px solid rgba(187, 255, 229, 0.12) !important;
    border-radius: 28px !important;
    background:
      radial-gradient(circle at 66% 16%, rgba(94, 230, 99, 0.2), transparent 9rem),
      radial-gradient(circle at 32% 72%, rgba(21, 210, 147, 0.16), transparent 12rem),
      rgba(4, 18, 15, 0.76) !important;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32) !important;
    overflow: hidden !important;
  }

  .system-grid {
    inset: 0 !important;
    border-radius: inherit !important;
    opacity: 0.7 !important;
    mask-image: none !important;
  }

  .system-orbit {
    opacity: 0.55 !important;
  }

  .orbit-a {
    inset: 70px -54px 44px 64px !important;
  }

  .orbit-b {
    inset: 118px 18px 74px -40px !important;
  }

  .system-core {
    position: absolute !important;
    top: 34px !important;
    right: 22px !important;
    width: 138px !important;
    min-height: 138px !important;
    padding: 18px !important;
    border-radius: 26px !important;
  }

  .system-core img {
    width: 34px !important;
  }

  .system-core span {
    font-size: 0.68rem !important;
  }

  .system-core strong {
    font-size: 0.9rem !important;
  }

  .lymos-system-map .orbit-card,
  .signal-chip,
  .system-metric {
    transform: none !important;
    animation: none !important;
  }

  .lymos-system-map .orbit-card {
    width: 188px !important;
    min-height: 104px !important;
    padding: 16px !important;
    border-radius: 22px !important;
  }

  .lymos-system-map .orbit-card::before {
    width: 32px !important;
    height: 32px !important;
    margin-bottom: 12px !important;
  }

  .lymos-system-map .orbit-card strong {
    font-size: 1rem !important;
  }

  .lymos-system-map .orbit-card span {
    font-size: 0.78rem !important;
  }

  .lymos-system-map .pulse-card {
    top: 72px !important;
    left: 16px !important;
    right: auto !important;
  }

  .lymos-system-map .bid-card {
    right: 18px !important;
    bottom: 42px !important;
    left: auto !important;
  }

  .signal-chip {
    padding: 8px 10px !important;
    font-size: 0.66rem !important;
    border-radius: 999px !important;
  }

  .chip-a {
    top: 18px !important;
    left: 16px !important;
  }

  .chip-b {
    top: auto !important;
    right: 16px !important;
    bottom: 184px !important;
  }

  .chip-c {
    left: 18px !important;
    bottom: 128px !important;
  }

  .chip-d {
    right: 118px !important;
    bottom: 18px !important;
  }

  .system-metric {
    width: 78px !important;
    height: 78px !important;
    border-radius: 20px !important;
  }

  .system-metric small {
    font-size: 0.6rem !important;
  }

  .system-metric strong {
    font-size: 1.25rem !important;
  }

  .metric-a {
    top: 172px !important;
    right: 22px !important;
  }

  .metric-b {
    left: 36px !important;
    bottom: 28px !important;
  }
}

@media (max-width: 380px) {
  .section-shell,
  .hero.section-shell {
    width: min(100% - 28px, 430px) !important;
  }

  .hero h1 {
    font-size: clamp(2.28rem, 10.8vw, 2.82rem) !important;
  }

  .hero-lead {
    font-size: 0.98rem !important;
  }

  .lymos-system-map {
    height: 338px !important;
    min-height: 338px !important;
  }
}

/* 2026-04-29: product ecosystem, LYMOS PAY and product subpages */
.product-card-actions,
.pay-actions,
.product-page-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 22px !important;
}

.product-card-actions .button {
  min-height: 48px !important;
  padding: 0 18px !important;
  border-radius: 16px !important;
  font-size: 0.86rem !important;
}

.lymos-system-map .pay-card {
  left: 54px !important;
  bottom: 54px !important;
}

.pay-section {
  padding: 98px 0 !important;
}

.pay-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid rgba(187, 255, 229, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 82% 18%, rgba(94, 230, 99, 0.18), transparent 22rem),
    radial-gradient(circle at 18% 82%, rgba(21, 210, 147, 0.12), transparent 20rem),
    linear-gradient(145deg, rgba(218, 255, 241, 0.075), rgba(218, 255, 241, 0.025)),
    rgba(4, 14, 12, 0.84);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.pay-copy h2 {
  max-width: 760px;
  margin: 16px 0 18px;
  color: #f3fff9;
  font-family: var(--font-display);
  font-size: clamp(2.55rem, 4.7vw, 4.75rem);
  line-height: 0.98;
}

.pay-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(225, 241, 236, 0.8);
  font-size: 1.08rem;
  line-height: 1.72;
}

.pay-terminal {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(187, 255, 229, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(rgba(21, 210, 147, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.052) 1px, transparent 1px),
    rgba(2, 8, 7, 0.58);
  background-size: 34px 34px, 34px 34px, auto;
}

.pay-terminal-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(225, 241, 236, 0.86);
  font-family: var(--font-tech);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pay-terminal-head span {
  color: var(--accent);
}

.pay-ledger {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  width: min(100%, 380px);
  margin-top: 54px;
}

.pay-ledger div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(187, 255, 229, 0.12);
  border-radius: 18px;
  background: rgba(2, 8, 7, 0.68);
}

.pay-ledger span,
.pay-ledger em {
  color: rgba(225, 241, 236, 0.72);
  font-size: 0.88rem;
  font-style: normal;
}

.pay-ledger strong {
  color: #f3fff9;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.pay-ledger em {
  grid-column: 1 / -1;
  color: var(--accent);
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pay-orb {
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(187, 255, 229, 0.13);
  border-radius: 50%;
  color: #03100d;
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  box-shadow: 0 0 80px rgba(21, 210, 147, 0.2);
  font-family: var(--font-tech);
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.product-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 0.72fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
  min-height: min(760px, 100svh);
  padding: 112px 0 56px;
}

.product-back {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--font-tech);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-page-copy > .section-number {
  display: block !important;
}

.product-page-copy h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  color: #f3fff9;
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.85vw, 5.15rem);
  line-height: 0.98;
}

.product-page-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(225, 241, 236, 0.82);
  font-size: 1.12rem;
  line-height: 1.72;
}

.product-page-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(187, 255, 229, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(rgba(21, 210, 147, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 210, 147, 0.052) 1px, transparent 1px),
    radial-gradient(circle at 70% 20%, rgba(94, 230, 99, 0.18), transparent 18rem),
    rgba(4, 14, 12, 0.72);
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.3);
}

.product-orbital-card {
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(187, 255, 229, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 68% 0%, rgba(94, 230, 99, 0.22), transparent 14rem),
    linear-gradient(145deg, rgba(218, 255, 241, 0.09), rgba(218, 255, 241, 0.025)),
    rgba(2, 8, 7, 0.72);
}

.product-orbital-card img {
  width: 52px;
  filter: drop-shadow(0 0 24px rgba(21, 210, 147, 0.4));
}

.product-orbital-card span {
  color: var(--accent);
  font-family: var(--font-tech);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.product-orbital-card strong {
  max-width: 360px;
  color: #f3fff9;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.85rem);
  line-height: 1.02;
}

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

.product-metric-grid div {
  min-height: 120px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(187, 255, 229, 0.12);
  border-radius: 20px;
  background: rgba(2, 8, 7, 0.62);
}

.product-metric-grid span {
  color: rgba(225, 241, 236, 0.72);
  font-size: 0.78rem;
  line-height: 1.35;
}

.product-metric-grid strong {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.7rem;
}

.product-detail-section,
.product-use-section,
.product-feature-section,
.product-final-cta {
  padding: 86px 0;
}

.product-detail-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.56fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: end;
  margin-bottom: 30px;
}

.product-detail-heading h2,
.product-feature-panel h2,
.product-final-cta h2 {
  margin: 14px 0 0;
  color: #f3fff9;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.35rem);
  line-height: 1;
}

.product-detail-heading p,
.product-final-cta p {
  margin: 0;
  color: rgba(225, 241, 236, 0.78);
  font-size: 1.04rem;
  line-height: 1.7;
}

.product-workflow,
.product-use-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.product-workflow div,
.product-use-card,
.product-feature-panel {
  border: 1px solid rgba(187, 255, 229, 0.12);
  background:
    linear-gradient(145deg, rgba(218, 255, 241, 0.075), rgba(218, 255, 241, 0.025)),
    rgba(5, 18, 15, 0.7);
}

.product-workflow div {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
}

.product-workflow span {
  color: var(--accent);
  font-family: var(--font-tech);
  font-size: 0.74rem;
  font-weight: 900;
}

.product-workflow strong {
  color: #f3fff9;
  font-size: 1.05rem;
}

.product-use-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.product-use-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 26px;
  border-radius: 26px;
}

.product-use-card b {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
}

.product-use-card p {
  margin: 0;
  color: rgba(225, 241, 236, 0.82);
  font-size: 1.04rem;
  line-height: 1.6;
}

.product-feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(360px, 0.64fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 32px;
}

.product-feature-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-feature-panel li {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(187, 255, 229, 0.1);
  border-radius: 16px;
  color: rgba(243, 255, 249, 0.9);
  background: rgba(2, 8, 7, 0.56);
  font-weight: 740;
}

.product-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.58fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.product-final-cta .contact-card {
  margin: 0;
}

@media (max-width: 1080px) {
  .product-page-hero,
  .pay-panel,
  .product-detail-heading,
  .product-feature-panel,
  .product-final-cta {
    grid-template-columns: 1fr;
  }

  .product-workflow {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-use-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .product-page-hero {
    width: min(100% - 36px, 430px) !important;
    min-height: auto;
    padding: 118px 0 54px;
    gap: 32px;
  }

  .product-page-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.15rem);
    line-height: 1.02;
  }

  .product-page-copy p {
    font-size: 1rem;
  }

  .product-page-actions,
  .product-card-actions,
  .pay-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .product-page-actions .button,
  .product-card-actions .button,
  .pay-actions .button {
    width: 100% !important;
  }

  .product-page-visual {
    min-height: 410px;
    padding: 18px;
    border-radius: 28px;
  }

  .product-orbital-card {
    min-height: 210px;
    padding: 22px;
  }

  .product-metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-metric-grid div {
    min-height: 82px;
    padding: 10px;
    border-radius: 16px;
  }

  .product-metric-grid span {
    font-size: 0.68rem;
  }

  .product-metric-grid strong {
    font-size: 1.08rem;
  }

  .product-detail-section,
  .product-use-section,
  .product-feature-section,
  .product-final-cta,
  .pay-section {
    width: min(100% - 36px, 430px) !important;
    padding: 58px 0;
  }

  .product-detail-heading h2,
  .product-feature-panel h2,
  .product-final-cta h2,
  .pay-copy h2 {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
    line-height: 1.04;
  }

  .product-workflow {
    grid-template-columns: 1fr;
  }

  .product-use-card {
    min-height: 170px;
  }

  .product-feature-panel,
  .pay-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .pay-terminal {
    min-height: 360px;
    padding: 18px;
  }

  .pay-orb {
    width: 150px;
    height: 150px;
  }

  .lymos-system-map .pay-card {
    left: 22px !important;
    bottom: 30px !important;
  }
}

/* 2026-04-29: stable dropdown, premium marquee signals and infinite product rail */
.has-submenu {
  position: relative !important;
}

.has-submenu::after {
  content: "" !important;
  position: absolute !important;
  left: -24px !important;
  right: -24px !important;
  top: 100% !important;
  height: 34px !important;
}

.nav-submenu {
  top: calc(100% + 10px) !important;
  min-width: 228px !important;
  padding: 12px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 78% 0%, rgba(21, 210, 147, 0.16), transparent 10rem),
    rgba(3, 12, 10, 0.98) !important;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease !important;
  visibility: hidden !important;
}

.has-submenu:hover .nav-submenu,
.has-submenu:focus-within .nav-submenu,
.has-submenu.is-submenu-open .nav-submenu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate(-50%, 0) !important;
}

.nav-submenu a {
  min-height: 44px !important;
  padding: 0 14px !important;
  border-radius: 12px !important;
  font-size: 0.78rem !important;
}

.trusted-band {
  position: relative !important;
  display: flex !important;
  gap: 10px !important;
  width: min(100% - 96px, 1280px) !important;
  margin: 34px auto 70px !important;
  overflow: hidden !important;
  padding: 12px !important;
  border: 1px solid rgba(187, 255, 229, 0.12) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(90deg, rgba(2, 8, 7, 0.98), transparent 16%, transparent 84%, rgba(2, 8, 7, 0.98)),
    rgba(218, 255, 241, 0.035) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}

.trusted-band::before,
.trusted-band::after,
.product-carousel::before,
.product-carousel::after {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  z-index: 2 !important;
  width: 120px !important;
  pointer-events: none !important;
}

.trusted-band::before,
.product-carousel::before {
  left: 0 !important;
  background: linear-gradient(90deg, #020807, transparent) !important;
}

.trusted-band::after,
.product-carousel::after {
  right: 0 !important;
  background: linear-gradient(270deg, #020807, transparent) !important;
}

.trusted-band span {
  flex: 0 0 auto !important;
  min-width: max-content !important;
  min-height: 46px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 24px !important;
  border: 1px solid rgba(187, 255, 229, 0.1) !important;
  border-radius: 999px !important;
  color: rgba(243, 255, 249, 0.9) !important;
  background: rgba(2, 8, 7, 0.64) !important;
  font-family: var(--font-tech) !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.02em !important;
  animation: signalMarquee 24s linear infinite !important;
}

.trusted-band:hover span {
  animation-play-state: paused !important;
}

.products-section {
  overflow: hidden !important;
  scroll-margin-top: 132px !important;
  padding-top: 132px !important;
  margin-top: -76px !important;
}

.product-carousel {
  position: relative !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  overflow: hidden !important;
  padding: 10px 0 22px !important;
}

.product-track {
  display: flex !important;
  align-items: stretch !important;
  gap: 22px !important;
  width: max-content !important;
  padding-left: max(24px, calc((100vw - 1180px) / 2)) !important;
  animation: productRail 34s linear infinite !important;
}

.product-carousel:hover .product-track {
  animation-play-state: paused !important;
}

.product-track .product-card {
  flex: 0 0 clamp(360px, 34vw, 520px) !important;
  min-height: 460px !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
}

.product-track .product-card:nth-child(3n + 2) {
  transform: translateY(28px) !important;
}

.product-track .product-card:nth-child(3n) {
  transform: translateY(10px) !important;
}

@keyframes productRail {
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

@keyframes signalMarquee {
  to {
    transform: translateX(calc(-100% - 10px));
  }
}

.product-page-copy {
  display: block !important;
}

.product-back {
  position: relative !important;
  min-height: 42px !important;
  align-items: center !important;
  margin: 0 0 34px !important;
  padding: 0 16px 0 34px !important;
  border: 1px solid rgba(187, 255, 229, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(218, 255, 241, 0.045) !important;
  color: rgba(225, 241, 236, 0.86) !important;
}

.product-back::before {
  content: "" !important;
  position: absolute !important;
  left: 16px !important;
  width: 7px !important;
  height: 7px !important;
  border-left: 2px solid var(--accent) !important;
  border-bottom: 2px solid var(--accent) !important;
  transform: rotate(45deg) !important;
}

.product-page-copy > .section-number {
  margin-bottom: 14px !important;
}

@media (prefers-reduced-motion: reduce) {
  .product-track,
  .trusted-band span {
    animation: none !important;
  }
}

@media (max-width: 760px) {
  .has-submenu::after {
    display: none !important;
  }

  .trusted-band {
    width: min(100% - 36px, 430px) !important;
    margin: 18px auto 48px !important;
    border-radius: 24px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }

  .trusted-band::-webkit-scrollbar {
    display: none !important;
  }

  .trusted-band span {
    animation: none !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 0.72rem !important;
  }

  .product-carousel {
    width: 100% !important;
    margin-left: 0 !important;
    overflow-x: auto !important;
    padding: 4px 0 18px !important;
    scrollbar-width: none !important;
  }

  .product-carousel::-webkit-scrollbar {
    display: none !important;
  }

  .product-track {
    gap: 16px !important;
    width: max-content !important;
    padding: 0 18px !important;
    animation: none !important;
  }

  .product-track .product-card {
    flex-basis: min(82vw, 330px) !important;
    min-height: 460px !important;
    transform: none !important;
  }

  .product-track .product-card[aria-hidden="true"] {
    display: none !important;
  }

  .product-back {
    margin-bottom: 26px !important;
  }
}
