:root {
  --navy: #06111f;
  --navy-2: #0a1f44;
  --ink: #101827;
  --panel: #111a27;
  --line: rgba(255, 255, 255, 0.16);
  --silver: #d9dee7;
  --muted: #8f9baa;
  --blue: #0077ff;
  --blue-2: #48a0ff;
  --amber: #d7a852;
  --white: #ffffff;
  --soft: #f5f7fb;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Avenir Next", Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 14, 26, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  line-height: 1.05;
}

.brand img {
  width: 56px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  max-width: 280px;
  font-size: clamp(0.86rem, 1.7vw, 1rem);
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  min-height: 40px;
  padding: 11px 14px;
  color: var(--silver);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(0, 119, 255, 0.16);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
  justify-items: center;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 6vw, 80px) clamp(36px, 5vw, 58px);
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(4, 10, 18, 0.98) 0%, rgba(7, 21, 39, 0.98) 58%, rgba(8, 42, 72, 0.94) 100%),
    var(--navy);
}

.hero__brand-lockup {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(640px, 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 920px;
}

.hero__logo {
  width: 100%;
  max-width: 560px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 56px rgba(0, 119, 255, 0.16);
}

.hero__tagline {
  max-width: 560px;
  margin: 16px 0 0;
  color: #d5deeb;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 700;
}

.hero h1 {
  max-width: 840px;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.hero__brand-card {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.hero__brand-card .hero__logo {
  margin-bottom: 18px;
}

.hero__focus-grid {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1100px, 100%);
  text-align: left;
}

.hero__service-panel {
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

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

.hero__service-panel span {
  margin-bottom: 6px;
  color: #94a6bb;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__service-panel strong {
  color: var(--white);
  line-height: 1.45;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.96;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.04;
}

h3 {
  font-size: 1.1rem;
}

p {
  line-height: 1.7;
}

.hero__lead {
  max-width: 680px;
  color: #d5deeb;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(0, 119, 255, 0.28);
}

.button--primary:hover {
  background: #006be5;
}

.button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover {
  border-color: var(--blue-2);
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(46px, 5vw, 74px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(4, 10, 18, 0.98), rgba(8, 31, 54, 0.9)),
    var(--navy);
}

.app-hero__copy {
  max-width: 760px;
}

.app-hero h1 {
  font-size: clamp(2.35rem, 4vw, 3.9rem);
}

.app-hero .hero__lead {
  font-size: 1.05rem;
}

.product-console {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(246, 249, 253, 0.94);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.console-topbar,
.panel-heading,
.status-row,
.product-strip,
.ai-workflow,
.integration-band,
.site-footer {
  display: flex;
}

.console-topbar {
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 4px 14px;
  color: #344154;
  font-weight: 800;
}

.console-topbar strong {
  padding: 8px 10px;
  color: #06351c;
  border-radius: 999px;
  background: #c9f4dc;
  font-size: 0.78rem;
  text-transform: uppercase;
}

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

.console-panel {
  min-height: 138px;
  padding: 18px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.console-panel--wide {
  grid-column: 1 / -1;
}

.panel-heading {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-heading span,
.status-row span {
  display: block;
  color: #6a788a;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-heading strong {
  color: var(--navy-2);
}

.status-row {
  gap: 12px;
}

.status-row div {
  flex: 1;
  min-width: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: #eef4fb;
}

.status-row strong {
  display: block;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
}

.console-panel p {
  margin-bottom: 0;
  color: #516174;
  line-height: 1.55;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid #dce3ee;
}

.trust-strip div {
  min-height: 122px;
  padding: 28px clamp(16px, 2.5vw, 32px);
  border-right: 1px solid #dce3ee;
}

.trust-strip div:last-child {
  border-right: 0;
}

.product-strip {
  align-items: stretch;
  background: var(--white);
  border-bottom: 1px solid #dce3ee;
}

.product-strip div {
  flex: 1;
  min-height: 132px;
  padding: 30px clamp(18px, 3vw, 38px);
  border-right: 1px solid #dce3ee;
}

.product-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span,
.product-strip strong,
.product-strip span {
  display: block;
}

.trust-strip strong,
.product-strip strong {
  margin-bottom: 8px;
  color: var(--navy-2);
  font-size: 1rem;
}

.trust-strip span,
.product-strip span {
  color: #5f6f82;
  font-size: 0.92rem;
  line-height: 1.5;
}

.section,
.process,
.aircraft-showcase,
.bio-layout,
.values,
.contact-panel,
.service-layout {
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
}

.section__copy {
  max-width: 760px;
  margin-bottom: 32px;
}

.section__copy h2 {
  margin-bottom: 0;
}

.intro-grid,
.service-grid,
.process-steps,
.values,
.capability-grid,
.roadmap-grid {
  display: grid;
  gap: 18px;
}

.intro-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.intro-grid article,
.service-card,
.process-steps div,
.values div,
.capability-grid article,
.roadmap-grid article {
  min-height: 240px;
  padding: 28px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.intro-grid .number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--amber);
  font-size: 0.9rem;
  font-weight: 800;
}

.capability-grid span,
.roadmap-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--amber);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid p,
.service-card p,
.process-steps p,
.values p,
.bio-copy p,
.feature-band p,
.contact-panel p,
.page-hero p,
.service-sidebar p,
.capability-grid p,
.roadmap-grid p,
.ai-workflow p {
  color: #5d6a7b;
}

.section--product {
  background: #f8fafc;
}

.aircraft-showcase {
  background: var(--white);
}

.aircraft-showcase--compact {
  background: #f8fafc;
}

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

.aircraft-grid article {
  overflow: hidden;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.aircraft-grid img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.aircraft-grid article div {
  padding: 22px;
}

.aircraft-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.aircraft-grid h3 {
  color: var(--navy-2);
}

.aircraft-grid p {
  margin-bottom: 0;
  color: #5d6a7b;
}

.image-credit {
  margin: 16px 0 0;
  color: #69798c;
  font-size: 0.78rem;
}

.image-credit a {
  color: var(--blue);
  font-weight: 800;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(11, 30, 52, 0.96)),
    var(--navy);
}

.feature-band__image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-band__image img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: center 35%;
}

.feature-band__copy {
  max-width: 560px;
}

.feature-band__copy p {
  color: #c8d3e0;
}

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

.feature-list article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.feature-list span,
.feature-list strong {
  display: block;
}

.feature-list span {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
}

.feature-list strong {
  margin-bottom: 8px;
  color: var(--white);
}

.feature-list p {
  margin-bottom: 0;
  color: #c8d3e0;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue-2);
  font-weight: 800;
}

.page-hero {
  padding: clamp(62px, 10vw, 132px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 12, 22, 0.96), rgba(8, 25, 45, 0.7)),
    url("assets/da-logo-main.png") right center / min(760px, 92vw) auto no-repeat,
    var(--navy);
}

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

.page-hero p {
  font-size: 1.08rem;
  color: #d5deeb;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 24px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 98px;
  padding: 24px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.service-sidebar img {
  margin-bottom: 20px;
  border-radius: 6px;
}

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

.service-card h2 {
  font-size: 1.28rem;
}

.process {
  background: #eaf0f7;
}

.process-steps {
  grid-template-columns: repeat(3, 1fr);
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  background: var(--navy-2);
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.bio-mark {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 30px);
  border-radius: var(--radius);
  background: #050b14;
  box-shadow: var(--shadow);
}

.bio-mark img {
  width: 100%;
  height: auto;
}

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

.credentials-section {
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  background: #eaf0f7;
}

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

.credentials-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid #d6dfeb;
  border-radius: var(--radius);
  background: var(--white);
}

.credentials-grid span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.credentials-grid h3 {
  color: var(--navy-2);
}

.credentials-grid p {
  color: #5d6a7b;
}

.values {
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
}

.values div {
  min-height: 190px;
  background: #f8fafc;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(8, 34, 63, 0.94)),
    var(--navy);
}

.contact-panel div {
  max-width: 720px;
}

.contact-panel p {
  color: #c8d3e0;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
}

.intake-brief,
.intake-form {
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.intake-brief {
  position: sticky;
  top: 98px;
  padding: 24px;
}

.intake-brief img {
  margin-bottom: 22px;
  border-radius: 6px;
}

.intake-brief h2 {
  font-size: 1.28rem;
}

.intake-brief__list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.intake-brief__list span {
  padding: 12px 14px;
  color: #39475a;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #f8fafc;
  font-size: 0.92rem;
  line-height: 1.45;
}

.intake-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
}

.intake-form__header span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intake-form__header h2 {
  margin-bottom: 0;
}

.intake-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.intake-form label {
  display: grid;
  gap: 8px;
  color: #344154;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid #cfd8e6;
  border-radius: var(--radius);
  background: #fbfdff;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 600;
  text-transform: none;
}

.intake-form textarea {
  resize: vertical;
  line-height: 1.55;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(0, 119, 255, 0.16);
}

.intake-form__wide {
  grid-template-columns: 1fr;
}

.intake-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intake-form .button--secondary {
  color: var(--navy-2);
  border-color: #cfd8e6;
  background: #f8fafc;
}

.intake-form .button--secondary:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.intake-form__status {
  min-height: 22px;
  margin: 0;
  color: #5d6a7b;
  font-size: 0.92rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.mission-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  padding: clamp(64px, 9vw, 124px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(3, 8, 16, 0.96), rgba(10, 31, 68, 0.9)),
    var(--navy-2);
}

.mission-hero__copy {
  max-width: 820px;
}

.mission-hero__copy img {
  width: min(470px, 86vw);
  margin-bottom: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 70px rgba(0, 119, 255, 0.2);
}

.mission-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 5.2vw, 5.6rem);
  line-height: 0.98;
}

