/* ===== HYPERWIRED — site styles (standalone landing) ===== */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #050210;
  color: #e8e2ff;
  font-family: 'VT323', monospace;
  overflow-x: hidden;
}

.pixelated, .pixelated * {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: none;
  font-smooth: never;
}
.no-select { user-select: none; -webkit-user-select: none; }

/* Shared keyframes */
@keyframes hover-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes pulse-glow { 0%,100% { filter: brightness(1); } 50% { filter: brightness(1.4); } }
@keyframes c2-flick { 0%,97%,100% { opacity: 1; } 98% { opacity: 0.85; } 99% { opacity: 0.95; } }
@keyframes blink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0.2; } }
@keyframes warning-flash { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0.3; } }

/* CRT scanlines */
.scanlines {
  position: absolute; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.18) 3px, rgba(0,0,0,0.18) 4px
  );
  mix-blend-mode: multiply;
  z-index: 60;
}

/* ===== Layout ===== */
.site {
  --bg:        #050210;
  --bg-2:      #08041a;
  --bg-3:      #1a0a3a;
  --cyan:      #5ef0ff;
  --magenta:   #ff3df0;
  --yellow:    #ffd23f;
  --green:     #a3ff3f;
  --red:       #ff3d6e;
  --ink:       #e8e2ff;
  font-family: 'Press Start 2P', monospace;
  background: var(--bg);
  color: var(--ink);
}

/* fullscreen hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 50%, #1a0a3a 0%, #08041a 70%, #050210 100%);
  cursor: crosshair;
}
.hero canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}

/* Top nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(5,2,16,0.85), rgba(5,2,16,0));
  backdrop-filter: blur(2px);
}
.nav.scrolled {
  background: rgba(5,2,16,0.92);
  border-bottom: 2px solid rgba(94,240,255,0.2);
}
.nav-logo {
  font-family: 'Press Start 2P', monospace;
  font-size: 22px;
  color: var(--cyan);
  letter-spacing: 3px;
  text-shadow: 3px 3px 0 var(--magenta);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--ink);
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: color 120ms;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a.btn { color: var(--bg-2); }
.nav-links a.btn:hover { color: var(--bg-2); }
.btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  padding: 12px 18px;
  background: var(--yellow);
  color: var(--bg-2);
  border: none;
  cursor: pointer;
  letter-spacing: 2px;
  box-shadow: 4px 4px 0 #8a6a00;
  text-transform: uppercase;
  transition: transform 80ms, box-shadow 80ms;
  text-decoration: none;
  display: inline-block;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #8a6a00; }
.btn:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 #8a6a00; }
.btn--cyan { background: var(--cyan); color: var(--bg-2); box-shadow: 4px 4px 0 #1a4a6a; }
.btn--cyan:hover { box-shadow: 5px 5px 0 #1a4a6a; }
.btn--cyan:active { box-shadow: 2px 2px 0 #1a4a6a; }
.btn--ghost {
  background: transparent;
  color: var(--magenta);
  border: 3px solid var(--magenta);
  box-shadow: 4px 4px 0 #5a0c54;
}
.btn--ghost:hover { box-shadow: 5px 5px 0 #5a0c54; }
.btn--magenta { background: var(--magenta); color: var(--bg-2); box-shadow: 4px 4px 0 #5a0c54, 0 0 18px rgba(255,61,240,0.4); }
.btn--magenta:hover { box-shadow: 5px 5px 0 #5a0c54, 0 0 28px rgba(255,61,240,0.6); }
.btn--magenta:active { box-shadow: 2px 2px 0 #5a0c54; }
.btn--big { font-size: 14px; padding: 18px 24px; }
.btn--xl  { font-size: 18px; padding: 24px 42px; box-shadow: 8px 8px 0 #8a6a00, 0 0 40px rgba(255,210,63,0.6); }
.btn--xl:hover { box-shadow: 9px 9px 0 #8a6a00, 0 0 50px rgba(255,210,63,0.7); }

/* Title overlay (hero) */
.hero-title {
  position: absolute;
  left: 40px; top: 110px;
  z-index: 8;
  max-width: 520px;
  pointer-events: none;
}
.hero-title .tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--yellow);
  letter-spacing: 4px;
  margin-bottom: 18px;
  text-shadow: 0 0 8px var(--yellow);
}
.hero-title h1 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  margin: 0;
  color: #fff;
  text-shadow: 5px 5px 0 var(--magenta), 10px 10px 0 #5a0c54, 0 0 40px rgba(255,61,240,0.4);
}
.hero-title h1 .alt {
  color: var(--cyan);
  text-shadow: 5px 5px 0 #1a4a6a, 10px 10px 0 var(--bg-2);
}
.hero-title .lede {
  font-family: 'VT323', monospace;
  font-size: 24px;
  margin-top: 22px;
  line-height: 1.3;
  text-shadow: 0 0 4px var(--cyan);
}
.hero-title .lede .em { color: var(--yellow); }
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  pointer-events: auto;
}
.hw-hero-row {
  display: flex;
  gap: 14px;
}

