/*
Theme Name: GigaBeam Appalachian Advantage
Theme URI: https://www.gigabeam.net/
Author: GigaBeam Networks
Description: Custom cPanel-ready WordPress theme for the Project Appalachian Advantage GigaBeam website concept.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: gigabeam-appalachian-advantage
*/

:root {
  --gb-ink: #0c1513;
  --gb-muted: #52615c;
  --gb-paper: #fffdf8;
  --gb-bg: #f6f7f2;
  --gb-blue: #0079a8;
  --gb-navy: #0b2140;
  --gb-green: #78c943;
  --gb-yellow: #f9cf4a;
  --gb-orange: #f27b2d;
  --gb-red: #d9382f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gb-bg);
  color: var(--gb-ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

.gb-page-band--dark {
	background: #07110f;
	color: #fff;
	min-height: 70vh;
	padding: 7rem 0;
}

.gb-service-page {
	max-width: 880px;
}

.gb-service-page h1 {
	font-size: clamp(3rem, 7vw, 6rem);
	line-height: .95;
	max-width: 760px;
	margin: 1rem 0 2rem;
}

.gb-service-page__copy {
	color: rgba(255,255,255,.72);
	font-size: 1.2rem;
	line-height: 1.7;
	max-width: 620px;
}

.gb-service-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2.5rem;
}

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

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

a,
button,
input,
select {
  outline-color: var(--gb-blue);
  outline-offset: 3px;
}

::selection {
  background: var(--gb-yellow);
  color: var(--gb-ink);
}

.gb-shell {
  min-height: 100vh;
  background: var(--gb-bg);
}

.gb-elementor-content {
  width: 100%;
  min-height: 40vh;
}

.gb-elementor-content > .elementor {
  width: 100%;
}

.gb-entry-content > * {
  max-width: 78ch;
}

.gb-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.gb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgb(12 21 19 / 10%);
  background: rgb(255 253 248 / 95%);
  backdrop-filter: blur(18px);
}

.gb-header__inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.gb-logo img {
  width: auto;
  height: 36px;
}

.gb-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #2c3835;
  font-size: 14px;
  font-weight: 800;
}

.gb-nav a:hover {
  color: var(--gb-blue);
}

.gb-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  padding: 13px 18px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.gb-button--green {
  background: var(--gb-green);
  color: #091006;
  box-shadow: 0 8px 20px rgb(69 141 29 / 24%);
}

.gb-button--green:hover {
  background: #8ee158;
}

.gb-button--dark {
  background: var(--gb-ink);
  color: white;
}

.gb-button--dark:hover {
  background: var(--gb-blue);
}

.gb-button--ghost {
  border: 1px solid rgb(12 21 19 / 15%);
  background: transparent;
  color: var(--gb-ink);
}

.gb-button--ghost:hover {
  border-color: var(--gb-blue);
  color: var(--gb-blue);
}

.gb-button--light {
  border: 1px solid rgb(255 255 255 / 35%);
  background: rgb(255 255 255 / 10%);
  color: white;
}

.gb-button--light:hover {
  background: rgb(255 255 255 / 18%);
}

.gb-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgb(4 15 13 / 96%) 0%, rgb(4 15 13 / 82%) 44%, rgb(8 33 64 / 48%) 100%),
    url("assets/images/gigabeam-field.jpg");
  background-position: center 54%;
  background-size: cover;
}

.gb-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--gb-green) 0 22%, var(--gb-yellow) 22% 44%, var(--gb-orange) 44% 66%, var(--gb-red) 66% 100%);
}

.gb-hero__grid {
  display: grid;
  min-height: 700px;
  align-items: center;
  gap: 44px;
  padding-block: 48px;
}

@media (min-width: 1024px) {
  .gb-hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}

.gb-eyebrow {
  display: inline-flex;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 10px 12px;
  text-transform: uppercase;
}

.gb-eyebrow--light {
  border: 1px solid rgb(255 255 255 / 25%);
  background: rgb(255 255 255 / 12%);
  color: white;
}

.gb-eyebrow--blue {
  color: var(--gb-blue);
}

.gb-eyebrow--yellow {
  color: var(--gb-yellow);
}

.gb-hero h1 {
  max-width: 820px;
  margin: 22px 0 0;
  color: white;
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
}

.gb-hero__copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.gb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gb-section {
  padding-block: 64px;
}

