/* ============================================================
   GIG ENERGY CORPORATION — Atlas-Inspired
   Black hero with data-viz + GIG palette + multi-section depth
   ============================================================ */

:root {
  --blue:          #1F1E89;
  --blue-deep:     #15145E;
  --blue-darker:   #000000;  /* swapped from #0A0A2E to true black for sectional bg */
  --blue-soft:     #2E2DA8;

  --green:         #8ACB00;
  --green-deep:    #6FA300;

  --red:           #BE1C29;

  --black:         #000000;  /* swapped from #060614 to true black */
  --ink:           #1A1A35;
  --ink-soft:      #4A4A6B;
  --ink-mute:      #8E8FAB;

  --cream:         #FAFAF7;
  --bg:            #FFFFFF;
  --bg-soft:       #F4F5F9;
  --line:          #E5E6F0;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:   'JetBrains Mono', 'SF Mono', Menlo, monospace;

  --container: 1240px;
  --pad-x: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============ Typography ============ */
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 22px;
}
.eyebrow.light { color: var(--green); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 0;
  max-width: 24ch;
}
.section-title.light { color: #fff; }

.section-head { margin-bottom: 64px; max-width: 720px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn svg { width: 13px; height: 13px; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn--solid {
  background: var(--green);
  color: var(--blue-darker);
  border-color: var(--green);
}
.btn--solid:hover {
  background: #fff;
  border-color: #fff;
}

/* ============ NAV ============ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s, padding 0.3s;
}
.nav.is-stuck {
  position: fixed;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.nav__logo {
  height: 42px;
  width: auto;
  display: block;
}
.brand-mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.brand-mark svg { width: 100%; height: 100%; }

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--serif);
  color: #fff;
  letter-spacing: -0.01em;
}
.brand-wordmark__name {
  font-weight: 600;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.brand-wordmark__divider {
  color: var(--green);
  font-weight: 300;
  font-size: 1.5rem;
}
.brand-wordmark__sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s;
}
.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { width: 100%; }

.nav__burger {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero__viz {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Vertical scrolling ticker columns */
.hero__ticker {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: rgba(46, 45, 168, 0.55);
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
}
.hero__ticker--col1 { left: 4%;  animation-duration: 28s; }
.hero__ticker--col2 { left: 32%; animation-duration: 36s; animation-delay: -8s; color: rgba(46, 45, 168, 0.45); }
.hero__ticker--col3 { right: 28%; animation-duration: 30s; animation-delay: -4s; color: rgba(46, 45, 168, 0.55); }
.hero__ticker--col4 { right: 5%;  animation-duration: 32s; animation-delay: -12s; color: rgba(138, 203, 0, 0.4); }

.hero__ticker span {
  display: inline-block;
}
.hero__ticker em { font-style: normal; color: rgba(255, 255, 255, 0.55); margin: 0 6px; }
.hero__ticker s { text-decoration: none; }
.hero__ticker s.up   { color: rgba(138, 203, 0, 0.7); }
.hero__ticker s.down { color: rgba(190, 28, 41, 0.7); }

@keyframes ticker-scroll {
  0%   { transform: translateY(-30%); }
  100% { transform: translateY(30%); }
}

.hero__chart {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 50%;
  z-index: 1;
}
.hero__chart-line {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: chart-draw 4s ease-out 0.5s forwards;
  filter: drop-shadow(0 0 8px currentColor);
}
.hero__chart-line--green {
  animation-delay: 1.2s;
  color: var(--green);
}
.hero__chart-line--blue {
  animation-delay: 0.5s;
  color: var(--blue-soft);
}
@keyframes chart-draw {
  to { stroke-dashoffset: 0; }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 100% at 50% 40%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.92) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero__headline h1 {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero__tagline {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  color: var(--green);
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.hero__support {
  max-width: 440px;
  text-align: right;
  margin-left: auto;
}
.hero__support p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
  text-align: right;
}

/* ============ SERVICES BAND ============ */
.services-band {
  background: var(--green);
  color: var(--blue-darker);
  padding: 60px 0;
  position: relative;
  z-index: 4;
}
.services-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.services-band__grid--six {
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
}
.services-band__grid--six .service-tile:nth-child(3n) { border-right: none; }
.services-band__grid--six .service-tile:nth-child(-n+3) { padding-bottom: 32px; border-bottom: 1px solid rgba(10, 10, 46, 0.18); }
.service-tile {
  padding: 24px 28px;
  text-align: center;
  border-right: 1px solid rgba(10, 10, 46, 0.18);
  transition: transform 0.3s;
  color: var(--blue-darker);
}
.service-tile:last-child { border-right: none; }
.service-tile:hover { transform: translateY(-6px); }
.service-tile__icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  color: var(--blue-darker);
}
.service-tile__icon svg { width: 100%; height: 100%; }
.service-tile h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  margin-bottom: 10px;
  color: var(--blue-darker);
}
.service-tile p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(10, 10, 46, 0.78);
  max-width: 260px;
  margin: 0 auto;
}

/* ============ ABOUT ============ */
.about { padding: 140px 0; background: var(--bg); }
.about__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.about__label { padding-top: 12px; }
.about__content { max-width: 780px; }

.about__lead {
  margin-top: 36px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink);
  font-weight: 400;
}
.about__content > p {
  margin-top: 22px;
  font-size: 1rem;
  line-height: 1.75;
}

