:root {
  color-scheme: dark;
  --bg: #030711;
  --bg-soft: #07111f;
  --panel: rgba(12, 24, 42, .9);
  --panel-strong: #111f35;
  --line: rgba(180, 203, 235, .18);
  --line-bright: rgba(95, 165, 255, .55);
  --text: #f7fbff;
  --muted: #adc0d6;
  --accent: #66d9ff;
  --accent-strong: #3b82f6;
  --accent-gold: #d6b46a;
  --accent-soft: rgba(102, 217, 255, .12);
  --success: #69e6c0;
  --warning: #f2c96b;
  --danger: #fb7185;
  --shadow: 0 24px 80px rgba(0, 0, 0, .42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, .28), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(214, 180, 106, .16), transparent 30rem),
    radial-gradient(circle at 55% 38%, rgba(102, 217, 255, .1), transparent 28rem),
    linear-gradient(180deg, #07101d 0%, var(--bg) 58%, #01030a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), transparent 72%);
  pointer-events: none;
  position: fixed;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.skip-link {
  background: var(--accent);
  border-radius: 999px;
  color: #02111c;
  font-weight: 900;
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(5, 9, 20, .82);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .05);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 50%;
  max-width: 1180px;
  padding: .75rem .85rem;
  position: sticky;
  top: 1rem;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--text);
  display: inline-flex;
  font-weight: 950;
  gap: .65rem;
  letter-spacing: .06em;
  padding: .4rem .65rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
}

.brand-mark {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(56, 189, 248, .1), 0 0 28px rgba(56, 189, 248, .7);
  display: inline-flex;
  height: .72rem;
  width: .72rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: flex-end;
}

.nav-links a {
  align-items: center;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  color: var(--muted);
  display: inline-flex;
  font-size: .88rem;
  font-weight: 850;
  min-height: 2.15rem;
  padding: .45rem .7rem;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(56, 189, 248, .09);
  border-color: var(--line-bright);
  color: var(--text);
  outline: none;
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-links a[aria-current="page"] {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 24px rgba(56, 189, 248, .24);
  color: #02111c;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  gap: .55rem;
  min-height: 2.3rem;
  padding: .45rem .7rem;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  background: currentColor;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 1rem;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  left: 0;
  position: absolute;
}

.nav-toggle-bars::before {
  top: -.35rem;
}

.nav-toggle-bars::after {
  top: .35rem;
}

.shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(1rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
}

.hero,
.page-hero {
  padding: clamp(2rem, 7vw, 5.5rem) 0 clamp(1.25rem, 4vw, 3rem);
}

.hero-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr);
}

.hero-copy,
.trust-card,
.flight-visual,
.contact-form,
.testimonial-card,
.section,
.panel,
.stat-card,
.gallery-card,
.journey-entry,
.contact-card,
.page-hero {
  background: linear-gradient(180deg, rgba(255, 255, 255, .066), rgba(255, 255, 255, .028));
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.hero-copy,
.trust-card,
.flight-visual,
.page-hero {
  padding: clamp(1.4rem, 5vw, 3rem);
}

.eyebrow,
.tag,
.service-pill {
  align-items: center;
  background: var(--accent-soft);
  border: 1px solid rgba(56, 189, 248, .25);
  border-radius: 999px;
  color: var(--accent);
  display: inline-flex;
  font-size: .75rem;
  font-weight: 900;
  gap: .35rem;
  letter-spacing: .08em;
  padding: .38rem .62rem;
  text-transform: uppercase;
  width: fit-content;
}

.tag.success {
  background: rgba(99, 230, 190, .1);
  border-color: rgba(99, 230, 190, .3);
  color: var(--success);
}

.tag.warning {
  background: rgba(250, 204, 21, .1);
  border-color: rgba(250, 204, 21, .28);
  color: var(--warning);
}

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

h1 {
  font-size: clamp(2.75rem, 7vw, 6.1rem);
  letter-spacing: -.07em;
  line-height: .92;
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.65rem, 4vw, 3rem);
  letter-spacing: -.045em;
  line-height: 1;
  margin-bottom: .9rem;
}

h3 {
  font-size: 1.12rem;
  letter-spacing: -.015em;
  line-height: 1.16;
  margin-bottom: .45rem;
}

p,
li {
  color: var(--muted);
}

p {
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: 0;
  max-width: 72ch;
}

.lead {
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions,
.button-row,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.button {
  align-items: center;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: #02111c;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 2.85rem;
  padding: .78rem 1rem;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.06);
  outline: 3px solid rgba(56, 189, 248, .18);
  outline-offset: 3px;
  text-decoration: none;
}

