:root {
  --ink: #16201d;
  --muted-ink: #56615c;
  --paper: #f8f6f0;
  --white: #ffffff;
  --mist: #e9efe9;
  --line: #d7ddd5;
  --green: #1f6b4f;
  --green-dark: #164f3d;
  --gold: #b9852f;
  --rust: #a94d35;
  --blue: #315b7c;
  --shadow: 0 18px 50px rgba(22, 32, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(248, 246, 240, 0.92);
  border-bottom: 1px solid rgba(215, 221, 213, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--green);
  border-radius: 8px;
  color: white;
  font-size: 12px;
  letter-spacing: 0;
}

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

.nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 9px 14px;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white) !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) 56px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.97;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 650px;
  color: var(--muted-ink);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 740;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--green);
  color: white;
}

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

.button.secondary.invert {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.hero-stats div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-stats dt {
  font-size: 22px;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted-ink);
  font-size: 13px;
}

.hero-media {
  min-width: 0;
}

.hero-media img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.control-section {
  background: #14201c;
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.control-section .eyebrow {
  color: #9dd7c2;
}

.control-section .section-heading h2 {
  color: var(--white);
}

.control-tower {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 42px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(31, 107, 79, 0.28), transparent 36%),
    #101714;
  background-size: 34px 34px, 34px 34px, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.control-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.88fr) minmax(320px, 1.08fr) minmax(230px, 0.88fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  min-height: 520px;
}

.map-column {
  display: grid;
  gap: 18px;
  z-index: 2;
}

.tower-node,
.hub-console {
  position: relative;
  z-index: 2;
  min-width: 0;
  border-radius: 8px;
}

