/* GForce Global Systems — dark theme (shipping). Light palette kept in assets/logo-wordmark-light.svg + prior light :root values if needed later. */
:root {
  --bg: #070d1a;
  --bg-elevated: #0e1a2f;
  --bg-panel: #122038;
  --ink: #e8eef8;
  --ink-soft: #c2cddf;
  --muted: #7b8ba5;
  --line: rgba(232, 238, 248, 0.08);
  --line-strong: rgba(232, 238, 248, 0.14);
  --teal: #2dd4bf;
  --teal-deep: #14b8a6;
  --cyan: #38bdf8;
  --accent: var(--teal);
  --accent-soft: rgba(45, 212, 191, 0.12);
  --cyan-soft: rgba(56, 189, 248, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 10px 28px rgba(0, 0, 0, 0.35);
  --max: 1180px;
  --header-h: auto;
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Syne", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: clamp(1.5rem, 2.4vw, 1.9rem);
  --text-2xl: clamp(1.9rem, 3.4vw, 2.55rem);
  --text-3xl: clamp(2.4rem, 5vw, 3.4rem);
  --leading-tight: 1.12;
  --leading-snug: 1.28;
  --leading-body: 1.72;
  --tracking-tight: -0.03em;
  --tracking-wide: 0.14em;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-body);
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(56, 189, 248, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(45, 212, 191, 0.07), transparent 50%),
    var(--bg);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--teal);
  color: #041018;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  z-index: 100;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  height: auto;
  display: flex;
  align-items: center;
  padding: 0.65rem 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(7, 13, 26, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  position: relative;
}
.header-inner.header-stack {
  /* unused: logo returns top-left */
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-logo {
  width: auto;
  max-width: min(90vw, 320px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  background: transparent;
  border: 0;
  padding: 0;
  display: block;
}
.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 550;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--teal); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: var(--text-sm);
  background: linear-gradient(135deg, var(--teal), #22d3ee);
  color: #041018;
  box-shadow: 0 8px 28px rgba(45, 212, 191, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(45, 212, 191, 0.35); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); box-shadow: none; }
.nav-links .btn { margin-left: 0.4rem; padding: 0.62rem 1.1rem; }

/* Typography helpers */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  border-radius: 2px;
}
.kicker {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.6rem;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin: 0 0 0.85rem;
}
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); line-height: var(--leading-snug); }
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 42rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2.25rem;
}
.stat {
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.stat span { font-size: var(--text-xs); color: var(--muted); }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(7,13,26,0.15), rgba(7,13,26,0.55)),
    linear-gradient(0deg, rgba(45,212,191,0.12), transparent 40%);
  pointer-events: none;
}
.force-bars {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  display: flex;
  gap: 0.4rem;
  align-items: flex-end;
  z-index: 2;
}
.force-bars span {
  width: 7px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  animation: pulseBar 1.8s ease-in-out infinite;
}
.force-bars span:nth-child(1) { height: 28px; animation-delay: 0s; }
.force-bars span:nth-child(2) { height: 44px; animation-delay: 0.15s; }
.force-bars span:nth-child(3) { height: 34px; animation-delay: 0.3s; }
.force-bars span:nth-child(4) { height: 56px; animation-delay: 0.45s; }
.force-bars span:nth-child(5) { height: 40px; animation-delay: 0.6s; }

@keyframes pulseBar {
  0%, 100% { opacity: 0.55; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

.mesh {
  position: absolute;
  inset: -20% -10%;
  background-image:
    linear-gradient(rgba(45,212,191,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,189,248,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > .wrap { position: relative; z-index: 1; }

/* Sections */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 3.5rem) 0; }
.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}
.section-head.center {
  margin-inline: auto;
  text-align: center;
}
.section-head.center .lead { margin-inline: auto; }

.panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem);
}