.button-secondary {
  background: rgba(255, 255, 255, .055);
  border-color: var(--line);
  color: var(--text);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.5rem;
}

.hero-proof span {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
  padding: .45rem .7rem;
}

.trust-card {
  align-self: stretch;
  display: grid;
  gap: 1rem;
}

.flight-visual {
  align-self: stretch;
  overflow: hidden;
  position: relative;
}

.flight-visual::before {
  background: radial-gradient(circle, rgba(102, 217, 255, .22), transparent 68%);
  content: "";
  filter: blur(10px);
  height: 18rem;
  position: absolute;
  right: -5rem;
  top: -4rem;
  width: 18rem;
}

.radar-card {
  background:
    linear-gradient(135deg, rgba(102, 217, 255, .14), transparent 38%),
    linear-gradient(180deg, #111d31, #060b14);
  border: 1px solid rgba(102, 217, 255, .22);
  border-radius: 28px;
  display: grid;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem;
  position: relative;
}

.route-map {
  aspect-ratio: 1.08;
  background:
    radial-gradient(circle at center, transparent 0 28%, rgba(102, 217, 255, .08) 29% 30%, transparent 31% 48%, rgba(102, 217, 255, .08) 49% 50%, transparent 51%),
    linear-gradient(135deg, rgba(214, 180, 106, .16), transparent 38%),
    linear-gradient(180deg, #0a1424, #050914);
  border: 1px solid rgba(180, 203, 235, .16);
  border-radius: 26px;
  min-height: 19rem;
  overflow: hidden;
  position: relative;
}

.route-map::before {
  border: 2px dashed rgba(102, 217, 255, .45);
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 100% 0 0;
  content: "";
  height: 58%;
  left: 20%;
  position: absolute;
  top: 18%;
  transform: rotate(-7deg);
  width: 62%;
}

.route-dot {
  background: var(--accent);
  border: 4px solid rgba(3, 7, 17, .85);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(102, 217, 255, .72);
  height: 1.2rem;
  position: absolute;
  width: 1.2rem;
}

.dot-origin {
  bottom: 21%;
  left: 18%;
}

.dot-mid {
  left: 50%;
  top: 34%;
}

.dot-destination {
  right: 18%;
  top: 19%;
}

.jet-icon {
  background: linear-gradient(135deg, var(--accent-gold), #fff4cb);
  clip-path: polygon(50% 0, 62% 39%, 100% 50%, 62% 61%, 50% 100%, 38% 61%, 0 50%, 38% 39%);
  filter: drop-shadow(0 0 18px rgba(214, 180, 106, .7));
  height: 3.6rem;
  left: 52%;
  position: absolute;
  top: 38%;
  transform: rotate(48deg);
  width: 3.6rem;
}

.flight-panel {
  position: relative;
  z-index: 1;
}

.device-card {
  background: #07101f;
  border: 1px solid rgba(56, 189, 248, .18);
  border-radius: 24px;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.device-outline {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, .2), transparent 38%),
    linear-gradient(180deg, #121f34, #07101d);
  border: 2px solid rgba(148, 163, 184, .26);
  border-radius: 30px;
  box-shadow: inset 0 0 0 8px #050914, 0 24px 40px rgba(0, 0, 0, .28);
  min-height: 19rem;
  position: relative;
}

.device-outline::before,
.device-outline::after {
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.device-outline::before {
  background: rgba(255, 255, 255, .2);
  border-radius: 999px;
  height: .34rem;
  top: 1.2rem;
  width: 4rem;
}

.device-outline::after {
  background: rgba(56, 189, 248, .45);
  border-radius: 999px;
  bottom: 1.1rem;
  height: .55rem;
  width: 3rem;
}

.repair-lines {
  display: grid;
  gap: .6rem;
}

.repair-lines span,
.metric-line {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--muted);
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  padding: .65rem 0;
}

.repair-lines span:last-child,
.metric-line:last-child {
  border-bottom: 0;
}

.repair-lines strong,
.metric-line strong {
  color: var(--text);
}

.repair-lines em,
.metric-line span {
  color: var(--accent);
  font-style: normal;
  font-weight: 850;
}

.stats-grid,
.service-grid,
.card-grid,
.gallery-grid,
.journey-grid,
.contact-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.stat-card,
.panel,
.gallery-card,
.journey-entry,
.contact-card,
.contact-form,
.testimonial-card {
  padding: 1.2rem;
}

.stat-value {
  color: var(--accent);
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 950;
  line-height: 1;
  margin-bottom: .75rem;
}

.stat-card h2 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: .45rem;
}

.section {
  margin-top: 1rem;
  padding: clamp(1.4rem, 4vw, 2.35rem);
}

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

.split-heading {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  max-width: none;
}

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

.gallery-grid,
.journey-grid,
.contact-grid,
.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel.accent,
.gallery-card.featured,
.journey-entry.featured,
.contact-card.featured,
.contact-form.featured,
.testimonial-card.featured {
  border-color: var(--line-bright);
}

.panel h3,
.gallery-card h3,
.journey-entry h3,
.contact-card h3,
.testimonial-card h3 {
  margin-top: .8rem;
}

.check-list,
.detail-list,
.quote-list {
  display: grid;
  gap: .65rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.check-list li,
.detail-list li,
.quote-list li {
  background: rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  padding: .72rem .75rem;
}

.check-list li::before {
  color: var(--accent);
  content: "✓";
  font-weight: 950;
  margin-right: .55rem;
}

.detail-list strong {
  color: var(--text);
}

.photo-pair {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.photo-frame {
  background:
    linear-gradient(135deg, rgba(56, 189, 248, .15), transparent 45%),
    linear-gradient(180deg, #0d1728, #060b14);
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 18px;
  min-height: 10rem;
  overflow: hidden;
  padding: .8rem;
  position: relative;
}

.photo-frame::before {
  background:
    linear-gradient(150deg, transparent 0 46%, rgba(255, 255, 255, .2) 47% 48%, transparent 49% 100%),
    radial-gradient(circle at 72% 28%, rgba(56, 189, 248, .34), transparent 1.4rem);
  border: 2px solid rgba(148, 163, 184, .24);
  border-radius: 22px;
  content: "";
  inset: 2rem .9rem 1rem;
  position: absolute;
}

.photo-frame span {
  color: var(--text);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.status-note,
.proof-box {
  background: #060a12;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  color: #dbe8fa;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86rem;
  margin-top: .85rem;
  padding: .85rem;
}

.journey-entry {
  display: grid;
  gap: .8rem;
}

.date-pill {
  color: var(--warning);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .84rem;
  font-weight: 850;
}

.quote-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, .28), rgba(56, 189, 248, .08));
  border: 1px solid var(--line-bright);
  border-radius: 24px;
  margin-top: 1rem;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.testimonial-card {
  margin: 0;
}

.testimonial-card blockquote {
  color: var(--text);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.18;
  margin: 0;
}

.testimonial-card figcaption {
  color: var(--accent);
  font-weight: 900;
  margin-top: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row {
  display: grid;
  gap: .4rem;
}

.form-row-full {
  grid-column: 1 / -1;
}

label {
  color: var(--text);
  font-size: .86rem;
  font-weight: 900;
}

input,
select,
textarea {
  background: rgba(0, 0, 0, .24);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  color: var(--text);
  font: inherit;
  min-height: 3rem;
  padding: .85rem .9rem;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(102, 217, 255, .12);
  outline: none;
}

.form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.form-status {
  color: var(--muted);
  font-size: .94rem;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.button[aria-busy="true"] {
  cursor: progress;
  opacity: .76;
}

.site-footer {
  color: var(--muted);
  margin: 0 auto;
  max-width: 1180px;
  padding: 2rem clamp(1rem, 3vw, 2rem) 3rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.site-footer p {
  margin: 0 auto;
}

@media (max-width: 980px) {
  .hero-grid,
  .stats-grid,
  .service-grid,
  .card-grid,
  .gallery-grid,
  .journey-grid,
  .contact-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy,
  .trust-card,
  .flight-visual {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    margin: .5rem auto 0;
    position: static;
    transform: none;
    width: calc(100% - 1rem);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    padding-top: .4rem;
    width: 100%;
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .hero-grid,
  .stats-grid,
  .service-grid,
  .card-grid,
  .gallery-grid,
  .journey-grid,
  .contact-grid,
  .process-grid,
  .testimonial-grid,
  .contact-form,
  .photo-pair {
    grid-template-columns: 1fr;
  }

  .form-row-full {
    grid-column: auto;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .shell {
    padding: .75rem;
  }

  .hero-copy,
  .trust-card,
  .flight-visual,
  .section,
  .panel,
  .stat-card,
  .gallery-card,
  .journey-entry,
  .contact-card,
  .contact-form,
  .testimonial-card,
  .page-hero {
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4rem);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .jet-icon {
    animation: jet-pulse 3.8s ease-in-out infinite;
  }
}

@keyframes jet-pulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(48deg);
  }

  50% {
    transform: translate3d(.35rem, -.35rem, 0) rotate(48deg);
  }
}
