.site-header {
  background: #ffffff;
}

#content {
  min-height: 60vh;
}

:root {
  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --color-surface: #fdfdfd;
  --color-surface-container: #f7fafc;
  --color-surface-container-low: #f8fafc;
  --color-surface-container-lowest: #ffffff;
  --color-surface-container-highest: #edf2f7;
  --color-primary: #00ffff;
  --color-primary-container: #80ebff;
  --color-on-primary: #9527f5;
  --color-secondary: #9527f5;
  --color-on-surface: #9527f5;
  --color-outline-variant: #e2e8f0;
}

body {
  font-family: var(--font-sans);
  background: var(--color-surface);
  color: var(--color-on-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
}

::selection {
  background: rgba(149, 39, 245, 0.2);
}

.text-display-lg {
  font-size: 3rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-display-md {
  font-size: 2.25rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-headline-lg {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.text-body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 600;
}

.text-label-md {
  font-size: 0.875rem;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@media (min-width: 768px) {
  .text-display-lg {
    font-size: 4.5rem;
  }

  .text-display-md {
    font-size: 3rem;
  }

  .text-headline-lg {
    font-size: 2.25rem;
  }

  .text-body-lg {
    font-size: 1.25rem;
  }
}

.glass {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 9999px;
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-primary-container));
  color: var(--color-on-primary);
  font-weight: 600;
  transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
  box-shadow: 0 12px 24px rgba(0, 255, 255, 0.12);
  cursor: pointer;
  text-decoration: none;
  border: 0;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 9999px;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
  font-weight: 600;
  transition: transform 150ms ease, background-color 150ms ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(149, 39, 245, 0.05);
  transform: scale(1.05);
}

.btn-secondary:active {
  transform: scale(0.95);
}
