:root {
  --g2c-black: #0A0A0A;
  --g2c-green: #14EE5D;
  --g2c-white: #FFFFFF;
  --g2c-muted: #A0A0A0;
  --g2c-carbon: #151515;
  --g2c-graphite: #232323;
  --g2c-border: rgba(255, 255, 255, 0.12);
  --g2c-green-soft: rgba(20, 238, 93, 0.13);
  --g2c-shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --g2c-radius: 18px;
  --g2c-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(20, 238, 93, 0.1), transparent 28rem),
    radial-gradient(circle at 88% 34%, rgba(255, 255, 255, 0.05), transparent 24rem),
    var(--g2c-black);
  color: var(--g2c-white);
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--g2c-green);
  color: #041108;
}

.container {
  width: min(var(--g2c-max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--g2c-border);
  background: rgba(10, 10, 10, 0.86);
  backdrop-filter: blur(18px);
}

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

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--g2c-white);
  text-decoration: none;
  min-width: 0;
}

.custom-logo {
  width: auto;
  height: 48px;
  max-width: min(260px, 48vw);
  object-fit: contain;
}

.brand-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  font-weight: 800;
  line-height: 1.05;
}

.brand-text small {
  color: var(--g2c-muted);
  font-size: 11px;
  font-weight: 500;
}

.primary-navigation {
  display: none;
}

.g2c-menu,
.footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.g2c-menu a,
.footer-menu a {
  color: var(--g2c-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.g2c-menu a:hover,
.g2c-menu a:focus,
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--g2c-green);
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid var(--g2c-border);
  border-radius: 999px;
  background: transparent;
  color: var(--g2c-white);
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

body.nav-open .primary-navigation {
  display: block;
  position: absolute;
  inset: 78px 16px auto;
  padding: 18px;
  border: 1px solid var(--g2c-border);
  border-radius: var(--g2c-radius);
  background: var(--g2c-carbon);
  box-shadow: var(--g2c-shadow);
}

body.nav-open .g2c-menu {
  align-items: flex-start;
  flex-direction: column;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 11vw, 150px) 0;
  border-bottom: 1px solid var(--g2c-border);
}

.section-has-network {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 36%),
    linear-gradient(160deg, rgba(20, 238, 93, 0.08), transparent 46%);
}

.network-layer {
  position: absolute;
  inset: 0;
  opacity: 0.44;
  background-image:
    radial-gradient(circle at 18% 34%, var(--g2c-green) 0 3px, transparent 4px),
    radial-gradient(circle at 42% 22%, var(--g2c-green) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 44%, var(--g2c-green) 0 3px, transparent 4px),
    linear-gradient(120deg, transparent 0 24%, rgba(20, 238, 93, 0.22) 24% 25%, transparent 25% 100%);
  animation: g2c-network-drift 12s ease-in-out infinite alternate;
}

@keyframes g2c-network-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(18px, -10px, 0); }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 38px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--g2c-green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Manrope, Inter, system-ui, sans-serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7.4vw, 84px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.6vw, 54px);
}

h3 {
  font-size: 22px;
}

.hero-text,
.entry-content p,
.feature-card p,
.glass-card p,
.ecommerce-band p,
.site-footer p {
  color: var(--g2c-muted);
  font-size: 16px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--g2c-border);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  border-color: var(--g2c-green);
}

.btn-primary {
  border-color: transparent;
  background: var(--g2c-green);
  color: #041108;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--g2c-white);
}

.hero-panel {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--g2c-border);
  border-radius: 28px;
  background: rgba(21, 21, 21, 0.72);
  box-shadow: var(--g2c-shadow);
}

.panel-node {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 238, 93, 0.48);
  border-radius: 999px;
  color: var(--g2c-green);
  background: rgba(10, 10, 10, 0.82);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(20, 238, 93, 0.14);
}

.panel-node.large {
  width: 118px;
  height: 118px;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.node-a { width: 68px; height: 68px; left: 16%; top: 18%; }
.node-b { width: 76px; height: 76px; right: 14%; top: 20%; }
.node-c { width: 90px; height: 90px; right: 20%; bottom: 14%; }

.panel-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g2c-green), transparent);
  transform-origin: center;
}

.panel-line.one {
  width: 54%;
  left: 22%;
  top: 38%;
  transform: rotate(-16deg);
}

.panel-line.two {
  width: 56%;
  left: 25%;
  bottom: 32%;
  transform: rotate(19deg);
}

.content-section,
.split-section,
.contact-cta {
  padding: clamp(64px, 9vw, 112px) 0;
  border-bottom: 1px solid var(--g2c-border);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.reason-card,
.testimonial-card,
.glass-card,
.entry-card {
  border: 1px solid var(--g2c-border);
  border-radius: var(--g2c-radius);
  background: rgba(21, 21, 21, 0.76);
  padding: 24px;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 238, 93, 0.72), transparent);
}

.card-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--g2c-green);
}

.split-grid {
  display: grid;
  gap: 22px;
}

.ecommerce-band {
  border: 1px solid var(--g2c-border);
  border-radius: 28px;
  padding: clamp(30px, 6vw, 62px);
  background:
    radial-gradient(circle at 80% 20%, rgba(20, 238, 93, 0.12), transparent 24rem),
    var(--g2c-carbon);
}

.reason-card {
  color: var(--g2c-muted);
  font-weight: 700;
}

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

.process-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--g2c-border);
  border-radius: var(--g2c-radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
  font-weight: 900;
}

.process-list span {
  color: var(--g2c-green);
}

.testimonial-card {
  margin: 0;
}

.testimonial-card p {
  color: var(--g2c-white);
  font-size: 19px;
}

.testimonial-card cite {
  color: var(--g2c-muted);
  font-style: normal;
}

.cta-inner {
  display: grid;
  gap: 22px;
  align-items: center;
  border: 1px solid var(--g2c-border);
  border-radius: 28px;
  padding: clamp(30px, 6vw, 62px);
  background:
    linear-gradient(140deg, rgba(20, 238, 93, 0.12), transparent 44%),
    var(--g2c-carbon);
}

.content-narrow {
  max-width: 780px;
}

.entry-content,
.entry-card {
  color: var(--g2c-white);
}

.entry-content a,
.entry-card a {
  color: var(--g2c-green);
}

.entry-meta {
  color: var(--g2c-muted);
}

.featured-media {
  margin: 24px 0;
}

.site-footer {
  padding: 60px 0 24px;
  background: #070707;
}

.footer-grid {
  display: grid;
  gap: 28px;
}

.footer-logo {
  height: 58px;
  width: auto;
  max-width: min(280px, 70vw);
  object-fit: contain;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 10px;
}

.site-footer a {
  color: var(--g2c-muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--g2c-green);
}

.footer-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
}

.footer-site-link {
  display: inline-block;
  margin-top: 12px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--g2c-border);
}

.not-found {
  min-height: 70vh;
}

@media (min-width: 760px) {
  .primary-navigation {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  }

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

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

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

  .split-grid,
  .cta-inner,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-grid > :first-child,
  .cta-inner > :first-child {
    grid-column: span 2;
  }

  .process-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .network-layer {
    animation: none;
  }

  .btn {
    transition: none;
  }
}
