:root {
  --bg: #050705;
  --bg-2: #080b08;
  --panel: rgba(8, 12, 8, 0.78);
  --panel-solid: #0b100b;
  --line: rgba(57, 255, 20, 0.28);
  --line-strong: rgba(57, 255, 20, 0.55);
  --neon: #39ff14;
  --neon-hot: #c8ff3d;
  --neon-dim: #163d12;
  --metal: #9aa3a0;
  --metal-hi: #e8eceb;
  --ink: #f4f7f4;
  --muted: #9aa89a;
  --danger: #ff4d4d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font-display: "Audiowide", "Orbitron", sans-serif;
  --font-head: "Orbitron", sans-serif;
  --font-word: "Exo 2", "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-mono: "Share Tech Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  min-height: 100%;
}

body {
  cursor: crosshair;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

.fx-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hex-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 78%);
  animation: gridDrift 28s linear infinite;
}

.hex-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      60deg,
      transparent 0 34px,
      rgba(57, 255, 20, 0.03) 34px 35px
    );
  opacity: 0.7;
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(57, 255, 20, 0.08), transparent 36%),
    radial-gradient(ellipse at 80% 80%, rgba(57, 255, 20, 0.05), transparent 32%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(0, 0, 0, 0.08) 2px 3px
  );
  opacity: 0.28;
  mix-blend-mode: multiply;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

#particleCanvas,
#radarCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cursor-glow {
  position: fixed;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(circle, rgba(57, 255, 20, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}

.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #020302;
  display: grid;
  place-items: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.boot.hide {
  opacity: 0;
  visibility: hidden;
}

.boot-panel {
  width: min(560px, 90vw);
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #0c140c, #050805);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.18);
  padding: 28px;
}

.boot-kicker {
  font-family: var(--font-mono);
  color: var(--neon);
  letter-spacing: 0.28em;
  font-size: 12px;
}

.boot-title {
  font-family: var(--font-word);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(28px, 6vw, 48px);
  margin: 8px 0 18px;
}

.boot-bar {
  height: 8px;
  background: #111;
  border: 1px solid var(--line);
  overflow: hidden;
}

.boot-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--neon-dim), var(--neon), var(--neon-hot));
  box-shadow: 0 0 16px var(--neon);
  animation: bootFill 1.6s ease forwards;
}

.boot-log {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  min-height: 18px;
}

.site {
  position: relative;
  z-index: 3;
}

.ticker {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: stretch;
  height: 36px;
  background: #040604;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.ticker-label {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  padding: 0 14px;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: #041204;
  background: var(--neon);
}

.ticker-track {
  overflow: hidden;
  flex: 1;
  display: flex;
  align-items: center;
}

.ticker-move {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.ticker-move span {
  font-family: var(--font-mono);
  font-size: 13px;
  padding: 0 28px;
  color: var(--muted);
}

.ticker-move b {
  color: var(--neon);
  font-weight: 400;
}

.ticker-move .up {
  color: var(--neon);
}

.nav {
  position: sticky;
  top: 36px;
  z-index: 29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 28px;
  background: rgba(5, 8, 5, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--neon);
  box-shadow: 0 0 16px rgba(57, 255, 20, 0.35);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--font-word);
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
}

.brand-copy small {
  font-family: var(--font-head);
  letter-spacing: 0.22em;
  font-size: 9px;
  color: var(--neon);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--ink);
  border-color: var(--line);
  box-shadow: inset 0 0 18px rgba(57, 255, 20, 0.08);
}

.nav-cta {
  display: flex;
  gap: 8px;
}

.icon-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, #161b16, #0a0e0a);
  color: var(--ink);
  min-height: 42px;
  padding: 0 16px;
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.25s ease;
}

.icon-btn {
  width: 42px;
  padding: 0;
}

.icon-btn img,
.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn::after,
.icon-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(57, 255, 20, 0.22) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shimmer 3.4s ease infinite;
}

.btn:hover,
.icon-btn:hover {
  color: #041204;
  background: var(--neon);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.4);
}

