:root {
  --ink: #111827;
  --navy: #102033;
  --deep: #08111d;
  --muted: #5d6674;
  --paper: #eef4f7;
  --white: #ffffff;
  --line: #d9dee3;
  --cyan: #18b7d7;
  --gold: #d7a241;
  --green: #2f8f70;
  --shadow: 0 22px 70px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 50;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  background: rgba(7, 11, 18, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  padding: 8px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.utility-bar a {
  color: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  color: var(--white);
}

.brand-logo {
  display: block;
  width: 66px;
  height: 66px;
  border-radius: 8px;
  overflow: hidden;
  background: #f0ddae;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 1.12rem;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.66rem;
  font-weight: 750;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--cyan);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  padding: 0 20px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta {
  color: var(--deep);
  background: var(--white);
}

.mobile-label {
  display: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}

.hero-media,
.hero-media video,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media video {
  z-index: 1;
}

.hero-media img {
  z-index: 0;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 17, 29, 0.96) 0%, rgba(8, 17, 29, 0.78) 43%, rgba(8, 17, 29, 0.34) 78%),
    linear-gradient(180deg, rgba(8, 17, 29, 0.22) 0%, rgba(8, 17, 29, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 82px);
  padding-top: 112px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

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

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
}

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

.button.primary {
  color: #071016;
  background: var(--cyan);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.mega-panel {
  display: grid;
  grid-template-columns: 0.84fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.mega-panel div {
  min-height: 118px;
  padding: 24px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.logo-statement {
  display: grid;
  place-items: center;
  text-align: center;
  gap: 10px;
  background: #fff8e7;
}

.logo-statement img {
  width: min(180px, 100%);
  height: auto;
  border-radius: 8px;
}

.logo-statement strong {
  color: #8c651d;
  font-size: 0.86rem;
  letter-spacing: 0;
}

.panel-label {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mega-panel strong {
  display: block;
  max-width: 390px;
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  line-height: 1.3;
}

.section,
.split-section,
.insights-section,
.contact-section,
.industry-band,
.group-section,
.careers-section,
.quote-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 132px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading p,
.industry-intro p,
.group-copy p,
.careers-section p,
.split-section p,
.contact-section p,
.quote-section p {
  color: var(--muted);
}

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

.capability-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.05);
}

.capability-card span {
  margin-bottom: 44px;
  color: var(--gold);
  font-weight: 850;
}

.capability-card p {
  color: var(--muted);
}

.capability-card a {
  margin-top: auto;
  color: var(--navy);
  font-weight: 850;
}

.capability-card a::after,
.text-link::after,
.insight-list a::after {
  content: " ->";
  color: var(--cyan);
}

.industry-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 82px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.industry-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: #ffffff;
  font-weight: 750;
}

.group-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: center;
  padding-top: clamp(52px, 8vw, 96px);
  padding-bottom: clamp(52px, 8vw, 96px);
}

.group-card {
  display: grid;
  gap: 12px;
  padding: clamp(26px, 4vw, 38px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 32, 51, 0.96), rgba(16, 32, 51, 0.84)),
    url("assets/laxgen-logo.png") center / cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.group-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.group-card strong {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.08;
}

.group-card p {
  color: rgba(255, 255, 255, 0.78);
}

.group-card a {
  justify-self: start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #071016;
  background: var(--cyan);
  border-radius: 4px;
  font-weight: 850;
}

.careers-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.career-card {
  min-height: 240px;
  padding: 28px;
  border-radius: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 34px rgba(17, 24, 39, 0.05);
}

.career-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.careers-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 24px;
  border-radius: 4px;
  color: var(--white);
  background: var(--navy);
}

.careers-cta strong,
.careers-cta span {
  display: block;
}

.careers-cta span {
  color: rgba(255, 255, 255, 0.72);
}

