@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Premium Cyber Theme Palette */
  --bg-base: #05070a;
  --bg-surface: rgba(13, 17, 23, 0.45);
  --bg-surface-solid: #0d1015;
  --border-color: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(85, 215, 242, 0.15);
  --ink: #f1f5f9;
  --muted: #94a3b8;
  --dim: #475569;

  /* HSL Accents for dynamic colors & glows */
  --cyan-h: 191;
  --cyan-s: 91%;
  --cyan-l: 60%;
  --cyan: hsl(var(--cyan-h), var(--cyan-s), var(--cyan-l));
  --cyan-glow: hsla(var(--cyan-h), var(--cyan-s), var(--cyan-l), 0.15);

  --violet-h: 263;
  --violet-s: 90%;
  --violet-l: 65%;
  --violet: hsl(var(--violet-h), var(--violet-s), var(--violet-l));
  --violet-glow: hsla(var(--violet-h), var(--violet-s), var(--violet-l), 0.15);

  --emerald-h: 142;
  --emerald-s: 72%;
  --emerald-l: 50%;
  --emerald: hsl(var(--emerald-h), var(--emerald-s), var(--emerald-l));
  --emerald-glow: hsla(var(--emerald-h), var(--emerald-s), var(--emerald-l), 0.15);

  --amber-h: 38;
  --amber-s: 95%;
  --amber-l: 55%;
  --amber: hsl(var(--amber-h), var(--amber-s), var(--amber-l));
  --amber-glow: hsla(var(--amber-h), var(--amber-s), var(--amber-l), 0.15);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--ink);
  font-family: var(--font-body);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.6;
}

/* Subtle tech grid background pattern */
body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 50% 30%, black 40%, transparent 95%);
}

/* Background animated elements */
#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  width: 40rem;
  aspect-ratio: 1;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), rgba(85, 215, 242, 0.04) 40%, transparent 70%);
  filter: blur(40px);
  transform: translate3d(calc(var(--mx, 50vw) - 50%), calc(var(--my, 50vh) - 50%), 0);
  transition: transform 120ms ease-out;
}

/* Topbar glassmorphism navigation */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 6vw, 6rem);
  border-bottom: 1px solid var(--border-color);
  background: rgba(5, 7, 10, 0.55);
  backdrop-filter: blur(24px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 1rem;
  aspect-ratio: 1;
  border-radius: 35%;
  background: conic-gradient(from 120deg, var(--cyan), var(--violet), var(--emerald), var(--cyan));
  box-shadow: 0 0 16px var(--cyan);
  animation: rotateMark 8s linear infinite;
}

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

.topbar nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.topbar nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.topbar nav a:hover {
  color: var(--ink);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3rem;
  padding: 8rem clamp(1.5rem, 6vw, 6rem) 4rem;
  overflow: hidden;
}

.hero-art-container {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.45;
  mask-image: radial-gradient(circle at 60% 40%, black 30%, transparent 80%);
}

.hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.65) contrast(1.1);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    linear-gradient(90deg, var(--bg-base) 20%, rgba(5, 7, 10, 0.7) 60%, var(--bg-base) 100%),
    linear-gradient(0deg, var(--bg-base) 5%, transparent 50%, var(--bg-base) 95%);
}

.hero-content {
  max-width: 800px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  color: var(--cyan);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.8rem;
  background: var(--cyan-glow);
  border: 1px solid rgba(85, 215, 242, 0.2);
  border-radius: 999px;
}

h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