/* Bento / cards */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}
.bento-card {
  grid-column: span 4;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.4rem 1.55rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.bento-card:hover {
  border-color: rgba(45, 212, 191, 0.35);
  transform: translateY(-2px);
}
.bento-card.wide { grid-column: span 6; }
.bento-card.tall { grid-column: span 4; min-height: 100%; }
.bento-card .icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--teal);
  margin-bottom: 1rem;
  border: 1px solid rgba(45, 212, 191, 0.2);
}
.bento-card .icon svg { width: 22px; height: 22px; }
.bento-card h3 { font-size: 1.2rem; margin-bottom: 0.55rem; }
.bento-card p { margin: 0; color: var(--muted); font-size: var(--text-sm); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.feature-card .body { padding: 1.3rem 1.35rem 1.5rem; }
.feature-card h3 { font-size: 1.2rem; }
.feature-card p { margin: 0; color: var(--muted); font-size: var(--text-sm); }

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-prose p { margin: 0 0 1rem; }
.split-prose ul { margin: 1rem 0 0; }
.split-prose li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}
.split-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--teal);
  transform: rotate(45deg);
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.value-item {
  padding: 1.4rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(18,32,56,0.9), rgba(14,26,47,0.7));
}
.value-item .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.value-item h3 { font-size: 1.25rem; }
.value-item p { margin: 0; color: var(--muted); font-size: var(--text-sm); }

/* Services deep */
.svc-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.svc-toc a {
  font-size: var(--text-xs);
  font-weight: 650;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  background: rgba(14,26,47,0.6);
}
.svc-toc a:hover { border-color: var(--teal); color: var(--teal); }

.svc-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}
.svc-block:last-child { border-bottom: 1px solid var(--line); }
.svc-block-meta .num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--teal);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.svc-block-meta h3 { font-size: 1.35rem; margin: 0; }
.svc-block-body p { margin: 0 0 0.85rem; }
.svc-block-body ul { margin-top: 0.5rem; }
.svc-block-body li {
  padding-left: 1rem;
  margin-bottom: 0.4rem;
  position: relative;
  color: var(--muted);
  font-size: var(--text-sm);
}
.svc-block-body li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.75rem;
  top: 0.15em;
}

/* Approach timeline */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--cyan), transparent);
}
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.1rem;
  padding: 1.15rem 0;
}
.step-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-elevated);
  border: 2px solid var(--teal);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 1;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.step p { margin: 0; color: var(--muted); font-size: var(--text-sm); }

/* AvailEase callout */
.availlease {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 212, 191, 0.28);
  background:
    radial-gradient(600px 200px at 100% 0%, rgba(56,189,248,0.12), transparent 50%),
    linear-gradient(145deg, #0f2138, #0b1729);
}
.availlease .tm {
  font-size: 0.7rem;
  vertical-align: super;
  color: var(--cyan);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.pill {
  font-size: var(--text-xs);
  font-weight: 650;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--teal);
  border: 1px solid rgba(45,212,191,0.2);
}

/* Page hero */
.page-hero {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0 2rem;
}
.page-hero-media {
  margin-top: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 21/8;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}
.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
}
.contact-card h2 { font-size: 1.45rem; }
.contact-list { margin-top: 1.25rem; }
.contact-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list .label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.contact-list a { color: var(--teal); font-weight: 650; }
.contact-list a:hover { color: var(--cyan); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
input, select, textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(7,13,26,0.55);
  color: var(--ink);
  font: inherit;
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(45,212,191,0.15);
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: clamp(2rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(120deg, rgba(45,212,191,0.12), transparent 45%),
    var(--bg-panel);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.cta-band h2 { margin: 0 0 0.4rem; font-size: var(--text-xl); }
.cta-band p { margin: 0; color: var(--muted); max-width: 34rem; }

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
  background: rgba(5, 10, 20, 0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-brand p { color: var(--muted); font-size: var(--text-sm); margin: 0.75rem 0 0; max-width: 22rem; }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: var(--text-xs);
  color: var(--muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 960px) {
  .hero-grid,
  .split,
  .availlease,
  .contact-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .bento-card, .bento-card.wide { grid-column: span 6; }
  .svc-block { grid-template-columns: 1fr; gap: 0.6rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero-media { aspect-ratio: 16/8; }
}
@media (max-width: 760px) {
  .nav-toggle { display: grid; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(7, 13, 26, 0.97);
    border-bottom: 1px solid var(--line);
    z-index: 40;
  }
  
  
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.85rem 0.2rem; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin: 0.85rem 0 0; width: 100%; }
  .hero-stats, .card-grid, .values-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-card.wide { grid-column: span 12; }
  .brand-text small { display: none; }
}