.careers-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: #071016;
  background: var(--cyan);
  border-radius: 4px;
  font-weight: 850;
  white-space: nowrap;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
  gap: clamp(34px, 8vw, 90px);
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--navy);
  font-weight: 850;
}

.delivery-steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.delivery-steps div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.delivery-steps strong,
.delivery-steps span {
  display: block;
}

.delivery-steps strong {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.delivery-steps span {
  color: var(--muted);
}

.insights-section {
  border-top: 1px solid var(--line);
}

.section-heading.compact {
  max-width: 720px;
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 20px;
}

.featured-insight {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(11, 18, 32, 0.96), rgba(11, 18, 32, 0.78)),
    url("assets/laxgen-hero.png") center / cover;
  border-radius: 4px;
  box-shadow: var(--shadow);
}

.featured-insight span,
.insight-list span {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.featured-insight p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.insight-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.insight-list a {
  display: grid;
  align-content: center;
  min-height: 96px;
  padding: 18px 22px;
  background: #ffffff;
}

.insight-list strong {
  font-size: 1.04rem;
}

.quote-section {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

blockquote {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 26px;
  color: var(--muted);
}

.contact-details a {
  color: var(--ink);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(340px, 1fr);
  gap: 44px;
  padding: 54px clamp(18px, 4vw, 58px) 24px;
  color: rgba(255, 255, 255, 0.74);
  background: #07111f;
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}

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

.footer-columns div,
.footer-columns a {
  display: grid;
}

.footer-columns h3 {
  color: var(--white);
}

.footer-columns a {
  padding: 5px 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom a,
.site-footer .brand {
  color: var(--white);
}

.chatbot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  font-family: inherit;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 8px 18px 8px 8px;
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.chat-toggle span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #071016;
  background: var(--cyan);
  font-weight: 900;
}

.chat-toggle strong {
  font-size: 0.95rem;
}

.chat-panel {
  width: min(380px, calc(100vw - 32px));
  overflow: hidden;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  color: var(--white);
  background: var(--navy);
}

.chat-header strong,
.chat-kicker {
  display: block;
}

.chat-kicker {
  margin-bottom: 2px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.chat-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 10px;
  max-height: 310px;
  overflow-y: auto;
  padding: 16px;
  background: #f7fafb;
}

.chat-message {
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.chat-message.bot {
  justify-self: start;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-message.user {
  justify-self: end;
  color: var(--white);
  background: var(--navy);
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
  background: #f7fafb;
}

.chat-suggestions button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--navy);
  background: var(--white);
  font-weight: 750;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
}

.chat-form input {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.chat-form button {
  border: 0;
  border-radius: 4px;
  padding: 0 14px;
  color: #071016;
  background: var(--cyan);
  font-weight: 850;
  cursor: pointer;
}

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

@media (max-width: 940px) {
  .utility-bar {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 90px;
  }

  .mega-panel,
  .capability-grid,
  .careers-grid,
  .industry-band,
  .group-section,
  .split-section,
  .insights-grid,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .main-nav {
    min-height: 68px;
    gap: 12px;
    padding: 12px 16px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy small {
    font-size: 0.56rem;
    max-width: 104px;
    line-height: 1.1;
  }

  .brand-copy strong {
    font-size: 0.96rem;
  }

  .nav-cta {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero {
    min-height: 740px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 11, 18, 0.98), rgba(7, 11, 18, 0.74)),
      linear-gradient(180deg, rgba(7, 11, 18, 0.2), rgba(7, 11, 18, 0.9));
  }

  .hero-content {
    width: calc(100vw - 64px);
    margin-left: 22px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .capability-card,
  .career-card,
  .contact-form {
    padding: 22px;
  }

  .careers-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chat-toggle strong {
    display: none;
  }
}

@media (min-width: 601px) and (max-width: 760px) {
  .hero-content {
    width: calc(100% - 64px);
    margin-left: 32px;
  }

  h1 {
    font-size: 3rem;
  }
}