.about__stats {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.about__stats > div {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.about__stats > div:last-child { border-right: none; padding-right: 0; }
.about__stats > div:not(:first-child) { padding-left: 24px; }

.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.stat__num sup { font-size: 0.6em; vertical-align: 0.4em; color: var(--green-deep); }
.stat__unit {
  font-size: 0.5em;
  margin-left: 4px;
  color: var(--ink-mute);
  font-weight: 400;
}
.stat__label {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ============ PROCESS (dark) ============ */
.process {
  padding: 140px 0;
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.5;
}
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.process-step {
  padding: 40px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.process-step:first-child { padding-left: 0; }
.process-step:last-child  { padding-right: 0; border-right: none; }
.process-step:hover { background: rgba(138, 203, 0, 0.04); }
.process-step__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.process-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.process-step p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
}

/* ============ TEAM ============ */
.team { padding: 140px 0; background: var(--bg-soft); }
.team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--bg);
  border: 1px solid var(--line);
  transition: all 0.35s;
  overflow: hidden;
}
.team-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31, 30, 137, 0.1);
}
.team-card > h3,
.team-card > p {
  padding-left: 24px;
  padding-right: 24px;
}
.team-card > h3 { padding-top: 4px; }
.team-card > .team-card__bio { padding-bottom: 20px; }

