/* ==========================================================================
   Design System — extracted from reference
   ========================================================================== */

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

:root {
  /* Palette */
  --bg-primary: #0b0a12;
  --bg-secondary: #13111f;
  --bg-card: #1a1828;
  --bg-card-hover: #221f35;
  --surface-elevated: #1e1b2e;

  --text-primary: #f0eef6;
  --text-secondary: #9d99b0;
  --text-muted: #6b6580;
  --text-code: #c4b5fd;

  --accent-purple: #a78bfa;
  --accent-purple-bright: #c4b5fd;
  --accent-amber: #f6ad55;
  --accent-amber-dim: #c68a3c;
  --accent-green: #6ee7b7;

  --gradient-hero: linear-gradient(135deg, #a78bfa 0%, #f6ad55 50%, #0b0a12 100%);
  --gradient-purple-amber: linear-gradient(135deg, #7c3aed 0%, #f6ad55 100%);
  --gradient-glow: radial-gradient(ellipse at 30% 20%, rgba(167, 139, 250, 0.15) 0%, transparent 60%);
  --gradient-glow-amber: radial-gradient(ellipse at 70% 40%, rgba(246, 173, 85, 0.08) 0%, transparent 50%);

  --border-subtle: rgba(167, 139, 250, 0.12);
  --border-card: rgba(167, 139, 250, 0.08);
  --border-accent: rgba(167, 139, 250, 0.3);

  /* Typography */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;

  --leading-tight: 1.15;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Spacing (base unit: 8px) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 2px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow-purple: 0 0 40px rgba(167, 139, 250, 0.15);
  --shadow-glow-amber: 0 0 40px rgba(246, 173, 85, 0.1);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-normal: 300ms;
  --duration-slow: 600ms;
}


/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  overflow-x: hidden;
}

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

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

code, pre {
  font-family: var(--font-mono);
}


/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}


/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-5) 0;
  background: rgba(11, 10, 18, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
}

.nav__logo-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--gradient-purple-amber);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-normal) var(--ease-out);
}

.nav__links a:hover {
  color: var(--text-primary);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__github {
  color: var(--text-secondary);
  transition: color var(--duration-normal) var(--ease-out);
}

.nav__github:hover {
  color: var(--text-primary);
}


/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.btn--primary {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn--primary:hover {
  background: #fff;
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-accent);
}

.btn--outline:hover {
  border-color: var(--accent-purple);
  background: rgba(167, 139, 250, 0.08);
}

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: var(--space-2) var(--space-4);
}

.btn--ghost:hover {
  color: var(--text-primary);
}

.btn--download {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-card);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  justify-content: center;
  min-width: 180px;
}

.btn--download:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow-purple);
}

.btn--download .btn__icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

.btn--download .btn__label {
  flex: 1;
  text-align: left;
}

.btn--download .btn__sublabel {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 400;
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--space-32);
  padding-bottom: var(--space-20);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(167, 139, 250, 0.12) 0%, transparent 60%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(246, 173, 85, 0.06) 0%, transparent 50%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-accent);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--accent-purple-bright);
  margin-bottom: var(--space-8);
  background: rgba(167, 139, 250, 0.06);
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}

.hero__title-accent {
  background: var(--gradient-purple-amber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

/* Orbital visualization — animated rotating rings */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbital {
  position: relative;
  width: 500px;
  height: 500px;
}

.orbital-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.orbital-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.orbital-center-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 80px;
  height: 80px;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  box-shadow: var(--shadow-glow-purple);
}

.orbital-center-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-purple-bright);
}

/* Orbit tracks */
.orbit-track {
  position: absolute;
  inset: 0;
}

.orbit-track-1 {
  animation: spin-cw 60s linear infinite;
}

.orbit-track-2 {
  animation: spin-ccw 90s linear infinite;
}

.orbit-track-3 {
  animation: spin-cw 120s linear infinite;
}

/* Orbit items — positioned with CSS trig on circle radii */
.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
}

/* Inner orbit positions (r=80px) */
.orbit-inner-1 {
  transform: translate(
    calc(-50% + cos(45deg) * 80px),
    calc(-50% - sin(45deg) * 80px)
  );
}

.orbit-inner-2 {
  transform: translate(
    calc(-50% + cos(225deg) * 80px),
    calc(-50% - sin(225deg) * 80px)
  );
}

/* Middle orbit positions (r=150px) */
.orbit-mid-1 {
  transform: translate(
    calc(-50% + cos(10deg) * 150px),
    calc(-50% - sin(10deg) * 150px)
  );
}

.orbit-mid-2 {
  transform: translate(
    calc(-50% + cos(130deg) * 150px),
    calc(-50% - sin(130deg) * 150px)
  );
}

.orbit-mid-3 {
  transform: translate(
    calc(-50% + cos(250deg) * 150px),
    calc(-50% - sin(250deg) * 150px)
  );
}

/* Outer orbit positions (r=220px) */
.orbit-outer-1 {
  transform: translate(
    calc(-50% + cos(30deg) * 220px),
    calc(-50% - sin(30deg) * 220px)
  );
}

.orbit-outer-2 {
  transform: translate(
    calc(-50% + cos(160deg) * 220px),
    calc(-50% - sin(160deg) * 220px)
  );
}