.btn.primary {
  background: var(--neon);
  color: #041204;
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.28);
}

.btn.primary:hover {
  background: var(--neon-hot);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #0a0e0a;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--neon);
}

.section {
  position: relative;
  padding: 92px 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-kicker {
  font-family: var(--font-head);
  font-size: 11px;
  letter-spacing: 0.34em;
  color: var(--neon);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-word);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 0.95;
  margin: 0 0 18px;
}

.section-lead {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  padding-top: 48px;
  min-height: calc(100vh - 96px);
}

.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.radar-ring,
.hex-spin,
.pulse-ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.radar-ring {
  width: min(92%, 560px);
  aspect-ratio: 1;
  border: 1px dashed rgba(57, 255, 20, 0.35);
  animation: spin 22s linear infinite;
}

.radar-ring::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1px solid rgba(57, 255, 20, 0.18);
}

.hex-spin {
  width: min(78%, 470px);
  aspect-ratio: 1;
  background:
    conic-gradient(from 0deg, transparent 0 70%, rgba(57, 255, 20, 0.55) 78%, transparent 86%);
  mask: radial-gradient(circle, transparent 62%, black 63% 70%, transparent 71%);
  animation: spin 8s linear infinite;
}

.pulse-ring {
  width: min(70%, 420px);
  aspect-ratio: 1;
  border: 1px solid var(--neon);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.25);
  animation: pulse 3.2s ease-in-out infinite;
}

.logo-bezel {
  width: min(72%, 430px);
  aspect-ratio: 1;
  padding: 8px;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, #2b2f2d, #d9dddb, #4a514d, #f3f5f4, #2b2f2d);
  box-shadow:
    0 0 0 1px var(--neon),
    0 0 50px rgba(57, 255, 20, 0.28),
    inset 0 0 18px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  animation: floaty 6s ease-in-out infinite;
}

.logo-bezel::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 62%, rgba(255, 255, 255, 0.55), transparent 78%);
  animation: spin 5s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.logo-bezel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  background: #000;
}

.video-chip {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: min(38%, 220px);
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: var(--shadow), 0 0 24px rgba(57, 255, 20, 0.18);
  z-index: 2;
  display: none;
}

.video-chip.show {
  display: block;
}

.video-chip video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-chip figcaption {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 8px;
  color: var(--neon);
  display: flex;
  justify-content: space-between;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 8px var(--danger);
  animation: blink 1.2s infinite;
  display: inline-block;
}

.quote-board {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(16, 22, 16, 0.9), rgba(6, 9, 6, 0.92));
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.quote-board::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--neon);
  border-left: 2px solid var(--neon);
}

.quote-board::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  border-bottom: 2px solid var(--neon);
  border-right: 2px solid var(--neon);
}

.quote-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.session {
  color: var(--neon);
}

.hero-title {
  font-family: var(--font-word);
  font-style: italic;
  font-weight: 800;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.88;
  margin: 14px 0 6px;
  letter-spacing: -0.02em;
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.18);
}

.symbol-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-family: var(--font-head);
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--neon);
}

.hero-copy {
  font-size: 20px;
  line-height: 1.45;
  color: var(--muted);
  margin: 16px 0 22px;
  max-width: 38ch;
}

.quote-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-bottom: 18px;
}

.quote-last {
  font-family: var(--font-mono);
  font-size: clamp(36px, 5vw, 54px);
  color: var(--neon);
  line-height: 1;
}

.quote-last small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 6px;
}

.chg {
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 18px;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 72px;
}

.bars i {
  display: block;
  flex: 1;
  background: linear-gradient(180deg, var(--neon-hot), var(--neon));
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
  transform-origin: bottom;
  animation: barRise 2.4s ease both infinite alternate;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 16px;
}

.ca-box {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  background: #050805;
}

