:root {
  --dark: #0c1117;
  --dark2: #121922;
  --dark3: #18212c;

  --paper: #f4f3ef;
  --white: #ffffff;

  --text: #eef1f4;
  --muted: #a7b0ba;

  --darktext: #161b20;
  --darkmuted: #626b73;

  --gold: #c9a86a;
  --gold2: #e2c890;

  --line: rgba(255,255,255,.10);
  --lightline: #dcdcd5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

.wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(12,17,23,.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1.45rem;
  font-weight: 650;
  text-decoration: none;
  letter-spacing: .025em;
}

.brand-mark {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--gold2);
}

.brand-mark.small {
  width: 28px;
  height: 28px;
  font-size: 1rem;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  color: var(--muted);
  font-size: .92rem;
  text-decoration: none;
}

nav a:hover {
  color: white;
}


/* HERO */

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0c1117 0%, #111923 55%, #0b1015 100%);
}

.hero-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 90px 0 105px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .20em;
}

.eyebrow.dark {
  color: #92764a;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 6.1vw, 6.3rem);
  line-height: .95;
  font-weight: 650;
  letter-spacing: -.055em;
}

h1 span {
  color: #b8c0c8;
  font-weight: 350;
}

.lead {
  max-width: 680px;
  margin: 31px 0 37px;
  color: var(--muted);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  gap: 13px;
}

.button {
  display: inline-block;
  padding: 13px 21px;
  border-radius: 3px;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 600;
}

.button.primary {
  background: var(--gold);
  color: #111;
}

.button.primary:hover {
  background: var(--gold2);
}

.button.secondary {
  border: 1px solid #45505c;
  color: #d9dee3;
}

.button.secondary:hover {
  border-color: #74808b;
}

.hero-tags {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hero-tags span {
  padding: 6px 10px;
  border: 1px solid var(--line);
  color: #848f9a;
  font-size: .71rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* HERO ART */

.hero-art {
  height: 560px;
  position: relative;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero-glow-one {
  width: 400px;
  height: 400px;
  right: 5%;
  top: 15%;
  background: rgba(55,99,136,.17);
}

.hero-glow-two {
  width: 300px;
  height: 300px;
  right: 25%;
  bottom: -15%;
  background: rgba(201,168,106,.08);
}

.art-screen {
  width: 355px;
  height: 218px;
  position: absolute;
  top: 87px;
  right: 3px;
  padding: 9px;
  border: 1px solid #43505d;
  background: #141b22;
  box-shadow: 0 40px 80px rgba(0,0,0,.38);
  transform: perspective(900px) rotateY(-7deg);
}

.screen-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(to top, #182733 0%, #29445b 25%, #111a23 65%);
}

.screen-horizon {
  position: absolute;
  width: 120%;
  height: 2px;
  left: -10%;
  top: 67%;
  background: rgba(210,183,130,.55);
  box-shadow: 0 0 20px rgba(210,183,130,.65);
}

.screen-glow {
  position: absolute;
  width: 160px;
  height: 160px;
  right: 40px;
  top: 25px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(214,184,126,.55),
    rgba(214,184,126,.08) 45%,
    transparent 70%
  );
}

.art-rack {
  position: absolute;
  width: 225px;
  right: 67px;
  bottom: 54px;
  padding: 13px;
  border: 1px solid #3c4651;
  background: rgba(17,24,31,.92);
  box-shadow: 0 35px 70px rgba(0,0,0,.4);
}

.rack-unit {
  height: 43px;
  margin: 7px 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid #303944;
  background: #0d1217;
}

.rack-unit span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #667787;
}

.rack-unit span:first-child {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,106,.8);
}

.rack-unit i {
  width: 67px;
  height: 3px;
  margin-left: auto;
  background: #27313a;
}

.network-art {
  width: 500px;
  height: 500px;
  position: absolute;
  top: 20px;
  left: -35px;
  opacity: .35;
}