/* HUD overlays (hero) */
.hud-bottom-left, .hud-top-right, .hud-bottom-right {
  position: absolute;
  z-index: 30;
  font-family: 'Press Start 2P', monospace;
  pointer-events: none;
}
.hud-bottom-left { left: 40px; bottom: 30px; display: flex; flex-direction: column; gap: 10px; }
.hud-top-right   { right: 40px; top: 110px; text-align: right; }
.hud-bottom-right{ right: 40px; bottom: 30px; text-align: right; }
.hud-bar {
  display: block;
}
.hud-label {
  font-size: 9px;
  letter-spacing: 3px;
  margin-bottom: 4px;
  text-shadow: 0 0 6px currentColor;
}
.hud-track {
  width: 280px;
  background: rgba(8,4,26,0.7);
  border: 3px solid currentColor;
}
.hud-track > div {
  height: 100%;
  transition: width 100ms;
}
.hud-track--energy   { height: 14px; }
.hud-track--slowmo   { height: 10px; }
.hud-track--mega     { height: 10px; }
.hud-status {
  font-family: 'VT323', monospace;
  font-size: 18px;
  text-shadow: 0 0 4px currentColor;
}
.hud-score {
  font-size: 28px;
  color: #fff;
  text-shadow: 3px 3px 0 var(--magenta);
}
.hud-controls {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--cyan);
  text-shadow: 0 0 4px var(--cyan);
  line-height: 1.3;
}
.hud-controls kbd {
  font-family: 'VT323', monospace;
  color: var(--yellow);
  background: none;
  border: none;
  padding: 0;
  font-size: 16px;
}
.hud-controls .key-pink { color: var(--magenta); }
.hud-controls .key-green{ color: var(--green); }

/* Boot overlay */
.boot {
  position: absolute; inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  font-family: 'VT323', monospace;
  font-size: clamp(16px, 1.6vw, 26px);
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  line-height: 1.4;
}
.boot pre { margin: 0; min-width: 560px; }
.boot .cursor { animation: blink 0.5s steps(2) infinite; }

/* mobile / no-keyboard hint */
.touch-warn {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 90;
  padding: 28px 32px;
  border: 3px solid var(--yellow);
  background: rgba(8,4,26,0.92);
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: var(--yellow);
  letter-spacing: 2px;
  line-height: 1.6;
  display: none;
}
.touch-warn .sub {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--ink);
  margin-top: 12px;
  letter-spacing: 0;
}
@media (hover: none) and (pointer: coarse) {
  .touch-warn { display: block; }
  .hud-bottom-right, .hud-bottom-left { display: none; }
}