.ca-box code {
  flex: 1;
  padding: 12px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--neon-hot);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-box button {
  border: 0;
  border-left: 1px solid var(--line);
  background: #101610;
  color: var(--ink);
  padding: 0 14px;
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  font-size: 10px;
  cursor: pointer;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.stat {
  border: 1px solid var(--line);
  padding: 10px;
  background: rgba(0, 0, 0, 0.28);
}

.stat b {
  display: block;
  font-family: var(--font-mono);
  color: var(--neon);
  font-size: 16px;
}

.stat span {
  font-family: var(--font-head);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-top: 36px;
}

.about-copy p {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.5;
}

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

.pillar {
  border: 1px solid var(--line);
  padding: 18px;
  background: var(--panel);
  min-height: 140px;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.pillar:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(57, 255, 20, 0.12);
}

.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  transform: translateX(-100%);
  animation: scanX 3.6s linear infinite;
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.14em;
  margin: 0 0 8px;
}

.pillar p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.index-panel {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px;
}

.index-panel h3 {
  font-family: var(--font-head);
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--neon);
}

.heat {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.heat div {
  min-height: 72px;
  display: grid;
  place-items: end start;
  padding: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  background: linear-gradient(180deg, rgba(57, 255, 20, 0.45), rgba(57, 255, 20, 0.08));
  border: 1px solid var(--line);
  animation: heatPulse 3s ease-in-out infinite alternate;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.step {
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 22px 18px;
  min-height: 250px;
  position: relative;
  transition: 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--neon);
}

.step-num {
  font-family: var(--font-word);
  font-style: italic;
  font-weight: 800;
  font-size: 42px;
  color: rgba(57, 255, 20, 0.22);
  line-height: 1;
}

.step img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 12px 0;
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.25));
}

.step h3 {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.chart-frame {
  border: 1px solid var(--line-strong);
  background: #000;
  box-shadow: var(--shadow), 0 0 40px rgba(57, 255, 20, 0.08);
  overflow: hidden;
}

.chart-chrome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #0b110b;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
}

.chart-frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
  background: #0d1117;
}

.chart-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 40px 20px;
  font-family: var(--font-mono);
  color: var(--muted);
}

.join {
  max-width: none;
  padding: 0;
}

.join-banner {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: end stretch;
  background: #000 center / cover no-repeat;
  overflow: hidden;
}

.join-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 5, 0.18) 20%, rgba(5, 7, 5, 0.82) 100%),
    radial-gradient(circle at 20% 40%, transparent 0 30%, rgba(0, 0, 0, 0.35) 100%);
}

.join-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 28px 64px;
}

.join-card {
  width: min(560px, 100%);
  border: 1px solid var(--line-strong);
  background: rgba(5, 8, 5, 0.72);
  backdrop-filter: blur(10px);
  padding: 28px;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.12);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: var(--neon);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s ease forwards;
}

.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.22s; }
.d3 { animation-delay: 0.34s; }
.d4 { animation-delay: 0.46s; }

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 0.2; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { transform: translateX(-120%); }
  40%, 100% { transform: translateX(120%); }
}

@keyframes bootFill {
  to { width: 100%; }
}

@keyframes blink {
  50% { opacity: 0.2; }
}

@keyframes barRise {
  from { transform: scaleY(0.35); }
  to { transform: scaleY(1); }
}

@keyframes heatPulse {
  from { filter: brightness(0.85); }
  to { filter: brightness(1.2); }
}

@keyframes scanX {
  to { transform: translateX(100%); }
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(56px); }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .steps,
  .quote-row,
  .stats {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #070a07;
    border-bottom: 1px solid var(--line);
    padding: 12px;
    flex-direction: column;
  }

  .nav.open .nav-links {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .join-banner {
    min-height: 560px;
    background-position: center top;
  }

  .chart-frame iframe {
    height: 460px;
  }
}

@media (max-width: 640px) {
  .nav,
  .section,
  .join-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

    .nav-cta .btn span {
      display: none;
    }

    .step .btn span {
      display: inline;
    }

  .pillars,
  .heat {
    grid-template-columns: 1fr 1fr;
  }
}
