:root {
  --ink: #111827;
  --paper: #ffffff;
  --panel: #f4f5f7;
  --line: #e5e7eb;
  --muted: #4b5563;
  --soft: #6b7280;
  --yellow: #ffd43b;
  --blue: #2563eb;
  --green: #16a34a;
  --red: #dc2626;
  --blue-soft: #eff6ff;
  --green-soft: #ecfdf5;
  --red-soft: #fef2f2;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  max-width: 100vw;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px 34px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header > * {
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 232px;
}

.brand-logo {
  display: block;
  width: 218px;
  height: auto;
}

.brand-logo-dark {
  width: 218px;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.nav-backdrop {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  gap: 13px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
}

.main-nav a,
.nav-trigger {
  color: inherit;
  white-space: nowrap;
}

.main-nav a:hover,
.nav-trigger:hover,
.nav-item.is-open .nav-trigger {
  color: var(--ink);
}

.nav-item {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
}

.nav-trigger::after {
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.mega-panel {
  position: fixed;
  top: 104px;
  left: 50%;
  display: grid;
  width: min(760px, calc(100vw - 48px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-panel-wide {
  width: min(820px, calc(100vw - 48px));
}

.mega-panel-dark {
  border-color: rgba(148, 163, 184, 0.26);
  background: #061a33;
  color: var(--paper);
}

.mega-panel-dark .mega-kicker {
  color: #2dd4bf;
}

.mega-panel-dark a {
  border-bottom: 1px solid rgba(203, 213, 225, 0.18);
  color: var(--paper);
}

.mega-panel-dark a:hover {
  background: rgba(45, 212, 191, 0.12);
  color: #5eead4;
}

.mega-panel-list a {
  padding: 10px 0;
  border-radius: 0;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-panel div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mega-panel a {
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 18px;
  white-space: normal;
}

.mega-panel a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.mega-kicker {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.header-cta {
  flex-shrink: 0;
  padding: 0 16px;
  background: var(--ink);
  color: var(--paper);
}

.btn {
  padding: 0 20px;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-secondary {
  background: var(--yellow);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 64px;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: 96px max(34px, calc((100vw - 1280px) / 2 + 48px)) 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(37, 99, 235, 0.34), transparent 32%),
    radial-gradient(circle at 46% 92%, rgba(255, 212, 59, 0.18), transparent 32%),
    linear-gradient(135deg, #020617 0%, #061a33 48%, #0f172a 100%);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 82%, transparent);
  opacity: 0.55;
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero .kicker {
  color: #5eead4;
}

.hero .kicker::before {
  background: #5eead4;
}

.kicker {
  position: relative;
  margin: 0 0 14px;
  padding-left: 40px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 18px;
  text-transform: uppercase;
}

.kicker::before {
  position: absolute;
  left: 0;
  top: 7px;
  width: 28px;
  height: 4px;
  background: var(--blue);
  content: "";
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 62px;
}

.hero h1 {
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 44px;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 900;
  line-height: 26px;
}

.hero-text {
  max-width: 660px;
  color: #dbeafe;
  font-size: 19px;
  line-height: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 42px;
}

.hero .btn-primary,
.quote-band .btn-primary {
  background: var(--yellow);
  color: var(--ink);
}

.hero .btn-secondary {
  border: 1px solid rgba(203, 213, 225, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
}

.hero-metrics div {
  width: 170px;
  padding: 18px;
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-size: 34px;
  font-weight: 900;
  line-height: 38px;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.command-panel {
  position: relative;
  z-index: 1;
  width: 430px;
  flex-shrink: 0;
  padding: 30px;
  border: 1px solid rgba(203, 213, 225, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.94), rgba(2, 6, 23, 0.94));
  color: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.facility-visual {
  position: relative;
  min-height: 176px;
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid rgba(94, 234, 212, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 212, 59, 0.24), transparent 18%),
    radial-gradient(circle at 70% 38%, rgba(37, 99, 235, 0.34), transparent 26%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(3, 7, 18, 0.96));
}

.facility-visual::before,
.facility-visual::after {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(203, 213, 225, 0.18);
  content: "";
}

.facility-visual::after {
  inset: 46px 34px 28px 86px;
  border-color: rgba(94, 234, 212, 0.34);
}

.facility-visual span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #5eead4;
  border-radius: 50%;
  background: #020617;
  box-shadow: 0 0 22px rgba(94, 234, 212, 0.52);
}

.facility-visual span:nth-child(1) {
  left: 34px;
  top: 32px;
}

.facility-visual span:nth-child(2) {
  right: 38px;
  top: 44px;
}

.facility-visual span:nth-child(3) {
  left: 90px;
  bottom: 34px;
}

.facility-visual span:nth-child(4) {
  right: 92px;
  bottom: 28px;
}

.facility-visual strong {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.command-panel h2 {
  color: var(--paper);
  font-size: 38px;
  line-height: 42px;
}

.command-panel p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 25px;
}

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

.mini-dashboard div {
  padding: 14px 10px;
  border: 1px solid #374151;
  border-radius: 8px;
}

.mini-dashboard strong,
.mini-dashboard span {
  display: block;
}

.mini-dashboard strong {
  color: var(--yellow);
  font-size: 24px;
  line-height: 28px;
}

.mini-dashboard span {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 700;
}

.wo-preview {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 8px;
  background: #1f2937;
}

.wo-preview > span {
  width: 8px;
  border-radius: 999px;
  background: var(--red);
}

.wo-preview strong,
.wo-preview small {
  display: block;
}

.wo-preview small {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 12px;
  line-height: 17px;
}

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(360px, 1fr);
  gap: 72px;
  border-top: 1px solid var(--line);
}

.split-section p:last-child,
.platform-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 30px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-grid article,
.industry-list article,
.capability-grid article,
.partner-band article,
.insight-list article {
  position: relative;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.service-grid article,
.capability-grid article {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-grid article:hover,
.capability-grid article:hover {
  border-color: rgba(37, 99, 235, 0.38);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.service-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 8px;
  background: var(--paper);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.service-grid p,
.industry-list p,
.workflow-steps p,
.capability-grid p,
.partner-band p {
  color: var(--muted);
  font-size: 15px;
  line-height: 24px;
}

.card-index {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.featured-card {
  background: var(--ink) !important;
  color: var(--paper);
}

.featured-card .service-icon {
  border-color: rgba(255, 212, 59, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.featured-card .card-index {
  color: var(--yellow);
}

.featured-card p {
  color: #cbd5e1;
}

.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96), rgba(6, 26, 51, 0.96)),
    var(--ink);
  color: var(--paper);
}

.quote-band span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-band strong {
  display: block;
  max-width: 760px;
  font-size: 21px;
  line-height: 29px;
}

.workflow {
  background: var(--panel);
  max-width: none;
}

.workflow .section-heading,
.workflow-steps {
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  position: relative;
  min-height: 220px;
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.workflow-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  font-weight: 900;
}

.workflow-steps li:nth-child(3) span {
  background: var(--yellow);
  color: var(--ink);
}

.workflow-steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
}

.capabilities-section {
  max-width: none;
  background: #061a33;
  color: var(--paper);
}

.capabilities-section .section-heading,
.capability-grid {
  max-width: 1184px;
  margin-left: auto;
  margin-right: auto;
}

.capabilities-section .kicker {
  color: #5eead4;
}

.capabilities-section .kicker::before {
  background: #5eead4;
}

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

.capability-grid article {
  border-color: rgba(203, 213, 225, 0.18);
  border-top: 6px solid var(--yellow);
  background: rgba(255, 255, 255, 0.06);
}

.capability-grid article:nth-child(2n) {
  border-top-color: var(--blue);
}

.capability-grid .service-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--yellow);
}

.capability-grid p {
  color: #cbd5e1;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: center;
  max-width: none;
  padding-left: max(48px, calc((100vw - 1280px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1280px) / 2 + 48px));
  background:
    radial-gradient(circle at 78% 32%, rgba(37, 99, 235, 0.2), transparent 28%),
    linear-gradient(135deg, #020617, #061a33);
  color: var(--paper);
}

.platform-section .kicker {
  color: #5eead4;
}

.platform-section .kicker::before {
  background: #5eead4;
}

.platform-copy p {
  color: #cbd5e1;
}

.platform-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.platform-map span,
.platform-map strong {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}

.platform-map span {
  border: 1px solid rgba(203, 213, 225, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
}

.platform-map strong {
  grid-column: span 1;
  grid-row: span 2;
  background: var(--yellow);
  color: var(--ink);
  font-size: 24px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-list article {
  border-left: 8px solid var(--yellow);
}

.industry-list article:nth-child(2n) {
  border-left-color: var(--blue);
}

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

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

.partner-band article {
  background: var(--ink);
  color: var(--paper);
}

.partner-band p {
  color: #cbd5e1;
}

.insights-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1fr);
  gap: 48px;
  align-items: start;
  background: var(--panel);
  max-width: none;
}

.insights-section > div {
  width: min(100%, 1184px);
}

.insight-list {
  display: grid;
  gap: 14px;
}

.insight-list article {
  min-height: auto;
  background: var(--paper);
}

.insight-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.insight-list h3 {
  margin-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) 420px;
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.contact-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

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

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
}

.contact-card input,
.contact-card select {
  height: 44px;
  padding: 0 12px;
}

.contact-card textarea {
  padding: 12px;
  resize: vertical;
}

.direct-contact {
  margin: 0;
  color: var(--muted);
  font-size: 13px !important;
  font-weight: 800;
  line-height: 20px !important;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details a,
.contact-details address {
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.6;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--blue);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: #b42318;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.site-footer {
  padding: 64px 48px 28px;
  background: #03071f;
  color: var(--paper);
}

.footer-cta {
  display: flex;
  max-width: 1280px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 52px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 212, 59, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(8, 47, 73, 0.86), rgba(15, 23, 42, 0.92));
}

.footer-cta span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta strong {
  display: block;
  max-width: 760px;
  font-size: 24px;
  line-height: 32px;
}

.footer-grid {
  display: grid;
  max-width: 1280px;
  grid-template-columns: minmax(260px, 1.2fr) repeat(4, minmax(150px, 1fr));
  gap: 36px;
  margin: 0 auto;
}

.footer-logo {
  display: block;
  width: 230px;
  height: auto;
  margin-bottom: 20px;
}

.footer-brand p,
.footer-grid p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 23px;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: var(--paper);
  font-size: 13px;
  line-height: 18px;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin-bottom: 13px;
  color: #e5e7eb;
  font-size: 14px;
  line-height: 20px;
}

.footer-grid a:hover {
  color: var(--yellow);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  max-width: 1280px;
  justify-content: space-between;
  gap: 18px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #cbd5e1;
  font-size: 13px;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 12px;
}

.whatsapp-action,
.chat-action {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(17, 24, 39, 0.22);
  cursor: pointer;
}

.whatsapp-action {
  background: #22c55e;
  color: var(--paper);
}

.whatsapp-action svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.chat-action {
  width: auto;
  min-width: 96px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.feedback-tab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 60;
  min-width: 42px;
  min-height: 112px;
  padding: 12px 8px;
  border: 0;
  border-radius: 8px 0 0 8px;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
}

.assistant-panel,
.feedback-panel {
  position: fixed;
  right: 22px;
  z-index: 70;
  width: min(390px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.assistant-panel {
  bottom: 98px;
}

.feedback-panel {
  top: 50%;
  transform: translateY(-50%);
}

.tool-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}

.tool-panel-header span,
.tool-panel-header strong {
  display: block;
}

.tool-panel-header span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tool-panel-header strong {
  margin-top: 4px;
  font-size: 16px;
  line-height: 21px;
}

.tool-panel-header button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.assistant-messages {
  display: grid;
  gap: 10px;
  max-height: 260px;
  overflow: auto;
  padding: 18px;
}

.assistant-messages p {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--panel);
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.assistant-prompts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 18px 18px;
}

.assistant-prompts button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.feedback-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.feedback-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
}

.feedback-form input {
  height: 42px;
  padding: 0 12px;
}

.feedback-form textarea {
  padding: 12px;
  resize: vertical;
}

.thank-you-page {
  min-height: calc(100vh - 88px);
  display: grid;
  place-items: center;
  padding: 96px 5vw;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 212, 59, 0.18), transparent 420px),
    linear-gradient(135deg, var(--panel), var(--paper));
}

.thank-you-card {
  width: min(760px, 100%);
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.thank-you-card h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.thank-you-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.app-page {
  background: var(--ink);
}

.app-header {
  background: rgba(17, 24, 39, 0.92);
  border-bottom-color: #1f2937;
  color: var(--paper);
}

.app-header .main-nav {
  color: #cbd5e1;
}

.app-header .header-cta {
  background: var(--yellow);
  color: var(--ink);
}

.app-showcase {
  color: var(--paper);
}

.app-intro {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 48px 28px;
  text-align: center;
}

.app-intro .kicker {
  display: inline-block;
}

.app-intro h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: 46px;
  line-height: 52px;
}

.app-intro p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 28px;
}

.phone-stage {
  display: grid;
  grid-template-columns: 430px minmax(320px, 520px);
  gap: 72px;
  justify-content: center;
  align-items: center;
  padding: 44px 48px 88px;
}

.phone-shell {
  width: 390px;
  min-height: 844px;
  padding: 12px;
  border-radius: 36px;
  background: #030712;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
}

.mobile-status {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
}

.mobile-view {
  display: none;
  min-height: 770px;
  padding: 20px;
}

.mobile-view.active {
  display: block;
}

.mobile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: -20px -20px 18px;
  padding: 22px 20px 28px;
  background: var(--ink);
  color: var(--paper);
}

.mobile-top small {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.mobile-top h2 {
  margin: 8px 0 6px;
  font-size: 28px;
  line-height: 32px;
}

.mobile-top p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
}

.offline-pill {
  flex-shrink: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-actions,
.capture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.mobile-actions button,
.capture-grid button,
.job-card button,
.complete-btn,
.back-link {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.mobile-actions button:first-child {
  background: var(--ink);
  color: var(--paper);
}

.mobile-actions button:last-child,
.complete-btn {
  background: var(--yellow);
  color: var(--ink);
}

.job-card {
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.job-card.critical {
  border-color: #fecaca;
  background: var(--red-soft);
}

.job-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.job-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.job-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.job-card button {
  width: 100%;
  margin-top: 8px;
  background: var(--ink);
  color: var(--paper);
}

.back-link {
  min-height: 38px;
  margin-bottom: 14px;
  padding: 0 14px;
  background: var(--panel);
  color: var(--ink);
}

.wo-detail {
  padding: 18px;
  border-radius: 12px;
  background: var(--red-soft);
}

.severity {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wo-detail h2 {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 31px;
}

.wo-detail p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.checklist {
  margin: 18px 0;
}

.checklist h3 {
  font-size: 18px;
}

.checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-bottom: 10px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.checklist input {
  width: 20px;
  height: 20px;
  accent-color: var(--green);
}

.capture-grid button {
  min-height: 78px;
  border: 1px solid #bfdbfe;
  background: var(--blue-soft);
  color: var(--blue);
}

.capture-grid button:last-child {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.complete-btn {
  width: 100%;
}

.scan-frame {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 28px 0 20px;
  border: 2px dashed #9ca3af;
  border-radius: 18px;
  text-align: center;
}

.scan-frame span {
  position: absolute;
  width: 44px;
  height: 44px;
  border-color: var(--yellow);
}

.scan-frame span:nth-child(1) {
  left: 24px;
  top: 24px;
  border-top: 5px solid var(--yellow);
  border-left: 5px solid var(--yellow);
}

.scan-frame span:nth-child(2) {
  right: 24px;
  top: 24px;
  border-top: 5px solid var(--yellow);
  border-right: 5px solid var(--yellow);
}

.scan-frame span:nth-child(3) {
  right: 24px;
  bottom: 24px;
  border-right: 5px solid var(--yellow);
  border-bottom: 5px solid var(--yellow);
}

.scan-frame span:nth-child(4) {
  left: 24px;
  bottom: 24px;
  border-left: 5px solid var(--yellow);
  border-bottom: 5px solid var(--yellow);
}

.scan-frame strong {
  font-size: 26px;
}

.scan-frame p,
.asset-result p {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  line-height: 22px;
}

.asset-result {
  padding: 18px;
  border-radius: 12px;
  background: var(--panel);
}

.asset-result small {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-result h3 {
  margin-top: 8px;
}

.app-notes {
  max-width: 520px;
}

.app-notes .kicker {
  color: var(--yellow);
}

.app-notes .kicker::before {
  background: var(--yellow);
}

.app-notes h2 {
  color: var(--paper);
}

.app-notes ul {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.app-notes li {
  padding: 16px 18px;
  border: 1px solid #374151;
  border-radius: 8px;
  background: #1f2937;
  color: #d1d5db;
  font-size: 15px;
  line-height: 24px;
}

.manager-strip {
  max-width: 1184px;
  margin: 0 auto 80px;
  padding: 34px;
  border-radius: 14px;
  background: var(--paper);
  color: var(--ink);
}

.manager-strip {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
}

.manager-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.manager-cards article {
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  background: var(--panel);
}

.manager-cards strong {
  display: block;
  font-size: 32px;
  font-weight: 900;
}

.manager-cards span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px 0 2px;
  }

  .mega-panel {
    left: 16px;
    right: 16px;
    top: 138px;
    width: auto;
    transform: translateY(8px);
  }

  .nav-item:hover .mega-panel,
  .nav-item:focus-within .mega-panel,
  .nav-item.is-open .mega-panel {
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    position: sticky;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 22px;
  }

  .brand {
    order: 1;
    flex: 0 1 auto;
    min-width: 0;
  }

  .brand-logo,
  .brand-logo-dark {
    width: 204px;
  }

  .menu-toggle {
    order: 2;
    position: static;
    z-index: 70;
    display: inline-flex !important;
    margin-left: 0;
    border-color: var(--ink);
    background: var(--ink);
    color: var(--paper);
    opacity: 1;
    visibility: visible;
  }

  .main-nav {
    order: 4;
    flex: 0 0 100%;
    min-width: 0;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    justify-content: flex-start;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
    font-size: 14px;
    overflow: visible;
  }

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

  .main-nav a,
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 13px 12px;
    border-radius: 8px;
  }

  .main-nav a:hover,
  .nav-trigger:hover {
    background: var(--panel);
  }

  .nav-item {
    width: 100%;
  }

  .mega-panel,
  .mega-panel-wide {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
    margin: 2px 0 10px;
    padding: 14px;
    overflow: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .nav-item:hover .mega-panel,
  .nav-item:focus-within .mega-panel,
  .nav-item.is-open .mega-panel {
    display: grid;
    transform: none;
  }

  .header-cta {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .split-section,
  .platform-section,
  .contact-section,
  .phone-stage,
  .manager-strip,
  .insights-section {
    grid-template-columns: 1fr;
  }

  .hero {
    flex-direction: column;
    padding: 48px 22px;
  }

  h1 {
    font-size: 42px;
    line-height: 48px;
  }

  h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .command-panel,
  .phone-shell {
    width: 100%;
    max-width: 390px;
  }

  .section {
    padding: 52px 22px;
  }

  .service-grid,
  .workflow-steps,
  .industry-list,
  .capability-grid,
  .partner-band,
  .manager-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .phone-stage {
    justify-items: center;
    padding: 34px 22px 60px;
  }

  .app-notes {
    max-width: 680px;
  }
}

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

  .menu-toggle {
    width: 44px;
    padding: 0 12px;
    justify-content: center;
  }

  .menu-toggle span:first-child {
    display: none;
  }

  .brand-logo,
  .brand-logo-dark {
    width: 184px;
  }

  .hero {
    padding: 42px 22px;
  }

  .header-cta,
  .hero-copy,
  .hero-actions,
  .hero-metrics {
    width: 100%;
    max-width: 346px;
  }

  h1 {
    font-size: 34px;
    line-height: 40px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 28px;
  }

  .hero-metrics,
  .hero-actions {
    flex-direction: column;
  }

  .hero-metrics div,
  .btn {
    width: 100%;
  }

  .service-grid,
  .workflow-steps,
  .industry-list,
  .capability-grid,
  .partner-band,
  .platform-map,
  .manager-cards,
  .footer-grid,
  .assistant-prompts {
    grid-template-columns: 1fr;
  }

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

  .floating-actions {
    right: 10px;
    bottom: 10px;
    gap: 8px;
  }

  .whatsapp-action,
  .chat-action {
    width: 48px;
    height: 48px;
  }

  .whatsapp-action svg {
    width: 28px;
    height: 28px;
  }

  .chat-action {
    min-width: 86px;
    padding: 0 12px;
    font-size: 12px;
  }

  .feedback-tab {
    z-index: 30;
  }

  .assistant-panel,
  .feedback-panel {
    right: 16px;
  }

  .platform-map strong {
    grid-row: auto;
  }

  .phone-shell {
    padding: 8px;
  }

  .app-intro {
    padding: 48px 22px 18px;
    text-align: left;
  }

  .app-intro .kicker {
    display: block;
  }

  .app-intro h1 {
    font-size: 34px;
    line-height: 40px;
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    min-height: 76px;
    padding: 14px 18px;
  }

  .menu-toggle {
    order: 3;
    margin-left: 0;
  }

  .header-cta {
    order: 2;
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    padding: 0 16px;
    margin-left: auto;
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: block;
    border: 0;
    background: rgba(2, 6, 23, 0.62);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .site-header.is-menu-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    display: flex;
    width: min(390px, 88vw);
    height: 100vh;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    justify-content: flex-start;
    padding: 88px 18px 24px;
    border: 0;
    border-left: 1px solid rgba(203, 213, 225, 0.18);
    border-radius: 0;
    background: #061a33;
    box-shadow: -24px 0 70px rgba(2, 6, 23, 0.34);
    color: var(--paper);
    font-size: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 1;
    pointer-events: none;
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-header.is-menu-open .main-nav {
    display: flex;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-nav a,
  .nav-trigger {
    min-height: 50px;
    padding: 14px;
    color: var(--paper);
  }

  .main-nav a:hover,
  .nav-trigger:hover,
  .nav-item.is-open .nav-trigger {
    background: rgba(255, 255, 255, 0.08);
    color: var(--yellow);
  }

  .mega-panel,
  .mega-panel-wide,
  .mega-panel-dark {
    width: 100%;
    margin: 2px 0 10px;
    border-color: rgba(203, 213, 225, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--paper);
  }

  .mega-panel a {
    color: #e5e7eb;
  }

  .mega-panel a:hover {
    color: var(--yellow);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 64px 22px 58px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 48px;
  }

  .command-panel {
    width: 100%;
    max-width: 520px;
  }

  .platform-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-band,
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 10px;
  }

  .brand-logo,
  .brand-logo-dark {
    width: 164px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 52px 18px 46px;
  }

  .hero-copy,
  .hero-actions,
  .hero-metrics {
    max-width: none;
  }

  h1 {
    font-size: 39px;
    line-height: 43px;
  }

  .hero h1 {
    font-size: 39px;
    line-height: 43px;
  }

  .quote-band strong,
  .footer-cta strong {
    font-size: 19px;
    line-height: 27px;
  }

  .footer-cta,
  .quote-band {
    padding: 20px;
  }
}