.mission-hero p {
  max-width: 700px;
  color: #d9e3ef;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.mission-hero__visual {
  align-self: stretch;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.mission-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.mission-hero__visual div {
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(3, 8, 16, 0.78);
}

.mission-hero__visual strong,
.mission-hero__visual span {
  display: block;
}

.mission-hero__visual strong {
  margin-bottom: 6px;
  color: var(--white);
}

.mission-hero__visual span {
  color: #b9c6d5;
  line-height: 1.5;
}

.mission-brief {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.54fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  background: var(--white);
}

.mission-brief__statement h2,
.mission-standard__header h2,
.mission-proof__copy h2 {
  max-width: 850px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
}

.mission-brief__statement p,
.mission-standard__header p,
.mission-proof__copy p,
.mission-values p {
  color: #5d6a7b;
}

.mission-brief__points {
  display: grid;
  gap: 12px;
}

.mission-brief__points div {
  padding: 22px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #eef4fb;
}

.mission-brief__points strong,
.mission-brief__points span {
  display: block;
}

.mission-brief__points strong {
  margin-bottom: 8px;
  color: var(--navy-2);
}

.mission-brief__points span {
  color: #5d6a7b;
  line-height: 1.55;
}

.mission-standard {
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  background: #eaf0f7;
}

.mission-standard__header {
  max-width: 820px;
  margin-bottom: 34px;
}

.mission-standard__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mission-standard__grid article {
  min-height: 310px;
  padding: 24px;
  border: 1px solid #d6dfeb;
  border-radius: var(--radius);
  background: var(--white);
}

.mission-standard__grid span {
  display: inline-flex;
  margin-bottom: 56px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.mission-standard__grid h3 {
  color: var(--navy-2);
}

.mission-standard__grid p {
  color: #5d6a7b;
}

.mission-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(8, 34, 63, 0.94)),
    var(--navy);
}

