/* ============================================
   Free Hytale Servers - Main Stylesheet
   Design inspired by hytale.com
   ============================================ */

/* ============================================
   CSS Reset & Base
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   CSS Variables - Hytale-inspired Design System
   ============================================ */
:root {
  /* Backgrounds - Deep, rich darks like hytale.com */
  --bg-primary: #0c0c0f;
  --bg-secondary: #121216;
  --bg-card: #18181c;
  --bg-elevated: #1e1e24;
  --bg-hover: #242429;

  /* Accent - Warm Hytale orange/gold */
  --accent-primary: #e8a33a;
  --accent-primary-hover: #f0b04a;
  --accent-primary-muted: rgba(232, 163, 58, 0.15);
  --accent-secondary: #c4873a;

  /* Text - Clean hierarchy */
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-muted: #6e6e73;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Container */
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Border Radius - Subtle, refined */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ============================================
   Typography - Clean, Modern
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   Layout & Container
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container--narrow {
  max-width: var(--container-narrow);
}

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

.section--alt {
  background-color: var(--bg-secondary);
}

/* ============================================
   Navigation - Clean, minimal like hytale.com
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text-primary);
}

.nav__logo svg {
  width: 32px;
  height: 32px;
}

.nav__logo-text span {
  color: var(--accent-primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

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

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1.25rem;
  background: var(--accent-primary);
  color: #0c0c0f;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav__cta:hover {
  background: var(--accent-primary-hover);
}

.nav__cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-sm);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: var(--space-3xl);
    gap: var(--space-xl);
    background: var(--bg-primary);
    transform: translateX(100%);
    transition: transform var(--transition-base);
  }

  .nav__links.active {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.125rem;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }
}

/* ============================================
   Buttons - Clean, refined
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn--primary {
  background: var(--accent-primary);
  color: #0c0c0f;
}

.btn--primary:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--secondary:hover {
  background: var(--bg-hover);
  border-color: var(--text-muted);
}

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

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

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   Hero Section - Bold, atmospheric
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(64px + var(--space-4xl)) var(--space-lg) var(--space-4xl);
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 163, 58, 0.08) 0%, transparent 50%),
    var(--bg-primary);
  z-index: -1;
}

.hero__content {
  text-align: center;
  max-width: 800px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  margin-bottom: var(--space-xl);
  background: var(--accent-primary-muted);
  border: 1px solid rgba(232, 163, 58, 0.2);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-primary);
}

.hero__title {
  margin-bottom: var(--space-lg);
  line-height: 1.1;
}

.hero__title span {
  color: var(--accent-primary);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ============================================
   Marquee / Ticker - Subtle
   ============================================ */
.marquee {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--space-md) 0;
  overflow: hidden;
}