h1 span {
  background: linear-gradient(135deg, var(--cyan) 10%, var(--violet) 50%, var(--emerald) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.25rem;
  padding: 0 1.8rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.button.primary {
  background: var(--ink);
  color: var(--bg-base);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
}

.button.primary:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.15);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Sidebar Terminal Console */
.hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.terminal {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: rgba(8, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  font-family: monospace;
  font-size: 0.8rem;
  height: 320px;
  display: flex;
  flex-direction: column;
}

.terminal-header {
  background: rgba(255, 255, 255, 0.03);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
}

.terminal-dots {
  display: flex;
  gap: 0.4rem;
}

.terminal-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
}

.terminal-dot.red { background: #ef4444; }
.terminal-dot.yellow { background: #eab308; }
.terminal-dot.green { background: #22c55e; }

.terminal-title {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
}

.terminal-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--emerald);
}

.status-pulse {
  width: 0.45rem;
  height: 0.45rem;
  background-color: var(--emerald);
  border-radius: 50%;
  animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.terminal-body {
  padding: 1rem;
  flex-grow: 1;
  overflow-y: auto;
  color: #c8d6e5;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  scrollbar-width: thin;
}

.terminal-line {
  line-height: 1.4;
  word-break: break-all;
}

.terminal-line.command::before {
  content: "$ ";
  color: var(--cyan);
}

.terminal-line.output {
  color: var(--muted);
}

.terminal-line.success {
  color: var(--emerald);
}

.terminal-line.warning {
  color: var(--amber);
}

/* Horizontal Infinite Marquee Ticker */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
}

.ticker-wrap {
  display: flex;
  width: max-content;
  gap: 3.5rem;
  padding: 1.1rem 0;
  animation: marquee 30s linear infinite;
}

.ticker-item {
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ticker-item::before {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background-color: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Section Grid Utility */
.section {
  padding: 6rem clamp(1.5rem, 6vw, 6rem);
}

.section-header {
  max-width: 800px;
  margin-bottom: 4rem;
}

h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 650px;
}

/* Market Pulse Section */
.pulse-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.pulse-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(16px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.pulse-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 10% 10%, var(--border-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pulse-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.pulse-card:hover::after {
  opacity: 1;
}

.pulse-card.cyan:hover { border-color: rgba(85, 215, 242, 0.3); }
.pulse-card.violet:hover { border-color: rgba(167, 139, 250, 0.3); }
.pulse-card.emerald:hover { border-color: rgba(52, 211, 153, 0.3); }

.pulse-title {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.pulse-value-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 1rem 0;
}

.pulse-value {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.pulse-unit {
  font-size: 1.1rem;
  color: var(--dim);
  font-weight: 600;
}

.pulse-bar-track {
  height: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.pulse-bar-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.pulse-card.cyan .pulse-bar-fill { background: var(--cyan); box-shadow: 0 0 10px rgba(85, 215, 242, 0.4); }
.pulse-card.violet .pulse-bar-fill { background: var(--violet); box-shadow: 0 0 10px rgba(167, 139, 250, 0.4); }
.pulse-card.emerald .pulse-bar-fill { background: var(--emerald); box-shadow: 0 0 10px rgba(52, 211, 153, 0.4); }

/* News Radar Filtering Controls */
.radar-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.radar-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.tab-btn.active {
  color: var(--cyan);
  background: var(--cyan-glow);
  border-color: rgba(85, 215, 242, 0.25);
  text-shadow: 0 0 12px rgba(85, 215, 242, 0.3);
}

.search-container {
  position: relative;
  width: min(100%, 300px);
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  font-family: inherit;
  color: var(--ink);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 14px var(--cyan-glow);
}

.search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9rem;
  height: 0.9rem;
  fill: var(--dim);
  pointer-events: none;
  transition: fill 0.2s ease;
}

.search-input:focus + .search-icon {
  fill: var(--cyan);
}

/* News Cards Grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.5rem;
}

.story {
  grid-column: span 4;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
  transform-style: preserve-3d;
}

/* Floating mouse glow highlight within cards */
.story::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story:hover::after {
  opacity: 1;
}

.story:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

/* Color themed borders on hover */
.story[data-category="agents"]:hover { border-color: rgba(85, 215, 242, 0.4); box-shadow: 0 20px 40px rgba(85, 215, 242, 0.08); }
.story[data-category="models"]:hover { border-color: rgba(167, 139, 250, 0.4); box-shadow: 0 20px 40px rgba(167, 139, 250, 0.08); }
.story[data-category="infrastructure"]:hover { border-color: rgba(52, 211, 153, 0.4); box-shadow: 0 20px 40px rgba(52, 211, 153, 0.08); }
.story[data-category="policy"]:hover { border-color: rgba(245, 158, 11, 0.4); box-shadow: 0 20px 40px rgba(245, 158, 11, 0.08); }

/* Layout variations */
.story.lead {
  grid-column: span 8;
  background: linear-gradient(135deg, rgba(17, 20, 27, 0.8) 0%, rgba(13, 17, 23, 0.45) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story.lead[data-category="agents"]:hover {
  border-color: rgba(85, 215, 242, 0.5);
  box-shadow: 0 25px 50px rgba(85, 215, 242, 0.12);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.story-index {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dim);
}

.story-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  border: 1px solid transparent;
}

.story[data-category="agents"] .story-tag { color: var(--cyan); background: var(--cyan-glow); border-color: rgba(85, 215, 242, 0.2); }
.story[data-category="models"] .story-tag { color: var(--violet); background: var(--violet-glow); border-color: rgba(167, 139, 250, 0.2); }
.story[data-category="infrastructure"] .story-tag { color: var(--emerald); background: var(--emerald-glow); border-color: rgba(52, 211, 153, 0.2); }
.story[data-category="policy"] .story-tag { color: var(--amber); background: var(--amber-glow); border-color: rgba(245, 158, 11, 0.2); }

.story-body {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.story h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.story.lead h3 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.story p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.story.lead p {
  font-size: 1.05rem;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-link {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease, text-shadow 0.2s ease;
}

.story[data-category="agents"] .story-link { color: var(--cyan); }
.story[data-category="models"] .story-link { color: var(--violet); }
.story[data-category="infrastructure"] .story-link { color: var(--emerald); }
.story[data-category="policy"] .story-link { color: var(--amber); }

.story-link:hover {
  gap: 0.65rem;
}

.story-link::after {
  content: "→";
  font-weight: 700;
}

.story-date {
  font-size: 0.8rem;
  color: var(--dim);
  font-weight: 500;
}

/* Empty State */
.news-empty-state {
  grid-column: span 12;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border-color);
  border-radius: 12px;
  color: var(--muted);
  font-family: var(--font-heading);
  display: none;
}

/* Signals Section */
.signals-section {
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.005) 0%, rgba(255, 255, 255, 0.015) 100%);
}

.signals-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.signals-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.signal-row {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.signal-row:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  transform: translateX(4px);
}

.signal-num {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  text-shadow: 0 0 10px var(--amber-glow);
  line-height: 1.3;
}

.signal-desc {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.5;
}

/* Footer styling */
footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dim);
  font-size: 0.85rem;
  font-weight: 500;
  background: #040508;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 8px var(--emerald);
}

/* Responsive Overrides */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 10rem;
    gap: 4rem;
  }

  .hero-aside {
    max-width: 600px;
    margin: 0 auto;
  }

  .story {
    grid-column: span 6;
  }

  .story.lead {
    grid-column: span 12;
  }
}

@media (max-width: 820px) {
  .topbar {
    padding: 1rem 1.5rem;
  }

  .topbar nav {
    gap: 1.25rem;
  }

  .section {
    padding: 4rem 1.5rem;
  }

  .signals-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .radar-controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero {
    padding-top: 12rem;
  }

  .story {
    grid-column: span 12;
    min-height: auto;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