.mission-proof__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 24px 76px rgba(0, 0, 0, 0.32);
}

.mission-proof__media img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
}

.mission-proof__copy h2 {
  color: var(--white);
}

.mission-proof__copy p {
  color: #c8d3e0;
}

.mission-proof__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mission-proof__list span {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #dce6f1;
  font-weight: 800;
}

.mission-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: var(--white);
}

.mission-values article {
  min-height: 250px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid #dce3ee;
}

.mission-values article:last-child {
  border-right: 0;
}

.mission-values h2 {
  color: var(--navy-2);
}

.ai-workflow {
  align-items: start;
  justify-content: space-between;
  gap: clamp(26px, 5vw, 72px);
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  background: var(--white);
}

.ai-workflow > div:first-child {
  max-width: 620px;
}

.workflow-list {
  display: grid;
  gap: 14px;
  width: min(100%, 560px);
}

.workflow-list article {
  padding: 20px;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #eef4fb;
}

.workflow-list strong,
.workflow-list span {
  display: block;
}

.workflow-list strong {
  margin-bottom: 6px;
  color: var(--navy-2);
}

.workflow-list span {
  color: #5d6a7b;
  line-height: 1.55;
}

.integration-band {
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(12, 43, 64, 0.95)),
    var(--navy);
}

.integration-band__copy {
  max-width: 640px;
}

.integration-band p {
  color: #c8d3e0;
}

.integration-map {
  display: grid;
  gap: 14px;
  width: min(100%, 460px);
}

.integration-map div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.integration-map strong,
.integration-map span {
  display: block;
}

.integration-map strong {
  margin-bottom: 6px;
  color: var(--white);
}

.integration-map span {
  color: #c7d1dd;
  line-height: 1.5;
}

.connector-line {
  width: 2px;
  height: 24px;
  margin-left: 28px;
  background: var(--blue-2);
}

.roadmap {
  padding: clamp(54px, 7vw, 98px) clamp(20px, 6vw, 80px);
  background: #eaf0f7;
}

.roadmap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.software-body {
  background: #e9eef5;
}

.review-body {
  min-height: 100vh;
  background: #e9eef5;
}

.review-shell {
  display: grid;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0;
}

.review-hero,
.review-grid article {
  border: 1px solid #d6dfeb;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-hero {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 5vw, 44px);
}

.review-hero img {
  display: block;
  width: min(340px, 100%);
  height: auto;
}

.review-hero h1 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.review-hero p:not(.eyebrow) {
  max-width: 720px;
  color: #5d6a7b;
  font-size: 1.04rem;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

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

.review-grid article {
  padding: 18px;
}

.review-grid span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
}