/* ============== SECTIONS ============== */
section { position: relative; }
.sec {
  padding: 90px 40px;
}
.sec--gradient { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg-3) 100%); }
.sec--solid    { background: var(--bg-2); }
.sec--invert   { background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg-2) 100%); }
.sec-eyebrow {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 18px;
}
.sec-title {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(36px, 4.5vw, 64px);
  color: #fff;
  text-align: center;
  margin: 0 0 56px;
  line-height: 1.05;
  letter-spacing: -1px;
}
.sec-title .alt-cyan { color: var(--cyan); text-shadow: 4px 4px 0 #1a4a6a, 8px 8px 0 var(--bg-2); }
.sec-title .alt-yellow { color: var(--yellow); text-shadow: 4px 4px 0 #8a6a00, 8px 8px 0 var(--bg-2); }
.sec-title .alt-magenta { color: var(--magenta); text-shadow: 4px 4px 0 #5a0c54, 8px 8px 0 var(--bg-2); }
.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* loop cards */
.loop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.loop-card {
  border: 4px solid;
  background: rgba(8,4,26,0.7);
  padding: 32px 24px;
  position: relative;
}
.loop-card .num {
  font-family: 'Press Start 2P', monospace;
  font-size: 56px;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 var(--bg-2);
  opacity: 0.6;
}
.loop-card .t {
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  color: #fff;
  letter-spacing: 2px;
  margin-top: 14px;
}
.loop-card .d {
  font-family: 'VT323', monospace;
  font-size: 20px;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 14px;
  white-space: pre-line;
}

/* ships section */
.ships-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.ships-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ship-card {
  border: 3px solid var(--cyan);
  background: rgba(8,4,26,0.6);
  padding: 16px;
  cursor: pointer;
  box-shadow: 4px 4px 0 #1a4a6a;
  display: flex; align-items: center; gap: 12px;
  transition: transform 80ms;
}
.ship-card:hover { transform: translate(-1px, -1px); }
.ship-card.active {
  border-color: var(--yellow);
  background: rgba(255,210,63,0.1);
  box-shadow: 6px 6px 0 #8a6a00, 0 0 20px rgba(255,210,63,0.4);
}
.ship-card .name {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 1px;
}
.ship-card.active .name { color: var(--yellow); }
.ship-card .tag {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--magenta);
}
.ship-preview {
  border: 4px solid var(--yellow);
  background: rgba(8,4,26,0.85);
  padding: 40px 36px;
  position: relative;
  box-shadow: 8px 8px 0 #8a6a00, 0 0 40px rgba(255,210,63,0.3);
  min-height: 380px;
}
.ship-preview .name {
  font-family: 'Press Start 2P', monospace;
  font-size: 22px;
  color: var(--yellow);
  letter-spacing: 2px;
  text-shadow: 3px 3px 0 #8a6a00;
  margin-bottom: 8px;
}
.ship-preview .tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--magenta);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.ship-preview .stat {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--cyan);
  margin-bottom: 14px;
  text-shadow: 0 0 4px var(--cyan);
}
.ship-preview .desc {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
}
.ship-preview .index {
  position: absolute; top: 16px; right: 16px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 2px;
}

/* mods grid */
.mods-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mod-card {
  border: 3px solid;
  background: rgba(8,4,26,0.8);
  padding: 18px;
  text-align: center;
  transition: transform 80ms;
}
.mod-card:hover { transform: translate(-1px, -1px); }
.mod-card .icon {
  font-size: 38px;
  margin-bottom: 10px;
  text-shadow: 0 0 12px currentColor;
}
.mod-card .tier {
  font-family: 'VT323', monospace;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.mod-card .name {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #fff;
  letter-spacing: 1px;
}

/* boss */
.boss-warning {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 10px 0;
  background: repeating-linear-gradient(45deg, rgba(255,61,61,0.15) 0 20px, transparent 20px 40px);
  border-bottom: 2px solid var(--red);
  text-align: center;
  animation: warning-flash 1.2s steps(2) infinite;
  z-index: 2;
}
.boss-warning span {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--red);
  letter-spacing: 6px;
  text-shadow: 0 0 12px var(--red);
}

/* Boss section decorative elements */
.boss-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 40px auto 0;
}
.boss-stat {
  text-align: center;
  padding: 20px 16px;
  border: 1px solid rgba(255,61,61,0.2);
  border-radius: 6px;
  background: rgba(255,61,61,0.04);
}
.boss-stat .val {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--red);
  text-shadow: 0 0 16px rgba(255,61,61,0.5);
  display: block;
  margin-bottom: 8px;
}
.boss-stat .lbl {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.boss-flavor {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 36px auto 0;
  padding: 24px;
  border: 1px dashed rgba(255,61,61,0.2);
  border-radius: 8px;
  background: rgba(255,61,61,0.02);
}
.boss-flavor .line {
  font-family: 'VT323', monospace;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
}
.boss-flavor .line .hl {
  color: var(--red);
  text-shadow: 0 0 6px rgba(255,61,61,0.4);
}
.boss-flavor .line .hl-y {
  color: var(--yellow);
  text-shadow: 0 0 6px rgba(255,210,63,0.4);
}
.boss-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 40px 60px;
}
.boss-art {
  display: flex;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 0 40px var(--magenta));
  animation: hover-y 3s ease-in-out infinite;
}
.boss-hp {
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  width: 360px; padding: 8px;
  background: rgba(0,0,0,0.7);
  border: 3px solid var(--red);
}
.boss-hp .label {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: var(--red);
  margin-bottom: 4px;
  letter-spacing: 2px;
}
.boss-hp .bar {
  height: 12px;
  background: rgba(255,255,255,0.1);
}
.boss-hp .bar > div {
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  box-shadow: 0 0 8px var(--magenta);
}

