:root {
  --gw-blue: #044568;
  --gw-blue-dark: #032f47;
  --gw-blue-soft: #174056;
  --gw-lime: #b4d33d;
  --gw-lime-dark: #a2c122;
  --gw-green: #21a249;
  --gw-mist: #eef6f7;
  --gw-line: rgba(4, 69, 104, .14);
  --gw-shadow: 0 28px 80px rgba(4, 69, 104, .16);
  --gw-radius: 8px;
  --bs-primary: var(--gw-blue);
  --bs-primary-rgb: 4, 69, 104;
  --bs-body-font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bs-body-color: var(--gw-blue);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  overflow-x: hidden;
}

a {
  color: var(--gw-blue);
}

.site-nav {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--gw-line);
  backdrop-filter: blur(18px);
}

.navbar-brand img {
  width: 168px;
  height: auto;
}

.nav-link {
  color: var(--gw-blue);
  font-size: .86rem;
  font-weight: 700;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gw-lime-dark);
}

.cart-badge {
  position: absolute;
  top: -.45rem;
  right: -.35rem;
  min-width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gw-lime);
  color: var(--gw-blue);
  font-size: .72rem;
  font-weight: 800;
  padding: 0 .28rem;
}

.cart-badge.is-empty {
  display: none;
}

.btn-gw {
  --bs-btn-bg: var(--gw-blue);
  --bs-btn-border-color: var(--gw-blue);
  --bs-btn-hover-bg: var(--gw-blue-dark);
  --bs-btn-hover-border-color: var(--gw-blue-dark);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0;
  padding: .82rem 1.18rem;
}

.btn-gw-lime {
  --bs-btn-bg: var(--gw-lime);
  --bs-btn-border-color: var(--gw-lime);
  --bs-btn-color: var(--gw-blue);
  --bs-btn-hover-bg: var(--gw-lime-dark);
  --bs-btn-hover-border-color: var(--gw-lime-dark);
  --bs-btn-hover-color: var(--gw-blue);
  border-radius: 999px;
  font-weight: 800;
  padding: .82rem 1.18rem;
}

.btn-outline-gw {
  --bs-btn-color: var(--gw-blue);
  --bs-btn-border-color: rgba(4, 69, 104, .28);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--gw-blue);
  --bs-btn-hover-border-color: var(--gw-blue);
  border-radius: 999px;
  font-weight: 700;
  padding: .82rem 1.18rem;
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 82% 26%, rgba(180, 211, 61, .42), transparent 18rem),
    linear-gradient(120deg, rgba(4, 69, 104, .96), rgba(3, 47, 71, .98) 50%, rgba(23, 64, 86, .94));
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(4, 69, 104, .78) 54%, rgba(3, 47, 71, .94) 100%),
    linear-gradient(0deg, rgba(3, 47, 71, .48), rgba(3, 47, 71, .12));
  z-index: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.hero::before {
  width: 56rem;
  height: 56rem;
  right: -22rem;
  bottom: -22rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.hero::after {
  width: 60%;
  height: 100%;
  right: 0;
  top: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(30deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: .42;
}

.hero .container,
.page-hero .container,
section {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gw-lime);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.7rem, 6.4vw, 5.7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .92;
}

.hero .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, .82);
  font-weight: 400;
}

.signal-board {
  background: rgba(255, 255, 255, .96);
  color: var(--gw-blue);
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
  border: 1px solid rgba(255, 255, 255, .36);
  overflow: hidden;
}

.signal-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  border-bottom: 1px solid var(--gw-line);
}

.signal-row:last-child {
  border-bottom: 0;
}

.signal-index {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--gw-mist);
  color: var(--gw-blue);
  font-weight: 800;
}