.network-art path {
  fill: none;
  stroke: #758b9d;
  stroke-width: 1;
}

.network-art circle {
  fill: var(--gold);
}

.art-label {
  position: absolute;
  min-width: 125px;
  padding: 9px 11px;
  border-left: 2px solid var(--gold);
  background: rgba(9,13,18,.75);
  backdrop-filter: blur(6px);
}

.art-label strong,
.art-label span {
  display: block;
}

.art-label strong {
  color: #dce2e7;
  font-size: .62rem;
  letter-spacing: .16em;
}

.art-label span {
  color: #717e89;
  font-size: .67rem;
}

.label-one {
  top: 47px;
  right: 130px;
}

.label-two {
  bottom: 35px;
  left: 35px;
}


/* INTRO */

.intro-strip {
  padding: 27px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #10161d;
}

.intro-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-grid p {
  margin: 0;
  color: #abb4bd;
  font-size: .93rem;
}

.intro-grid div {
  display: flex;
  gap: 30px;
}

.intro-grid span {
  color: #66717c;
  font-size: .64rem;
  letter-spacing: .16em;
}


/* SERVICES */

.section {
  padding: 105px 0;
}

.services {
  color: var(--darktext);
  background: var(--paper);
}

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

.section-heading h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 570;
}

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

.service-card {
  min-height: 270px;
  position: relative;
  padding: 34px;
  border: 1px solid var(--lightline);
  background: rgba(255,255,255,.36);
}

.service-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: #a9aaa6;
  font-family: Georgia, serif;
  font-size: .8rem;
}

.service-card h3 {
  margin: 35px 0 11px;
  font-size: 1.35rem;
}

.service-card p {
  max-width: 460px;
  color: var(--darkmuted);
  font-size: .94rem;
}

.service-icon {
  width: 38px;
  height: 30px;
  position: relative;
}

.display-icon {
  border: 1px solid #7f8588;
}

.display-icon:after {
  content: "";
  width: 12px;
  height: 1px;
  position: absolute;
  left: 12px;
  bottom: -6px;
  background: #7f8588;
}

.network-icon:before,
.network-icon:after,
.network-icon {
  border: 1px solid #7f8588;
  border-radius: 50%;
}

.network-icon {
  width: 29px;
  height: 29px;
}

.network-icon:before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 10px;
  top: 10px;
}

.network-icon:after {
  content: "";
  width: 43px;
  height: 1px;
  position: absolute;
  left: -8px;
  top: 13px;
  border: 0;
  border-top: 1px solid #7f8588;
}

.control-icon {
  width: 22px;
  height: 35px;
  border: 1px solid #7f8588;
  border-radius: 3px;
}

.control-icon:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 6px;
  top: 7px;
  border: 1px solid #7f8588;
  border-radius: 50%;
}

.consult-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #7f8588;
  transform: rotate(45deg);
}


/* APPROACH */

.approach {
  padding: 115px 0;
  background: var(--dark2);
}

.approach-grid {
  display: grid;
  grid-template-columns: 47% 53%;
  gap: 80px;
  align-items: center;
}

.approach-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(3rem,4.8vw,5rem);
  line-height: .98;
  letter-spacing: -.05em;
  font-weight: 560;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
}

.approach-points {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.approach-points div {
  display: flex;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.approach-points strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: .8rem;
}

.approach-points span {
  color: #cad0d5;
  font-size: .9rem;
}


/* BLUEPRINT ART */

.approach-art {
  min-height: 450px;
  display: flex;
  align-items: center;
}

.blueprint {
  width: 100%;
  height: 400px;
  position: relative;
  border: 1px solid #34414c;
  background:
    linear-gradient(rgba(95,113,129,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95,113,129,.08) 1px, transparent 1px),
    #10171e;
  background-size: 24px 24px;
}

.blueprint-room {
  position: absolute;
  border: 1px solid #53616d;
}

.room-one {
  width: 51%;
  height: 51%;
  top: 11%;
  left: 9%;
}

.room-two {
  width: 31%;
  height: 35%;
  top: 11%;
  right: 7%;
}

.room-three {
  width: 38%;
  height: 25%;
  bottom: 9%;
  right: 17%;
}

.bp-node {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,106,.7);
}

