:root {
  --bg: #071426;
  --bg-2: #0a1b32;
  --surface: #0d2038;
  --surface-2: #102744;
  --surface-3: #132d4c;
  --text: #f3f8ff;
  --muted: #a8bbd1;
  --muted-2: #7f96af;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(125, 211, 252, 0.28);
  --blue: #3b82f6;
  --blue-2: #7dd3fc;
  --blue-3: #1d4ed8;
  --orange: #ff7a45;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 8% -8%, rgba(59, 130, 246, 0.24), transparent 32rem),
    radial-gradient(circle at 96% 4%, rgba(125, 211, 252, 0.14), transparent 34rem),
    linear-gradient(180deg, #071426 0%, #061120 45%, #050d19 100%);
  line-height: 1.58;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 100;
  background: var(--blue-2);
  color: #061120;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(100% - 44px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 20, 38, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #041120;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.12);
}

.brand-text {
  font-size: 1.2rem;
}
.brand-logo-link {
  display: inline-flex;
  align-items: center;
}

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

.footer-brand-logo {
  width: 190px;
}


.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  transition: color 0.18s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.nav-cta {
  color: var(--text) !important;
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.18), rgba(125, 211, 252, 0.10));
  border: 1px solid var(--line-strong);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: clamp(58px, 7vw, 104px) 0 clamp(42px, 6vw, 70px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.36), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-2);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  background: var(--blue-2);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(125, 211, 252, 0.65);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(125, 211, 252, 0); }
  100% { box-shadow: 0 0 0 0 rgba(125, 211, 252, 0); }
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(2.8rem, 6.8vw, 5.6rem);
}

h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
}

h3 {
  font-size: 1.24rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.hero-lead {
  max-width: 820px;
  margin-top: 24px;
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #041120;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 18px 50px rgba(59, 130, 246, 0.28);
}

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

.full {
  width: 100%;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-strip span,
.industry-inner span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.86rem;
}

.command-card,
.principles-card,
.service-card,
.outcome-panel .panel-window,
.engagement-card,
.contact-form,
.assurance-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    var(--surface);
  box-shadow: var(--shadow);
}

.command-card {
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.command-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.42), transparent 36%, rgba(59, 130, 246, 0.24));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  padding: 1px;
}

.command-header,
.command-footer,
.status-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.command-header strong {
  display: block;
  margin-top: 4px;
}

.mini-label {
  color: var(--muted-2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 850;
}

.health-pill {
  color: var(--blue-2);
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(125, 211, 252, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.command-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.command-row {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.row-icon {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 0 5px rgba(125, 211, 252, 0.10);
}

.command-row p {
  margin-top: 4px;
  font-size: 0.93rem;
}

.command-footer {
  display: block;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.09);
}

.command-footer span {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-footer strong {
  display: block;
  margin-top: 6px;
}

.industry-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.industry-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding-block: 18px;
}

.section {
  padding: clamp(66px, 8vw, 104px) 0;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
}

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

.section-copy p {
  margin-top: 16px;
  font-size: 1.04rem;
}

.principles-card {
  padding: clamp(22px, 3vw, 32px);
}

.principles-card h3 {
  margin-bottom: 18px;
}

.clean-list,
.service-card ul,
.engagement-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clean-list {
  display: grid;
  gap: 16px;
}

.clean-list li {
  padding-left: 18px;
  border-left: 3px solid rgba(125, 211, 252, 0.5);
}

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

.clean-list span {
  color: var(--muted);
  margin-top: 4px;
}

.section-head {
  max-width: 880px;
}

.section-head.compact {
  max-width: 820px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.services-section,
.network-section {
  background: rgba(255, 255, 255, 0.014);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.service-card {
  padding: 26px;
  min-height: 390px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04)),
    var(--surface-2);
}

.featured-service {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 20% 0%, rgba(59, 130, 246, 0.20), transparent 22rem),
    rgba(255, 255, 255, 0.045);
}

.service-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-2);
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(125, 211, 252, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p {
  margin-top: 12px;
}

.service-card ul,
.engagement-card ul {
  margin-top: 20px;
  display: grid;
  gap: 10px;
}

.service-card li,
.engagement-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.service-card li::before,
.engagement-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.09);
}