.orbit-outer-3 {
  transform: translate(
    calc(-50% + cos(280deg) * 220px),
    calc(-50% - sin(280deg) * 220px)
  );
}

/* Counter-rotate node content to keep text upright */
.orbit-track-1 .orbit-item > span {
  animation: spin-ccw 60s linear infinite;
}

.orbit-track-2 .orbit-item > span {
  animation: spin-cw 90s linear infinite;
}

.orbit-track-3 .orbit-item > span {
  animation: spin-ccw 120s linear infinite;
}

.orbit-node {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(4px);
}

.node-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.node-dot--purple { background: var(--accent-purple); }
.node-dot--amber  { background: var(--accent-amber); }
.node-dot--green  { background: var(--accent-green); }

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

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


/* ==========================================================================
   Stats bar (logos/badges row)
   ========================================================================== */

.stats-bar {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat__value {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat__value--purple { color: var(--accent-purple-bright); }
.stat__value--amber  { color: var(--accent-amber); }
.stat__value--green  { color: var(--accent-green); }

.stat__label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--space-1);
}


/* ==========================================================================
   Section: Features
   ========================================================================== */

.section {
  padding: var(--space-24) 0;
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-16);
}

.section__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-purple);
  margin-bottom: var(--space-4);
}

.section__title {
  font-size: var(--text-3xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section__desc {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow-purple);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  font-size: var(--text-xl);
}

.feature-card__icon--purple {
  background: rgba(167, 139, 250, 0.12);
  color: var(--accent-purple-bright);
}

.feature-card__icon--amber {
  background: rgba(246, 173, 85, 0.1);
  color: var(--accent-amber);
}

.feature-card__icon--green {
  background: rgba(110, 231, 183, 0.08);
  color: var(--accent-green);
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* ==========================================================================
   Section: Pipeline
   ========================================================================== */

.pipeline {
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-card);
  padding: var(--space-12);
  margin-top: var(--space-6);
  overflow: hidden;
}

.pipeline__flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
}

/* Connecting line — anchored to the vertical center of the dot row (24px = half of 48px dot height) */
.pipeline__flow::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 48px;
  right: 48px;
  height: 2px;
  background: linear-gradient(to right, var(--accent-purple), var(--accent-amber), var(--accent-green));
  opacity: 0.35;
  z-index: 0;
}

.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  position: relative;
  z-index: 1;
  flex: 1;
}

.pipeline-step__dot {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 700;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
}

.pipeline-step__dot--active {
  background: rgba(167, 139, 250, 0.15);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-glow-purple);
}

.pipeline-step__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-align: center;
  color: var(--text-secondary);
}

.pipeline-step__sub {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}


/* ==========================================================================
   Section: Install / Download
   ========================================================================== */

.install {
  position: relative;
}

.install__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.install__downloads {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.download-group__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-3);
}

.download-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.install__source {
  margin-top: var(--space-6);
}

.code-block {
  background: var(--bg-secondary);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.code-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-card);
  background: rgba(167, 139, 250, 0.03);
}

.code-block__title {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.code-block__copy {
  font-size: var(--text-xs);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color var(--duration-normal);
}

.code-block__copy:hover {
  color: var(--accent-purple-bright);
}

.code-block__body {
  padding: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  color: var(--text-primary);
  overflow-x: auto;
}

.code-block__body .comment {
  color: var(--text-muted);
}

.code-block__body .string {
  color: var(--accent-green);
}

.code-block__body .key {
  color: var(--accent-purple-bright);
}

.code-block__body .cmd {
  color: var(--accent-amber);
}


/* ==========================================================================
   Section: Claude Code Setup
   ========================================================================== */

.setup__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.setup-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.setup-step__number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--accent-purple-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.setup-step__content {
  flex: 1;
}

.setup-step__title {
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.setup-step__desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-3);
}


/* ==========================================================================
   Section: MCP Tools Table
   ========================================================================== */

.tools-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: var(--space-8);
}

.tools-table th {
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border-subtle);
}

.tools-table td {
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--border-card);
  vertical-align: top;
}

.tools-table tr:last-child td {
  border-bottom: none;
}

.tools-table code {
  font-size: var(--text-xs);
  color: var(--text-code);
  background: rgba(167, 139, 250, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.tools-table .td-desc {
  color: var(--text-secondary);
}

.tools-table .td-models {
  color: var(--text-muted);
  font-size: var(--text-xs);
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: var(--space-12);
}

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

.footer__left {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer__logo {
  font-weight: 700;
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: var(--space-6);
  list-style: none;
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: color var(--duration-normal);
}

.footer__links a:hover {
  color: var(--text-primary);
}


/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .install__grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-10);
  }

  .pipeline__flow {
    flex-direction: column;
  }

  .pipeline__flow::before {
    top: 24px;
    bottom: 24px;
    left: 50%;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(to bottom, var(--accent-purple), var(--accent-amber));
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: var(--text-3xl);
  }

  .section__title {
    font-size: var(--text-2xl);
  }

  .nav__links {
    display: none;
  }

  .download-buttons {
    grid-template-columns: 1fr;
  }
}