.marquee__content {
  display: flex;
  animation: marquee 40s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  padding: 0 var(--space-xl);
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.marquee__item span {
  color: var(--accent-primary);
}

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

/* ============================================
   Features Section
   ============================================ */
.features__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.features__header p {
  margin-top: var(--space-md);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* Feature Card - Clean, minimal */
.feature-card {
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  background: var(--bg-elevated);
  border-color: var(--border-light);
}

.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  background: var(--accent-primary-muted);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card__title {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.feature-card__description {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.stats__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.stats__header p {
  margin-top: var(--space-sm);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--accent-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.how-it-works__header p {
  margin-top: var(--space-sm);
}

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

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  background: var(--accent-primary);
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0c0c0f;
}

.step__title {
  margin-bottom: var(--space-sm);
}

.step__description {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ============================================
   About Hytale Section
   ============================================ */
.about-hytale {
  background: var(--bg-secondary);
}

.about-hytale__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 768px) {
  .about-hytale__content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.about-hytale__text h2 {
  margin-bottom: var(--space-lg);
}

.about-hytale__text p {
  margin-bottom: var(--space-md);
}

.about-hytale__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.about-hytale__feature {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.375rem 0.75rem;
  background: var(--accent-primary-muted);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent-primary);
}

.about-hytale__feature svg {
  width: 14px;
  height: 14px;
}

.about-hytale__visual {
  aspect-ratio: 16/10;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hytale__visual-placeholder {
  text-align: center;
  color: var(--text-muted);
}

.about-hytale__visual-placeholder svg {
  width: 64px;
  height: 64px;
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.about-hytale__visual-placeholder p {
  font-size: 0.875rem;
}

/* ============================================
   Community Section
   ============================================ */
.community__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.community__header p {
  margin-top: var(--space-sm);
}

.community__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (max-width: 768px) {
  .community__grid {
    grid-template-columns: 1fr;
  }
}

/* Forum Card */
.forum-card {
  grid-column: span 2;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
}

@media (max-width: 768px) {
  .forum-card {
    grid-column: span 1;
  }
}

.forum-card__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
}

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

.forum-card__icon {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .forum-card__icon {
    justify-content: center;
  }
}

.forum-card__icon svg {
  width: 40px;
  height: 40px;
  color: var(--accent-primary);
}

.forum-card__icon span {
  font-size: 1.25rem;
  font-weight: 600;
}

.forum-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.forum-card p {
  margin-bottom: var(--space-lg);
  max-width: 500px;
}

.forum-card__stats {
  display: flex;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .forum-card__stats {
    justify-content: center;
  }
}

.forum-card__stat-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.forum-card__stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Community Links */
.community-link {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.community-link:hover {
  background: var(--bg-elevated);
  border-color: var(--border-light);
}

.community-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent-primary-muted);
  border-radius: var(--radius-md);
  color: var(--accent-primary);
  flex-shrink: 0;
}

.community-link__icon svg {
  width: 24px;
  height: 24px;
}

.community-link__content h4 {
  margin-bottom: 2px;
}

.community-link__content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.cta-banner__content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
}

.cta-banner p {
  margin-bottom: var(--space-xl);
}

/* ============================================
   Footer - Clean, organized
   ============================================ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-4xl) 0 var(--space-xl);
}

.footer__main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

@media (max-width: 1024px) {
  .footer__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer__brand {
  max-width: 280px;
}

@media (max-width: 640px) {
  .footer__brand {
    max-width: 100%;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

@media (max-width: 640px) {
  .footer__logo {
    justify-content: center;
  }
}

.footer__logo svg {
  width: 28px;
  height: 28px;
}

.footer__logo span {
  color: var(--accent-primary);
}

.footer__description {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

@media (max-width: 640px) {
  .footer__social {
    justify-content: center;
  }
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--bg-hover);
  color: var(--text-primary);
}

.footer__social-link svg {
  width: 18px;
  height: 18px;
}

.footer__column h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__link {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

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

.footer__bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
}

@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.footer__disclaimer {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-page {
  padding-top: calc(64px + var(--space-4xl));
  min-height: 100vh;
}

.legal-page__header {
  text-align: center;
  padding-bottom: var(--space-3xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-3xl);
}

.legal-page__header h1 {
  margin-bottom: var(--space-sm);
}

.legal-page__header p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.legal-content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--space-lg) var(--space-4xl);
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-md);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.0625rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  font-size: 0.9375rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.legal-content ul li {
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

.legal-content a {
  color: var(--accent-primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* ============================================
   About Page
   ============================================ */
.about-page {
  padding-top: calc(64px + var(--space-3xl));
}

.about-page__hero {
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(232, 163, 58, 0.06) 0%, transparent 60%);
}

.about-page__hero h1 {
  margin-bottom: var(--space-lg);
}

.about-page__hero p {
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.about-section {
  padding: var(--space-4xl) 0;
}

.about-section--alt {
  background: var(--bg-secondary);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

.about-content--reverse {
  direction: rtl;
}

.about-content--reverse > * {
  direction: ltr;
}

.about-content h2 {
  margin-bottom: var(--space-lg);
}

.about-content p {
  margin-bottom: var(--space-md);
}

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

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}

.about-value {
  text-align: center;
  padding: var(--space-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.about-value__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  background: var(--accent-primary-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
}

.about-value__icon svg {
  width: 28px;
  height: 28px;
}

.about-value h3 {
  margin-bottom: var(--space-sm);
}

.about-value p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   Utilities
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: var(--accent-primary);
  color: #0c0c0f;
  border-radius: var(--radius-sm);
  z-index: 9999;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-md);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
  .nav, .marquee, .btn, .footer__social {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  h1, h2, h3, h4, p {
    color: black;
  }
}
