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

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

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