.n1 { left: 24%; top: 30%; }
.n2 { left: 51%; top: 53%; }
.n3 { right: 20%; top: 26%; }
.n4 { right: 29%; bottom: 17%; }

.bp-label {
  position: absolute;
  color: #82919d;
  font-size: .58rem;
  letter-spacing: .12em;
}

.l1 { left: 26%; top: 26%; }
.l2 { right: 18%; top: 22%; }
.l3 { right: 27%; bottom: 12%; }


/* CONTACT */

.contact-section {
  padding: 100px 0;
  color: var(--darktext);
  background: #e8e6df;
}

.contact-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: center;
}

.contact-panel {
  padding: 36px;
  border-left: 1px solid #c5c3bb;
}

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

.email {
  display: inline-block;
  margin: 13px 0;
  color: #161b20;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration-color: #a88751;
  text-underline-offset: 5px;
}

.location {
  font-size: .85rem;
}


/* FOOTER */

footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: #090d11;
  color: #74808a;
  font-size: .76rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

.footer-grid > div:last-child {
  text-align: right;
}

.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #cfd4d8;
}


/* RESPONSIVE */

@media (max-width: 900px) {

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

  .hero-copy {
    padding-bottom: 35px;
  }

  .hero-art {
    height: 490px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .approach-art {
    min-height: 380px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-panel {
    padding: 25px 0 0;
    border-left: 0;
    border-top: 1px solid #c5c3bb;
  }
}

@media (max-width: 650px) {

  .wrap {
    width: min(100% - 30px,1180px);
  }

  nav {
    gap: 15px;
    font-size: .84rem;
  }

  nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: unset;
  }

  .hero-grid {
    min-height: unset;
  }

  .hero-copy {
    padding-top: 75px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .hero-art {
    height: 410px;
  }

  .art-screen {
    width: 290px;
    height: 180px;
    right: 0;
  }

  .art-rack {
    width: 190px;
    right: 42px;
  }

  .network-art {
    width: 390px;
    left: -60px;
  }

  .intro-grid,
  .intro-grid div {
    display: block;
  }

  .intro-grid div {
    margin-top: 10px;
  }

  .intro-grid span {
    margin-right: 15px;
  }

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

  .section,
  .approach,
  .contact-section {
    padding: 75px 0;
  }

  .blueprint {
    height: 330px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid > div:last-child {
    text-align: left;
  }
}


/* SERVICE AREA */

.service-area {
  padding: 105px 0;
  background: #efede6;
  color: var(--darktext);
  border-top: 1px solid #ddd9cf;
}

.service-area-grid {
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 44px;
  align-items: center;
}

.service-area-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 570;
}

.service-area-copy p:not(.eyebrow) {
  color: var(--darkmuted);
  max-width: 560px;
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-area-list span {
  padding: 7px 11px;
  border: 1px solid #d0cbbf;
  background: rgba(255,255,255,.45);
  color: #575f67;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-area-map-wrap {
  padding: 18px;
  border: 1px solid #d8d3c7;
  background: rgba(255,255,255,.45);
}

.service-area-map {
  width: 100%;
  height: auto;
  display: block;
}

.dfw-region {
  fill: rgba(201,168,106,.20);
  stroke: #92764a;
  stroke-width: 2;
}

.map-road {
  fill: none;
  stroke: rgba(91,100,109,.35);
  stroke-width: 2;
}

.service-ring {
  fill: rgba(201,168,106,.07);
  stroke: rgba(146,118,74,.55);
  stroke-width: 2;
  stroke-dasharray: 8 7;
}

.service-ring-inner {
  fill: rgba(201,168,106,.10);
  stroke: rgba(146,118,74,.28);
  stroke-width: 1.5;
}

.city {
  fill: #57616b;
}

.city.major {
  fill: #92764a;
}

.city-label {
  fill: #31373d;
  font-size: 16px;
  font-weight: 600;
}

.city-label.small {
  fill: #58616a;
  font-size: 13px;
  font-weight: 500;
}

.hq-pulse {
  fill: rgba(201,168,106,.25);
  stroke: #92764a;
  stroke-width: 2;
}

.hq-core {
  fill: #92764a;
}

.map-note {
  fill: #666d73;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }
}


/* colorful DFW metro map */

.metro-map {
  border: 1px solid #d8d3c7;
  background: #f3efe4;
}

.metro-map text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

.city-fill {
  stroke: rgba(255,255,255,.72);
  stroke-width: 3;
}

.fw      { fill: #224f9c; }
.blue2   { fill: #3f6fae; }
.blue3   { fill: #5d84b8; }
.blue4   { fill: #426da8; }

.orange1 { fill: #ef813d; }
.orange2 { fill: #ea8a35; }
.orange3 { fill: #df9762; }

.gold1   { fill: #ddb15a; }

.teal2   { fill: #2b9a7f; }

.green1  { fill: #99bf37; }
.green2  { fill: #9fbe45; }
.green3  { fill: #82b94a; }
.green4  { fill: #65b46b; }
.green5  { fill: #8db33f; }

.lime1   { fill: #a8ba44; }
.olive1  { fill: #95b33d; }
.aqua1   { fill: #6fa9a9; }

.dallas  { fill: #0f7b6d; }

.red1    { fill: #b84a5e; }
.coral1  { fill: #d96d46; }
.salmon1 { fill: #d89a94; }

.purple1 { fill: #b47aa7; }
.purple2 { fill: #a54f82; }
.magenta1{ fill: #b24c73; }
.lilac1  { fill: #9d7bb0; }

.city-name {
  font-size: 19px;
  font-weight: 700;
}

.city-name.major {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -.02em;
}

.city-name.white {
  fill: #ffffff;
}

.county-label {
  fill: #494949;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
}

.coverage-callout rect {
  fill: rgba(255,255,255,.72);
  stroke: #cdbf9e;
  stroke-width: 1.5;
}

.coverage-title {
  fill: #2b2f35;
  font-size: 18px;
  font-weight: 800;
}

.coverage-sub {
  fill: #6b6f74;
  font-size: 14px;
  font-weight: 600;
}

/* improve service-area section balance with bigger map */
.service-area-grid {
  grid-template-columns: 38% 62%;
  gap: 36px;
}

.service-area-map-wrap {
  padding: 14px;
  border: 1px solid #d8d3c7;
  background: rgba(255,255,255,.50);
}

@media (max-width: 900px) {
  .service-area-grid {
    grid-template-columns: 1fr;
  }

  .city-name {
    font-size: 16px;
  }

  .city-name.major {
    font-size: 24px;
  }

  .county-label {
    font-size: 16px;
  }
}


/* SIMPLE SERVICE AREA */

.service-area {
  padding: 105px 0;
  background: #efede6;
  color: var(--darktext);
  border-top: 1px solid #ddd9cf;
}

.service-area-simple {
  max-width: 1050px;
}

.service-area-copy {
  max-width: 820px;
}

.service-area-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 570;
}

.service-area-lead {
  max-width: 760px;
  color: var(--darkmuted);
  font-size: 1.1rem;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.city-grid span {
  padding: 18px 16px;
  border: 1px solid #d2cec4;
  background: rgba(255,255,255,.42);
  color: #454c53;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-area-note {
  margin-top: 22px;
  color: #777d82;
  font-size: .82rem;
}

@media (max-width: 800px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