.approach-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.12), transparent 30rem),
    #050f1e;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.panel-window {
  padding: 30px;
}

.window-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.status-row {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.status-row:first-of-type {
  margin-top: 22px;
}

.status-row span {
  color: var(--muted);
}

.status-row strong {
  color: var(--blue-2);
  font-size: 0.94rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.benefit-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.benefit-grid strong,
.benefit-grid span {
  display: block;
}

.benefit-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
}

.map-card {
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: #000;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: auto;
  background: #000;
}

.map-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 16px;
  padding: 15px 18px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.08);
}

.map-note span {
  color: var(--muted);
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 44px;
}

.engagement-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.engagement-card span {
  width: fit-content;
  color: var(--blue-2);
  border: 1px solid rgba(125, 211, 252, 0.24);
  background: rgba(125, 211, 252, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 850;
  margin-bottom: 18px;
}

.engagement-card p {
  margin-top: 12px;
}

.engagement-card ul {
  flex: 1;
  margin-bottom: 24px;
}

.engagement-card.highlighted {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 40% 0%, rgba(59, 130, 246, 0.23), transparent 20rem),
    rgba(255, 255, 255, 0.055);
}

.assurance-section {
  padding-top: 0;
}

.assurance-card {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-color: var(--line-strong);
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.17), rgba(255, 255, 255, 0.04)),
    var(--surface);
}

.contact-section {
  background:
    radial-gradient(circle at 84% 10%, rgba(59, 130, 246, 0.16), transparent 30rem),
    rgba(255, 255, 255, 0.02);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(30px, 5vw, 52px);
  align-items: start;
}

.contact-copy p {
  margin-top: 16px;
  font-size: 1.04rem;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  color: var(--blue-2);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: rgba(3, 16, 31, 0.78);
  color: var(--text);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(125, 211, 252, 0.64);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
}

.form-note {
  color: var(--muted-2);
  font-size: 0.82rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 28px;
  background: #030a14;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.5fr) repeat(3, minmax(120px, 1fr));
  gap: 30px;
}

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

.footer-grid strong {
  color: var(--text);
}

.footer-grid a,
.footer-grid p,
.footer-bottom {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-brand {
  width: fit-content;
  margin-bottom: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 100;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  color: #041120;
  background: #eaf4ff;
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 850;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transition: 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1020px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 22px;
    right: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(7, 20, 38, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 13px;
    border-radius: 12px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-cta {
    text-align: center;
    margin-top: 6px;
  }

  .hero-grid,
  .split,
  .reverse,
  .contact-grid,
  .assurance-card {
    grid-template-columns: 1fr;
  }

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

  .command-card {
    max-width: 720px;
  }
}

@media (max-width: 720px) {

  .brand-logo {
    width: 185px;
  }

  .footer-brand-logo {
    width: 172px;
  }
  .container {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    top: 70px;
    left: 16px;
    right: 16px;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.35rem, 13.5vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.75rem);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .command-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip,
  .industry-inner {
    justify-content: flex-start;
  }

  .service-grid,
  .engagement-grid,
  .benefit-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .map-card {
    border-radius: 20px;
  }

  .map-card img {
    min-height: 220px;
    object-fit: cover;
    object-position: center;
  }

  .map-note {
    flex-direction: column;
  }

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

@media (max-width: 420px) {
  .brand-logo {
    width: 158px;
  }

  .footer-brand-logo {
    width: 158px;
  }

    .container {
    width: min(100% - 26px, var(--max));
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-lead,
  .section-copy p,
  .section-head p,
  .contact-copy p {
    font-size: 1rem;
  }

  .command-card,
  .principles-card,
  .service-card,
  .engagement-card,
  .contact-form,
  .assurance-card {
    border-radius: 22px;
  }

  .btn {
    padding-inline: 14px;
  }
}