.section-pad {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-kicker {
  color: var(--gw-lime-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-title {
  color: var(--gw-blue);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.portfolio-marquee {
  overflow: hidden;
  margin-inline: calc(50% - 50vw);
  padding: 1rem 0;
}

.portfolio-rail {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: rail-left 92s linear infinite;
}

.portfolio-rail + .portfolio-rail {
  margin-top: 1rem;
  animation-name: rail-right;
}

.portfolio-marquee:hover .portfolio-rail {
  animation-play-state: paused;
}

.portfolio-frame {
  width: clamp(240px, 24vw, 520px);
  aspect-ratio: 16 / 10;
  background: rgba(4, 69, 104, .13);
  border: 16px solid rgba(4, 69, 104, .24);
  overflow: hidden;
  flex: 0 0 auto;
  position: relative;
}

.portfolio-frame.is-phone {
  width: clamp(120px, 10vw, 210px);
  aspect-ratio: 9 / 16;
}

.portfolio-frame a,
.portfolio-frame img,
.portfolio-frame video {
  width: 100%;
  height: 100%;
}

.portfolio-frame a {
  display: block;
}

.portfolio-frame img,
.portfolio-frame video {
  object-fit: cover;
  display: block;
}

.portfolio-frame figcaption {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  max-width: calc(100% - 1.5rem);
  padding: .4rem .65rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(4, 69, 104, .84);
  font-size: .78rem;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.portfolio-frame:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rail-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes rail-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.workflow-alert {
  display: none;
}

.workflow-alert.is-visible {
  display: block;
}

.text-balanced {
  max-width: 760px;
}

.gw-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  box-shadow: 0 18px 54px rgba(4, 69, 104, .08);
  height: 100%;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.gw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(180, 211, 61, .7);
  box-shadow: 0 24px 68px rgba(4, 69, 104, .14);
}

.icon-tile {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--gw-radius);
  background: linear-gradient(135deg, rgba(180, 211, 61, .18), rgba(4, 69, 104, .08));
  color: var(--gw-blue);
  font-size: 1.45rem;
}

.band-dark {
  color: #fff;
  background:
    linear-gradient(125deg, rgba(4, 69, 104, .98), rgba(23, 64, 86, .98)),
    linear-gradient(90deg, rgba(180, 211, 61, .14), transparent);
}

.band-dark .section-title,
.band-dark h2,
.band-dark h3,
.band-dark a:not(.btn) {
  color: #fff;
}

.band-dark p,
.band-dark li {
  color: rgba(255, 255, 255, .78);
}

.service-strip {
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.step {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 1rem;
}

.step-number {
  color: var(--gw-lime);
  font-weight: 800;
  font-size: 1.6rem;
}

.pricing-card {
  border: 1px solid var(--gw-line);
  border-radius: var(--gw-radius);
  background: #fff;
  padding: 1.5rem;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--gw-lime);
  box-shadow: var(--gw-shadow);
  transform: translateY(-10px);
}

.price {
  color: var(--gw-blue);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1;
}

.feature-list {
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: .65rem;
  margin-bottom: .72rem;
}

.feature-list i {
  color: var(--gw-lime-dark);
}

.page-hero {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(4, 69, 104, .98), rgba(3, 47, 71, .96)),
    radial-gradient(circle at 85% 20%, rgba(180, 211, 61, .34), transparent 20rem);
  padding: 8rem 0 4.8rem;
  position: relative;
  overflow: hidden;
}

.mini-stat {
  border-left: 3px solid var(--gw-lime);
  padding-left: 1rem;
}

.form-control,
.form-select {
  border-radius: var(--gw-radius);
  border-color: rgba(4, 69, 104, .18);
  padding: .9rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gw-lime);
  box-shadow: 0 0 0 .2rem rgba(180, 211, 61, .16);
}

.contact-panel {
  background: var(--gw-mist);
  border: 1px solid rgba(4, 69, 104, .08);
  border-radius: var(--gw-radius);
}

.cart-summary-sticky {
  position: sticky;
  top: 6rem;
}

.cart-table {
  border-top: 1px solid var(--gw-line);
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto minmax(150px, auto);
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gw-line);
}

.cart-quantity {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(4, 69, 104, .12);
}

.domain-search {
  background: #fff;
  border-radius: var(--gw-radius);
  box-shadow: var(--gw-shadow);
  padding: .6rem;
}

.domain-search .form-control {
  border: 0;
}

.domain-search .form-control:focus {
  box-shadow: none;
}

.domain-results-shell {
  max-width: 980px;
  margin: 2.5rem auto 0;
}

.domain-results-actions {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.domain-results-block {
  margin-top: 2.25rem;
}

.domain-results-block h2 {
  color: var(--gw-blue);
  font-size: clamp(1.65rem, 2.4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
}

.domain-result-list {
  display: grid;
  gap: .85rem;
}

.domain-result-card {
  display: grid;
  grid-template-columns: minmax(210px, 1.4fr) minmax(110px, .55fr) minmax(260px, 1.25fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(4, 69, 104, .14);
  border-left: 5px solid var(--gw-blue);
  border-radius: var(--gw-radius);
  background: #fff;
  box-shadow: 0 14px 42px rgba(4, 69, 104, .07);
}

.domain-result-main {
  min-width: 0;
}

.domain-name {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--gw-blue);
  font-size: 1.05rem;
}

.domain-status-dot {
  width: .75rem;
  height: .75rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #d84f58;
}

.domain-status-dot.is-available {
  background: #3f9464;
}

.domain-status-dot.is-warning {
  background: #e2ad37;
}

.domain-status {
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  font-weight: 600;
}

.domain-status.is-available {
  color: #3f9464;
}

.domain-status.is-unavailable {
  color: #d84f58;
}

.domain-price {
  color: var(--gw-blue);
  font-weight: 700;
}

.domain-hosting-select {
  min-height: 3rem;
  color: var(--gw-blue);
  border-color: rgba(4, 69, 104, .16);
  box-shadow: 0 8px 24px rgba(4, 69, 104, .06);
}

.domain-cart-action {
  text-align: right;
}

.domain-cart-button {
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: inline-grid;
  place-items: center;
}

.domain-results-more {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.legal-copy h2 {
  color: var(--gw-blue);
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 2rem;
}

.footer {
  background: var(--gw-blue-soft);
  color: rgba(255, 255, 255, .82);
  padding: 4rem 0 2rem;
}

.footer h3 {
  color: var(--gw-lime);
  font-size: .95rem;
  font-weight: 800;
}

.footer a {
  color: rgba(255, 255, 255, .82);
  display: block;
  font-size: .9rem;
  margin-bottom: .45rem;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-logo {
  width: 210px;
  max-width: 100%;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .18));
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.toast-container {
  z-index: 1080;
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 6.8rem;
  }

  .pricing-card.featured {
    transform: none;
  }

  .navbar-collapse {
    padding: 1rem 0;
  }

  .domain-result-card {
    grid-template-columns: 1fr;
  }

  .domain-cart-action {
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    width: 142px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 18vw, 4rem);
  }

  .signal-row,
  .step {
    grid-template-columns: 1fr;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-row .text-end {
    text-align: left !important;
  }
}