.review-grid h2 {
  margin: 8px 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.review-grid p {
  color: #5d6a7b;
  font-size: 0.92rem;
}

.software-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.login-active .software-shell {
  display: none;
}

.login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(7, 17, 30, 0.96), rgba(13, 45, 72, 0.92)),
    #07111e;
}

.login-screen[hidden] {
  display: none;
}

.login-panel {
  width: min(860px, 100%);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.login-brand img {
  width: min(220px, 42vw);
  padding: 8px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
}

.login-brand h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.login-panel > p,
.login-panel > small {
  color: #5d6a7b;
  font-weight: 700;
}

.login-grid {
  margin-bottom: 0;
}

.login-preview {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.6fr;
  gap: 10px;
}

.login-preview div {
  padding: 14px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #f8fafc;
}

.login-preview span {
  display: block;
  margin-bottom: 6px;
  color: #69798c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-preview strong {
  color: var(--navy);
  font-size: 0.96rem;
}

.login-eula {
  min-height: 170px;
  line-height: 1.45;
}

.software-sidebar {
  min-height: 0;
  max-height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  color: var(--white);
  background: #07111e;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  scrollbar-color: rgba(72, 160, 255, 0.45) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.software-logo {
  display: grid;
  gap: 12px;
  min-height: 66px;
  padding-bottom: 18px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.software-logo img {
  display: block;
  width: 100%;
  max-width: 172px;
  height: auto;
  padding: 6px;
  border-radius: var(--radius);
  background: var(--white);
}

.software-logo span {
  display: block;
  color: #9fb2c9;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.software-logo strong {
  color: #c9f4dc;
  font-size: 1rem;
  text-transform: uppercase;
}

.software-nav {
  display: grid;
  gap: 8px;
}

.software-nav button,
.icon-button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.software-nav button {
  padding: 12px 14px;
  color: #d3dbe7;
  text-align: left;
  background: transparent;
}

.software-nav button:hover,
.software-nav button.active {
  color: var(--white);
  border-color: rgba(72, 160, 255, 0.28);
  background: rgba(0, 119, 255, 0.18);
}

.software-main {
  min-width: 0;
  height: 100vh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(20px, 3vw, 36px);
}

.software-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.software-toolbar h1 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.toolbar-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.change-signature-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) auto;
  gap: 8px;
  align-items: end;
  width: min(760px, 100%);
  padding: 10px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(24, 35, 53, 0.08);
}

.change-signature-card label {
  display: grid;
  gap: 4px;
  color: #5d6a7b;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.change-signature-card input {
  min-height: 38px;
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

.icon-button {
  padding: 10px 14px;
  color: var(--navy-2);
  background: var(--white);
  border-color: #dce3ee;
}

.workflow-tracker {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.workflow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.workflow-step span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--navy-2);
  border-radius: 50%;
  background: #eaf0f7;
  font-weight: 900;
}

.workflow-step strong {
  font-size: 0.86rem;
}

.workflow-step.active {
  border-color: rgba(0, 119, 255, 0.42);
  box-shadow: 0 12px 32px rgba(0, 119, 255, 0.12);
}

.workflow-step.active span,
.workflow-step.complete span {
  color: var(--white);
  background: var(--blue);
}

.software-view {
  display: none;
}

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

.ops-grid,
.split-workspace,
.evidence-layout,
.form-grid,
.aircraft-record-layout {
  display: grid;
  gap: 16px;
}

.ops-grid {
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr) minmax(260px, 0.8fr);
  margin-bottom: 16px;
}

.split-workspace,
.evidence-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.aircraft-record-layout {
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
}

.ops-card,
.work-panel {
  padding: 20px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.ops-card--status {
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(10, 38, 64, 0.96)),
    var(--navy);
  color: var(--white);
}

.ops-card__top,
.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.ops-card__top span,
.panel-title span {
  color: #69798c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-card--status .ops-card__top span {
  color: #aebbd0;
}

.ops-card__top strong {
  color: var(--blue-2);
}

.ops-card h2,
.panel-title h2 {
  margin-bottom: 0;
}

.ops-card--status h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.customer-label {
  margin: -8px 0 18px;
  color: #b6c2d1;
  font-weight: 800;
}

.fleet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.fleet-hero > div,
.fleet-summary,
.fleet-item {
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.fleet-hero > div:first-child {
  padding: 22px;
}

.fleet-hero h2 {
  margin-bottom: 8px;
}

.fleet-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.fleet-summary div {
  padding: 18px;
  border-left: 1px solid #dce3ee;
}

.fleet-summary div:first-child {
  border-left: 0;
}

.fleet-summary span,
.fleet-item span,
.fleet-item small {
  color: #69798c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fleet-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
}

.fleet-list,
.integration-grid {
  display: grid;
  gap: 10px;
}

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

.fleet-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
}