/* media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.media-card {
  border: 3px solid;
  background: rgba(8,4,26,0.7);
  position: relative;
  cursor: pointer;
  transition: transform 80ms;
}
.media-card:hover { transform: translate(-1px, -1px); }
.media-card .tile {
  aspect-ratio: 16 / 9;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 2px dashed currentColor;
}
.media-card .play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  opacity: 0.85;
}
.media-card .ts {
  position: absolute;
  right: 8px; bottom: 8px;
  background: rgba(0,0,0,0.7);
  padding: 2px 6px;
  font-family: 'VT323', monospace;
  font-size: 14px;
}
.media-card .meta {
  padding: 14px;
}
.media-card .meta .title {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.media-card .meta .sub {
  font-family: 'VT323', monospace;
  font-size: 17px;
  color: var(--ink);
}

/* roadmap */
.roadmap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.roadmap::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%; right: 6%;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--cyan) 0 12px, transparent 12px 24px);
}
.road-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.road-step .dot {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border: 4px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  color: var(--bg-2);
}
.road-step .date {
  font-family: 'VT323', monospace;
  font-size: 22px;
  margin-bottom: 8px;
}
.road-step .title {
  font-family: 'Press Start 2P', monospace;
  font-size: 12px;
  color: #fff;
  letter-spacing: 2px;
}

/* CTA */
.cta {
  padding: 100px 40px;
  background: var(--bg-2);
  text-align: center;
  border-top: 4px dashed var(--magenta);
  position: relative;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 50% at 50% 50%, rgba(255,210,63,0.15), transparent 70%);
  pointer-events: none;
}
.cta .warn {
  font-family: 'VT323', monospace;
  font-size: 28px;
  color: var(--magenta);
  letter-spacing: 6px;
  margin-bottom: 18px;
  text-shadow: 0 0 10px var(--magenta);
  position: relative;
}
.cta h2 {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(40px, 5vw, 64px);
  color: #fff;
  margin: 0 0 36px;
  line-height: 1.1;
  text-shadow: 5px 5px 0 var(--magenta), 10px 10px 0 #5a0c54;
  position: relative;
}
.cta h2 .alt { color: var(--yellow); text-shadow: 5px 5px 0 #8a6a00, 10px 10px 0 var(--bg-2); }
.cta .credits {
  margin-top: 36px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--cyan);
  letter-spacing: 3px;
  opacity: 0.7;
  position: relative;
}

/* footer */
.foot {
  padding: 50px 40px 30px;
  background: var(--bg);
  border-top: 4px dashed var(--cyan);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto;
}
.foot h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--cyan);
  letter-spacing: 3px;
  text-shadow: 3px 3px 0 var(--magenta);
  margin: 0 0 14px;
}
.foot p, .foot .links {
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.foot small {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}
.foot .yellow { color: var(--yellow); }
.foot .pink   { color: var(--magenta); }
.foot .cyan   { color: var(--cyan); }
.foot a { color: var(--cyan); text-decoration: none; transition: color 120ms; }
.foot a:hover { color: var(--yellow); }
.foot-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px dashed #1a4a6a;
  display: flex;
  justify-content: space-between;
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--cyan);
  opacity: 0.7;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .ships-grid { grid-template-columns: 1fr; }
  .boss-grid { grid-template-columns: 1fr; gap: 40px; }
  .mods-grid { grid-template-columns: repeat(4, 1fr); }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links a { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav-logo { font-size: 16px; }
  .sec { padding: 70px 18px; }
  .hero-title { left: 18px; right: 18px; top: 90px; max-width: none; }
  .hero-title h1 { font-size: 48px; }
  .hero-title .lede { font-size: 18px; }
  .hud-bottom-left, .hud-top-right { display: none; }
  .loop-grid { grid-template-columns: 1fr; }
  .ships-picker { grid-template-columns: 1fr; }
  .mods-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
  .roadmap { flex-direction: column; gap: 30px; }
  .roadmap::before { display: none; }
  .foot-grid, .foot-bottom { flex-direction: column; }
}