.gb-section--paper {
  background: var(--gb-paper);
}

.gb-section--dark {
  background: #081613;
  color: white;
}

.gb-section--navy {
  background: var(--gb-navy);
  color: white;
}

.gb-section--sand {
  background: #f5eddf;
}

.gb-split {
  display: grid;
  gap: 34px;
}

@media (min-width: 960px) {
  .gb-split {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: end;
  }
}

.gb-heading {
  margin: 12px 0 0;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.03;
}

.gb-copy {
  color: var(--gb-muted);
  font-size: 16px;
  line-height: 1.85;
}

.gb-copy--light {
  color: rgb(255 255 255 / 74%);
}

.gb-card-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 720px) {
  .gb-card-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .gb-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gb-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .gb-card-grid--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.gb-card {
  border: 1px solid rgb(12 21 19 / 10%);
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  padding: 22px;
}

.gb-card h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.gb-card p {
  margin: 16px 0 0;
  color: var(--gb-muted);
  font-size: 14px;
  line-height: 1.75;
}

.gb-section--dark .gb-card,
.gb-section--navy .gb-card {
  border-color: rgb(255 255 255 / 12%);
  background: rgb(255 255 255 / 7%);
  color: white;
}

.gb-section--dark .gb-card p,
.gb-section--navy .gb-card p {
  color: rgb(255 255 255 / 72%);
}

.gb-proof {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgb(12 21 19 / 10%);
  margin-top: 40px;
  padding-top: 32px;
}

@media (min-width: 760px) {
  .gb-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gb-proof strong {
  display: block;
  color: var(--gb-blue);
  font-size: 42px;
  font-weight: 950;
}

.gb-proof span {
  display: block;
  margin-top: 8px;
  color: var(--gb-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.gb-plan {
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(12 21 19 / 10%);
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  padding: 24px;
}

.gb-plan--featured {
  border-color: var(--gb-blue);
  box-shadow: 0 20px 50px rgb(0 121 168 / 16%);
}

.gb-plan h3 {
  margin: 18px 0 0;
  min-height: 54px;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.1;
}

.gb-plan .gb-copy {
  margin-block: 14px 0;
  min-height: 78px;
}

.gb-plan .gb-button {
  width: 100%;
  margin-top: auto;
}

.gb-plan__badge {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 8px;
  background: #e8f5ff;
  color: #07537c;
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  padding: 7px 10px;
  text-transform: uppercase;
}

.gb-price {
  border-block: 1px solid rgb(12 21 19 / 10%);
  margin-block: 24px;
  padding-block: 20px;
}

.gb-price strong {
  font-size: 52px;
  font-weight: 950;
}

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

.gb-list li {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  color: #25312d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.gb-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 7px;
  background: var(--gb-green);
  content: "";
}

.gb-feature-img {
  width: auto;
  height: 190px;
  object-fit: contain;
  margin-inline: auto;
}

.gb-market {
  display: grid;
  gap: 16px;
  border: 1px solid rgb(12 21 19 / 10%);
  border-radius: 8px;
  background: white;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%);
  padding: 20px;
}

@media (min-width: 700px) {
  .gb-market {
    grid-template-columns: 0.6fr 1fr;
  }
}

.gb-standard-img {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  margin-top: 32px;
}

.gb-standard-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gb-steps {
  display: grid;
  gap: 12px;
}

.gb-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 18px;
}

.gb-step strong {
  color: var(--gb-green);
  font-size: 26px;
  font-weight: 950;
}

.gb-contact-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 1024px) {
  .gb-contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.gb-contact-cards {
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
}

@media (min-width: 760px) {
  .gb-contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gb-contact-cards .gb-card:last-child {
  grid-column: span 1;
}

.gb-footer {
  background: #081613;
  color: white;
  padding-block: 42px;
}

.gb-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.gb-footer img {
  width: auto;
  height: 28px;
}

.gb-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgb(255 255 255 / 78%);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .gb-nav {
    display: none;
  }

  .gb-header__actions .gb-button--ghost {
    display: none;
  }

  .gb-hero {
    background-image:
      linear-gradient(180deg, rgb(4 15 13 / 96%) 0%, rgb(4 15 13 / 86%) 58%, rgb(8 33 64 / 55%) 100%),
      url("assets/images/gigabeam-field.jpg");
    background-position: 57% center;
  }
}