.fleet-item__photo {
  width: 112px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #eef3f8;
}

.fleet-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-item__photo span {
  color: #506174;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.integration-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.integration-card span {
  color: #69798c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.integration-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
}

.integration-card p {
  margin: 0;
  color: #5d6a7b;
}

.integration-card .button {
  width: fit-content;
}

.far-card mark {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #fff4d6;
  color: #7c4a03;
  font-size: 0.74rem;
  font-weight: 900;
}

.fleet-item--active {
  border-color: #9fb7d6;
  background: #f7fbff;
}

.fleet-item strong,
.fleet-item p,
.fleet-item mark,
.fleet-item small {
  display: block;
}

.fleet-item p {
  margin: 6px 0 0;
  color: #5d6a7b;
}

.fleet-item__status {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.fleet-item mark {
  width: fit-content;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric-row div {
  min-width: 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.metric-row span,
.metric-row strong {
  display: block;
}

.metric-row span {
  color: #b6c2d1;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-row strong {
  margin-top: 8px;
  color: var(--white);
  font-size: 1.28rem;
}

.task-list,
.activity-feed,
.risk-list,
.schedule-list,
.work-order,
.packet-list,
.workcard-cover,
.worksheet-list,
.workcard-list,
.parts-list,
.discrepancy-list,
.compliance-list,
.manual-list,
.customer-log-list,
.audit-trail-list,
.access-list,
.billing-list,
.owner-view-list,
.pricing-list {
  display: grid;
  gap: 10px;
}

.license-text {
  min-height: 320px;
  line-height: 1.5;
}

.task-item,
.risk-item,
.schedule-item,
.activity-feed p,
.work-order p,
.packet-list p,
.workcard-cover p,
.worksheet-list p,
.notification-log > p,
.empty-state,
.discrepancy-item,
.compliance-item,
.manual-item,
.customer-log-item,
.audit-trail-item,
.billing-item,
.pricing-item {
  margin: 0;
  padding: 14px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #f8fafc;
}

.task-item,
.schedule-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.task-item strong,
.task-item span,
.schedule-item strong,
.schedule-item span,
.risk-item span,
.risk-item strong,
.discrepancy-item span,
.discrepancy-item strong,
.compliance-item span,
.compliance-item strong,
.manual-item span,
.manual-item strong,
.customer-log-item span,
.customer-log-item strong,
.audit-trail-item span,
.audit-trail-item strong,
.audit-trail-item small,
.billing-item span,
.billing-item strong,
.billing-item small,
.pricing-item span,
.pricing-item strong {
  display: block;
}

.task-item span,
.schedule-item span,
.risk-item p,
.ops-card p {
  color: #5d6a7b;
}

.discrepancy-item span {
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discrepancy-item p,
.discrepancy-item small,
.compliance-item p,
.compliance-item small,
.manual-item p,
.manual-item small,
.customer-log-item p,
.customer-log-item small,
.audit-trail-item p,
.audit-trail-item small,
.billing-item p,
.billing-item small,
.pricing-item p {
  color: #5d6a7b;
}

.compliance-item span,
.manual-item span,
.customer-log-item span,
.audit-trail-item span,
.billing-item span,
.pricing-item span {
  color: var(--blue-2);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.discrepancy-item--added {
  border-color: #b9d8c8;
  background: #f4fbf7;
}

.user-task-item {
  align-items: flex-start;
}

.user-task-item p {
  margin: 8px 0 0;
  color: #26364a;
}

.task-item mark {
  padding: 7px 9px;
  color: #4d3200;
  border-radius: 999px;
  background: #ffe5a8;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 20px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.form-grid--compact {
  margin-bottom: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.owner-settings input,
.owner-settings select,
.message-label input,
.message-label input[type="file"],
.pilot-phone input,
.pilot-phone textarea,
.csv-box,
.release-note {
  width: 100%;
  border: 1px solid #cfd9e6;
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
}

.form-grid input,
.form-grid select,
.owner-settings input,
.owner-settings select,
.message-label input,
.message-label input[type="file"],
.pilot-phone input {
  min-height: 46px;
  padding: 10px 12px;
}

.aircraft-photo-thumb,
.aircraft-photo-preview {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.aircraft-photo-thumb {
  min-height: 180px;
  margin-bottom: 16px;
}

.aircraft-photo-preview {
  min-height: 260px;
  margin-bottom: 14px;
  border-color: #dce3ee;
  background: #f8fafc;
}

.aircraft-photo-thumb img,
.aircraft-photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.aircraft-photo-thumb span {
  color: #c9d4e4;
  font-weight: 900;
}

.aircraft-photo-preview span {
  color: #69798c;
  font-weight: 900;
}

.csv-box,
.release-note,
.export-box {
  min-height: 230px;
  padding: 14px;
  line-height: 1.55;
}

.csv-box,
.release-note {
  resize: vertical;
}

.owner-report-preview {
  min-height: 420px;
  white-space: pre-wrap;
}

.view-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.button--dark {
  color: var(--navy-2);
  border-color: #cfd9e6;
  background: var(--white);
}

.due-table {
  display: grid;
  gap: 10px;
}

.mock-document {
  padding: 18px;
  margin-bottom: 16px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #fbfdff;
}

.mock-document p {
  margin: 8px 0 0;
  color: #5d6a7b;
}

.owner-settings {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.owner-settings label,
.message-label {
  display: grid;
  gap: 8px;
  color: var(--navy-2);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-preview {
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(12, 43, 64, 0.95)),
    var(--navy);
  box-shadow: 0 18px 40px rgba(6, 17, 31, 0.18);
}

.phone-preview span,
.phone-preview strong {
  display: block;
}

.phone-preview span {
  margin-bottom: 10px;
  color: #9fb0c5;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.phone-preview strong {
  color: var(--white);
  line-height: 1.5;
}

.pilot-phone {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(6, 17, 31, 0.98), rgba(12, 43, 64, 0.95)),
    var(--navy);
  box-shadow: 0 18px 40px rgba(6, 17, 31, 0.18);
}

.pilot-phone > span {
  color: #9fb0c5;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-phone label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-phone textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.aog-update-panel {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid #dce3ee;
}

.risk-item {
  border-left: 4px solid var(--amber);
}

.notification-log {
  display: grid;
  gap: 10px;
}

.installed-parts,
.campaign-list,
.oil-chart,
.oil-list {
  display: grid;
  gap: 10px;
}

.squawk-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.installed-parts {
  margin-bottom: 14px;
}

.notification-item,
.part-item,
.campaign-item,
.oil-item,
.squawk-item,
.part-record {
  padding: 14px;
  border: 1px solid #dce3ee;
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: #f8fafc;
}

.notification-item span,
.notification-item strong,
.notification-item small,
.part-item span,
.part-item strong,
.campaign-item span,
.campaign-item strong,
.campaign-item small,
.oil-item strong,
.squawk-item span,
.squawk-item strong,
.squawk-item small,
.part-record span,
.part-record strong,
.part-record small {
  display: block;
}

.notification-item span,
.part-item span,
.campaign-item span,
.squawk-item span,
.part-record span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.notification-item p,
.part-item p,
.campaign-item p,
.oil-item p,
.squawk-item p,
.part-record p {
  margin: 8px 0;
  color: #5d6a7b;
}

.notification-item small,
.campaign-item small,
.squawk-item small,
.part-record small {
  color: #69798c;
  font-weight: 800;
}

.part-record--customer {
  border-left-color: #14a06f;
}

.part-record--customer span {
  color: #0b7e57;
}

.squawk-item--aog {
  border-left-color: #cf3f2f;
  background: #fff7f5;
}

.squawk-item--aog span {
  color: #b33325;
}

.status-sync {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}

.status-sync div {
  padding: 14px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #f8fafc;
}

.status-sync span,
.status-sync strong {
  display: block;
}

.status-sync span {
  margin-bottom: 8px;
  color: #69798c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-sync strong {
  color: var(--navy-2);
}

.wa-document {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid #cfd9e6;
  border-radius: var(--radius);
  background: #fbfdff;
}

.wa-packet {
  margin-top: 18px;
}

.wa-packet section {
  display: grid;
  gap: 10px;
}

.wa-packet .packet-list p {
  display: grid;
  gap: 6px;
}

.wa-packet .packet-list strong,
.wa-packet .packet-list span,
.workcard-cover strong,
.workcard-cover span,
.worksheet-list strong,
.worksheet-list span {
  display: block;
}

.wa-packet .packet-list span,
.workcard-cover span,
.worksheet-list span {
  color: #5d6a7b;
}

.workcard-cover p,
.worksheet-list p {
  display: grid;
  gap: 6px;
}

.worksheet-list p {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.worksheet-list p strong {
  color: var(--navy-2);
  font-weight: 900;
}

.workcard-item {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid #cfd9e6;
  border-radius: var(--radius);
  background: var(--white);
}

.workcard-item__header,
.workcard-meta,
.signature-grid {
  display: grid;
  gap: 10px;
}

.workcard-item__header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.workcard-item__header span,
.workcard-meta strong,
.corrective-action-block span,
.signature-grid span {
  display: block;
  color: #69798c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workcard-item__header strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 1.18rem;
}

.workcard-item__header mark {
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff4d6;
  color: #7c4a03;
  font-size: 0.76rem;
  font-weight: 900;
}

.workcard-meta {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workcard-meta p,
.signature-grid div {
  margin: 0;
  min-height: 58px;
  padding: 12px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #f8fafc;
}

.workcard-meta span {
  display: block;
  margin-top: 6px;
  color: var(--navy-2);
}

.workcard-finding {
  padding: 14px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #fbfdff;
}

.workcard-finding strong {
  display: block;
  color: var(--navy-2);
}

.workcard-finding p {
  margin: 6px 0 0;
  color: #5d6a7b;
}

.corrective-action-block {
  min-height: 112px;
  padding: 12px;
  border: 1px dashed #98a8bb;
  border-radius: var(--radius);
  background: #ffffff;
}

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

.wa-header,
.wa-grid,
.signature-line {
  display: grid;
  gap: 12px;
}

.wa-header {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--navy-2);
}

.wa-header span,
.wa-grid span {
  display: block;
  color: #69798c;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wa-header strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.6rem;
}

.wa-header p {
  margin: 0;
  color: #5d6a7b;
}

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

.wa-grid div,
.wa-scope p,
.signature-line {
  padding: 14px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: var(--white);
}

.wa-grid strong,
.signature-line span {
  display: block;
  margin-top: 8px;
  color: var(--navy-2);
}

.wa-document h3 {
  margin-bottom: 10px;
}

.wa-document section p {
  color: #5d6a7b;
}

.wa-scope {
  display: grid;
  gap: 8px;
}

.wa-scope p {
  margin: 0;
}

.signature-line {
  min-height: 82px;
  justify-content: end;
}

.signature-line small {
  color: #69798c;
}

.part-item--match {
  border-left-color: #cf3f2f;
  background: #fff7f5;
}

.part-item--match span {
  color: #b33325;
}

.campaign-item {
  border-left-color: var(--amber);
}

.campaign-item span {
  color: #795100;
}

.oil-chart {
  margin-bottom: 14px;
}

.oil-trend-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #f8fafc;
}

.oil-tolerance-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #fff;
}

.oil-tolerance-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #506174;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.oil-legend {
  width: 18px;
  height: 10px;
  border-radius: 999px;
}

.oil-legend--normal {
  background: rgba(20, 160, 111, 0.28);
}

.oil-legend--caution {
  background: rgba(255, 190, 71, 0.46);
}

.oil-legend--alert {
  background: rgba(207, 63, 47, 0.36);
}

.oil-trend-card__header,
.oil-metric-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
}

.oil-trend-card__header {
  padding-bottom: 8px;
  border-bottom: 1px solid #dce3ee;
}

.oil-trend-card__header span,
.oil-metric-label strong {
  color: #69798c;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.oil-trend-card__header strong {
  color: var(--navy);
}

.oil-metric-label {
  display: grid;
  gap: 3px;
}

.oil-metric-label span,
.oil-metric-row small {
  color: #506174;
  font-size: 0.76rem;
  font-weight: 800;
}

.oil-bar-track {
  position: relative;
  height: 20px;
  overflow: hidden;
  border: 1px solid #cfd9e6;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(20, 160, 111, 0.14) 0 var(--caution), rgba(255, 190, 71, 0.2) var(--caution) var(--alert), rgba(207, 63, 47, 0.16) var(--alert) 100%);
}

.oil-bar-fill {
  position: absolute;
  inset: 3px auto 3px 3px;
  width: var(--bar);
  min-width: 8px;
  border-radius: 999px;
  background: var(--blue);
}

.oil-limit {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #26364a;
}

.oil-limit--caution {
  left: var(--caution);
  opacity: 0.45;
}

.oil-limit--alert {
  left: var(--alert);
  opacity: 0.75;
}

.oil-metric-row--caution .oil-bar-fill {
  background: var(--amber);
}

.oil-metric-row--alert .oil-bar-fill {
  background: #cf3f2f;
}

.oil-metric-row--caution small {
  color: #795100;
}

.oil-metric-row--alert small {
  color: #b33325;
}

.oil-bar {
  display: grid;
  gap: 7px;
}

.oil-bar span {
  color: #69798c;
  font-size: 0.78rem;
  font-weight: 900;
}

.oil-bar strong {
  display: block;
  min-height: 34px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(0, 119, 255, 0.28) 0 var(--bar), #edf3fa var(--bar) 100%);
  color: var(--navy-2);
  font-size: 0.86rem;
}

.oil-item {
  border-left-color: #14a06f;
}

.risk-item span {
  margin-bottom: 8px;
  color: #795100;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.export-box {
  overflow: auto;
  margin: 0;
  border: 1px solid #dce3ee;
  border-radius: var(--radius);
  background: #07111e;
  color: #d7dfec;
  white-space: pre-wrap;
}

.site-footer {
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 80px);
  color: #d7dfec;
  background: #050b14;
}

.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

.site-footer span {
  margin-top: 6px;
  color: #8795a7;
  font-size: 0.9rem;
}

.site-footer small {
  margin-top: 8px;
  color: #667487;
  font-size: 0.78rem;
}

.site-footer a {
  color: var(--blue-2);
  font-weight: 800;
}

@media (max-width: 900px) {
  .login-brand,
  .login-preview {
    grid-template-columns: 1fr;
  }

  .login-brand {
    display: grid;
  }

  .site-header,
  .site-footer,
  .contact-panel,
  .ai-workflow,
  .integration-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .trust-strip,
  .product-strip,
  .intro-grid,
  .aircraft-grid,
  .process-steps,
  .values,
  .feature-band,
  .service-layout,
  .intake-layout,
  .bio-layout,
    .credentials-grid,
    .mission-hero,
    .mission-brief,
    .mission-standard__grid,
    .mission-proof,
    .mission-values,
    .app-hero,
    .capability-grid,
    .roadmap-grid,
  .software-shell,
  .ops-grid,
  .split-workspace,
  .evidence-layout,
  .form-grid,
  .aircraft-record-layout,
  .fleet-hero,
  .fleet-item {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .product-strip div {
    border-right: 0;
    border-bottom: 1px solid #dce3ee;
  }

  .service-sidebar {
    position: static;
  }

  .intake-brief {
    position: static;
  }

  .intake-form__grid {
    grid-template-columns: 1fr;
  }

  .software-sidebar {
    position: static;
    min-height: auto;
    max-height: none;
    overflow-y: visible;
  }

  .software-shell {
    height: auto;
    overflow: visible;
  }

  .software-main {
    height: auto;
    overflow-y: visible;
  }

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

  .workflow-tracker {
    grid-template-columns: repeat(6, minmax(110px, 1fr));
    overflow-x: auto;
    padding-bottom: 4px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand img {
    width: 48px;
    height: 34px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .main-nav a {
    padding: 10px 12px;
  }

  .hero,
  .page-hero,
  .app-hero {
    padding: 42px 18px;
  }

  .hero__logo {
    width: 100%;
  }

  .hero__brand-card {
    padding: 16px;
  }

  .hero__actions,
  .contact-actions,
  .intake-form__actions,
  .button {
    width: 100%;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .toolbar-actions,
  .software-toolbar,
  .task-item,
  .schedule-item,
  .ops-card__top,
  .panel-title {
    align-items: stretch;
    flex-direction: column;
  }

  .change-signature-card {
    grid-template-columns: 1fr;
  }

  .section,
  .process,
  .aircraft-showcase,
  .bio-layout,
  .mission-hero,
  .mission-brief,
  .mission-standard,
  .mission-proof,
  .values,
  .mission-values article,
  .contact-panel,
  .service-layout,
  .intake-layout,
  .feature-band,
  .ai-workflow,
  .integration-band,
  .roadmap {
    padding: 42px 18px;
  }

  .service-grid,
  .aircraft-grid,
  .console-grid,
  .review-grid,
  .integration-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .service-card,
  .process-steps div,
  .values div,
  .mission-standard__grid article,
  .mission-values article,
  .capability-grid article,
  .roadmap-grid article {
    min-height: auto;
    padding: 22px;
  }

  .mission-hero__visual {
    grid-template-rows: auto auto;
  }

  .mission-hero__visual img {
    min-height: auto;
    aspect-ratio: 1.28;
  }

  .mission-standard__grid span {
    margin-bottom: 28px;
  }

  .product-console {
    display: none;
  }

  .status-row {
    flex-direction: column;
  }

  .software-main,
  .software-sidebar {
    padding: 16px;
  }

  .software-nav {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .fleet-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .fleet-summary div {
    border-left: 0;
    border-top: 1px solid #dce3ee;
  }

  .fleet-item__status {
    justify-items: stretch;
  }

  .owner-settings {
    grid-template-columns: 1fr;
  }

  .status-sync {
    grid-template-columns: 1fr;
  }

  .wa-header,
  .wa-grid,
  .workcard-item__header,
  .workcard-meta,
  .signature-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: var(--white);
  }

  body * {
    visibility: hidden;
  }

  #work-authorization,
  #work-authorization *,
  #wa-print-packet,
  #wa-print-packet * {
    visibility: visible;
  }

  #work-authorization,
  #wa-print-packet {
    position: relative;
    inset: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  #wa-print-packet {
    margin-top: 24px;
    page-break-before: always;
  }

  .workcard-item,
  .wa-document section {
    break-inside: avoid;
  }

  .no-print {
    display: none !important;
  }
}