.team-card__expand {
  padding: 0 24px 28px;
  margin-top: -4px;
}
.team-card__expand summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding: 4px 0;
  transition: color 0.25s, gap 0.25s;
}
.team-card__expand summary::-webkit-details-marker { display: none; }
.team-card__expand summary::after {
  content: '+';
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s;
}
.team-card__expand[open] summary::after {
  content: '−';
}
.team-card__expand summary:hover { color: var(--blue); gap: 12px; }
.team-card__full-bio {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.team-card__portrait {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-soft) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.6rem;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.team-card__portrait::after {
  content: '';
  position: absolute;
  bottom: -4px; right: -4px;
  width: 24px; height: 24px;
  background: var(--red);
  z-index: 2;
}
.team-card__portrait--photo {
  background: transparent;
}
.team-card__portrait--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}
.team-card:hover .team-card__portrait--photo img {
  transform: scale(1.04);
}
.team-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.team-card__role {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 18px;
}
.team-card__bio {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============ INSIGHTS ============ */
.insights { padding: 140px 0; background: var(--bg); }
.insights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.insight {
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.insight__thumb {
  display: block;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.2;
}
.insight__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.insight__thumb:hover img { transform: scale(1.04); }

.insight__thumb--placeholder {
  background: linear-gradient(135deg, var(--bg-soft) 0%, #eef0f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.insight__thumb-content {
  text-align: center;
  color: var(--ink-mute);
}
.insight__thumb-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.4;
}
.insight__thumb-icon path:nth-of-type(1) { color: var(--blue); }
.insight__thumb-icon path:nth-of-type(2) { color: var(--green); }
.insight__thumb-icon line { color: var(--red); }
.insight__thumb-content p {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.insight__body {
  padding-top: 28px;
  border-top: 2px solid var(--blue);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.insight--has-thumb .insight__body { padding-top: 20px; }

.insight__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.insight__tag { color: var(--green-deep); }
.insight h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.insight p {
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}
.insight__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.25s, color 0.25s;
  width: fit-content;
}
.insight__link:hover { gap: 14px; color: var(--green-deep); }
.insight__link svg { width: 13px; height: 13px; }

/* ============ MARKET REPORT ============ */
.market-report {
  padding: 130px 0;
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  overflow: hidden;
}
.market-report::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(138, 203, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.market-report__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.market-report__lead {
  margin: 24px 0 32px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 50ch;
}
.market-report__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.market-report__features li {
  position: relative;
  padding-left: 24px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}
.market-report__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 14px; height: 2px;
  background: var(--green);
}

.market-report__signup {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.market-report__preview {
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  padding: 22px 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  overflow: hidden;
  cursor: default;
}
.market-report__preview img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 360px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 -20px 60px -10px rgba(0, 0, 0, 0.5);
}
.market-report__preview-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--green);
  color: var(--blue-darker);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
}

.market-report__form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 30px 30px;
}
.market-report__form-wrap h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.market-report__form-wrap > p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
}
.market-report__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.market-report__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.market-report__form label > span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.market-report__form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.market-report__form input::placeholder { color: rgba(255, 255, 255, 0.35); }
.market-report__form input:focus { border-color: var(--green); }
.market-report__form .btn { margin-top: 8px; justify-content: center; }
.market-report__success {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

/* ============ CONTACT ============ */
.contact {
  padding: 140px 0;
  background: var(--blue-darker);
  color: rgba(255, 255, 255, 0.78);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.contact .section-title.light { max-width: 18ch; }
.contact__lead {
  margin: 28px 0 48px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
}

.contact__blocks {
  display: grid;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}
.contact-item__offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.contact-item__label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.contact-item__value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.55;
}
.contact-item__value a:hover { color: var(--green); }

.contact__form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 42px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__form label > span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  color: #fff;
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.contact__form select option { background: var(--blue-darker); color: #fff; }
.contact__form textarea { resize: vertical; }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus { border-color: var(--green); }
.contact__form .btn { margin-top: 12px; align-self: flex-start; }
.form__success {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.62);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand .nav__brand { margin-bottom: 22px; }
.footer__tagline {
  font-family: var(--serif) !important;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem !important;
  color: var(--green) !important;
  margin-bottom: 14px !important;
}
.footer__brand p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
  max-width: 30ch;
}

.footer__col h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 22px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 0.9rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--green); }
.footer__col p { margin-bottom: 14px; }

.footer__bottom {
  background: rgba(0, 0, 0, 0.5);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--green); }

/* ============ INDUSTRIES ============ */
.industries { padding: 140px 0; background: var(--bg-soft); }
.industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.industry-tile {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s;
}
.industry-tile:hover { background: var(--bg-soft); }
.industry-tile__icon {
  width: 48px; height: 48px;
  color: var(--blue);
  margin-bottom: 22px;
}
.industry-tile__icon svg { width: 100%; height: 100%; }
.industry-tile h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}
.industry-tile p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.industries__clients {
  margin-top: 80px;
  text-align: center;
}
.industries__clients-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.industries__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
}
.industries__logos img {
  max-height: 48px;
  width: auto;
  margin: 0 auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}
.industries__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.client-logo-placeholder {
  padding: 22px 12px;
  border: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-mute);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ============ CERTIFICATIONS STRIP ============ */
.certifications {
  padding: 60px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.certifications__label {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
}
.certifications__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.cert-item {
  padding: 24px 22px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background 0.3s;
}
.cert-item:last-child { border-right: none; }
.cert-item:hover { background: var(--bg-soft); }
.cert-item__name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blue);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.cert-item__desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.4;
}