.tower-node {
  padding: 22px;
  background: rgba(248, 246, 240, 0.96);
  border: 1px solid rgba(215, 221, 213, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.tower-node span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.tower-node h3 {
  font-size: 20px;
}

.tower-node p {
  color: var(--muted-ink);
}

.route-node {
  border-color: rgba(49, 91, 124, 0.42);
}

.inbound-node {
  border-color: rgba(185, 133, 47, 0.52);
}

.hub-console {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(145deg, #f8f6f0, #e8efe8);
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.console-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(31, 107, 79, 0.15);
}

.hub-console h3 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.98;
}

.hub-console p {
  color: var(--muted-ink);
  font-size: 18px;
}

.console-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
}

.console-steps span {
  padding: 10px 8px;
  background: rgba(31, 107, 79, 0.1);
  border: 1px solid rgba(31, 107, 79, 0.2);
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.route-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(157, 215, 194, 0.7);
  transform-origin: left center;
}

.route-line::after {
  position: absolute;
  right: -2px;
  top: -4px;
  width: 10px;
  height: 10px;
  background: #9dd7c2;
  border-radius: 999px;
  content: "";
}

.line-left-top {
  left: 21%;
  top: 33%;
  width: 24%;
  transform: rotate(15deg);
}

.line-left-bottom {
  left: 21%;
  top: 62%;
  width: 24%;
  transform: rotate(-17deg);
}

.line-right-top {
  left: 58%;
  top: 32%;
  width: 23%;
  background: rgba(115, 160, 194, 0.78);
  transform: rotate(-16deg);
}

.line-right-mid {
  left: 58%;
  top: 49%;
  width: 23%;
  background: rgba(115, 160, 194, 0.78);
}

.line-right-bottom {
  left: 58%;
  top: 66%;
  width: 23%;
  background: rgba(211, 172, 103, 0.82);
  transform: rotate(16deg);
}

.map-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.map-caption span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.capability-strip article {
  min-width: 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.capability-strip h3 {
  color: var(--white);
  font-size: 18px;
}

.capability-strip p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.section,
.band,
.request {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  background: var(--white);
  border-block: 1px solid var(--line);
}

.band > p {
  color: var(--muted-ink);
  font-size: 20px;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(64px, 10vw, 132px) clamp(20px, 5vw, 72px) clamp(52px, 7vw, 88px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted-ink);
  font-size: 20px;
}

.compact-hero {
  padding-bottom: 54px;
}

.cards,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.price-card,
.category {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-label {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.card p,
.category p,
.price-card p,
.steps p {
  color: var(--muted-ink);
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--ink);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(260px, 0.58fr) minmax(420px, 1.42fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.service-copy {
  align-self: start;
  position: sticky;
  top: 104px;
}

.service-copy p:not(.eyebrow) {
  color: var(--muted-ink);
  font-size: 18px;
}

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

.detail-grid article {
  min-width: 0;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 22px;
  color: var(--muted-ink);
}

.checklist li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "+";
  font-weight: 900;
}

.price.compact {
  margin-top: 0;
  font-size: 26px;
}

.muted {
  background: var(--mist);
  border-block: 1px solid var(--line);
}

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

.category {
  background: rgba(255, 255, 255, 0.78);
}

.advantage-grid,
.industry-grid {
  display: grid;
  gap: 16px;
}

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

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

.advantage,
.industry-card {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.industry-card {
  background: rgba(255, 255, 255, 0.78);
}

.industry-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.advantage p,
.industry-card p,
.split-panel p {
  color: var(--muted-ink);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.panel-list {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.faq-item {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-item p {
  color: var(--muted-ink);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(420px, 1.38fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.case-summary {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-body h2 {
  margin-bottom: 28px;
}

.timeline {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.timeline p {
  color: var(--muted-ink);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.terms-menu {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-menu h3 {
  margin-bottom: 8px;
}

.terms-menu a {
  padding: 8px 0;
  color: var(--muted-ink);
  text-decoration: none;
}

.terms-content {
  display: grid;
  gap: 16px;
}

.terms-block {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-block h2 {
  font-size: clamp(25px, 3vw, 36px);
}

.terms-block p {
  color: var(--muted-ink);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 22px;
  border-left: 4px solid var(--green);
  background: var(--white);
  border-radius: 0 8px 8px 0;
}

.steps span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
}

.price-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
}

.price-card.featured {
  border-color: rgba(31, 107, 79, 0.55);
  box-shadow: var(--shadow);
}

.price {
  margin: 10px 0 16px;
  color: var(--green-dark) !important;
  font-size: 30px;
  font-weight: 850;
}

.pricing-note {
  max-width: 870px;
  margin: 24px 0 0;
  color: var(--muted-ink);
}

.request {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 80px);
  background: var(--ink);
  color: white;
}

.mini-request {
  align-items: center;
}

.mini-request .button {
  justify-self: start;
}

.page-request {
  align-items: start;
}

.request .eyebrow {
  color: #9dd7c2;
}

.request p {
  color: rgba(255, 255, 255, 0.74);
}

.request h3 {
  color: var(--white);
}

.quick-list {
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.quick-list ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.request-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.request-panel ul {
  display: grid;
  gap: 9px;
  margin: 0 0 8px;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.76);
}

.email-template {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  color: var(--ink);
}

.email-template p {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #101714;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero,
  .band,
  .request,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.two,
  .pricing-grid,
  .cards.four,
  .pricing-grid.four,
  .detail-grid,
  .advantage-grid,
  .industry-grid,
  .split-panel,
  .faq-list,
  .case-layout,
  .terms-layout,
  .control-map,
  .capability-strip {
    grid-template-columns: 1fr;
  }

  .control-map {
    min-height: auto;
  }

  .route-line {
    display: none;
  }

  .hub-console {
    order: -1;
  }

  .map-caption {
    position: static;
    margin-top: 8px;
  }

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

  .service-copy {
    position: static;
  }

  .case-summary {
    position: static;
  }

  .terms-menu {
    position: static;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 43px;
  }

  .hero-stats,
  .category-grid,
  .steps,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}