/* ============ COVERAGE MAP ============ */
.coverage { padding: 140px 0; background: var(--bg); }
.coverage .section-head { max-width: 820px; margin-bottom: 50px; }
.coverage__lead {
  margin-top: 24px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 700px;
}

.coverage__map {
  margin: 0 auto;
  max-width: 1000px;
  padding: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}
.coverage__map img {
  width: 100%;
  height: auto;
  display: block;
}

.coverage__legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 40px;
  margin-top: 36px;
  padding: 0 20px;
}
.coverage__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.coverage__swatch {
  width: 18px; height: 18px;
  display: inline-block;
  border: 1px solid var(--line);
}
.coverage__swatch--full { background: var(--blue);  border-color: var(--blue); }
.coverage__swatch--gas  { background: var(--green); border-color: var(--green); }
.coverage__swatch--elec { background: var(--red);   border-color: var(--red); }
.coverage__swatch--reg  { background: #fff;          border-color: var(--ink-mute); }

/* ============ Reveal-on-scroll ============ */
.reveal-prep {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.is-revealed { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__support { text-align: left; margin-left: 0; }
  .hero__support p { text-align: left; }
  .hero__ticker--col2, .hero__ticker--col3 { display: none; }
  .services-band__grid { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .service-tile:nth-child(2) { border-right: none; }
  .about__inner { grid-template-columns: 1fr; gap: 30px; }
  .about__stats { grid-template-columns: repeat(2, 1fr); }
  .about__stats > div:nth-child(2) { border-right: none; }
  .about__stats > div:nth-child(3), .about__stats > div:nth-child(4) {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--line);
  }
  .process__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3), .process-step:nth-child(4) {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .industries__grid { grid-template-columns: repeat(2, 1fr); }
  .industries__logos { grid-template-columns: repeat(3, 1fr); }
  .certifications__grid { grid-template-columns: repeat(2, 1fr); }
  .cert-item:nth-child(2) { border-right: none; }
  .cert-item:nth-child(1), .cert-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .services-band__grid--six { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .services-band__grid--six .service-tile:nth-child(3n) { border-right: 1px solid rgba(10, 10, 46, 0.18); }
  .services-band__grid--six .service-tile:nth-child(2n) { border-right: none; }
  .services-band__grid--six .service-tile:nth-child(-n+3) { padding-bottom: 24px; border-bottom: none; }
  .services-band__grid--six .service-tile:nth-child(-n+4) { border-bottom: 1px solid rgba(10, 10, 46, 0.18); padding-bottom: 30px; }
  .insights__grid { grid-template-columns: 1fr; gap: 50px; }
  .contact__inner { grid-template-columns: 1fr; gap: 50px; }
  .market-report__inner { grid-template-columns: 1fr; gap: 50px; }
  .market-report__features { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero__headline h1 { font-size: 2rem; }
  .services-band__grid { grid-template-columns: 1fr; }
  .service-tile { border-right: none !important; border-bottom: 1px solid rgba(10,10,46,0.15); padding: 30px 16px; }
  .service-tile:last-child { border-bottom: none; }
  .about__stats { grid-template-columns: 1fr; }
  .about__stats > div { padding: 24px 0 !important; border-right: none !important; border-bottom: 1px solid var(--line); border-top: none !important; margin: 0 !important; }
  .about__stats > div:last-child { border-bottom: none; }
  .process__grid, .team__grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; padding: 30px 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08); border-top: none !important; }
  .industries__grid { grid-template-columns: 1fr; }
  .industries__logos { grid-template-columns: repeat(2, 1fr); }
  .certifications__grid { grid-template-columns: 1fr; }
  .cert-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .cert-item:last-child { border-bottom: none; }
  .services-band__grid--six { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .contact-item__offices { grid-template-columns: 1fr; }
  .market-report__features { grid-template-columns: 1fr; }
  .market-report__signup { padding: 28px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; }
}
