/* Syncronyx Studios — cleaner corporate/studio aesthetic, visually related to Statcronyx
   via shared typography and accent color, but lighter and less gaming-specific. */

:root {
  --bg: #f6f7fb;
  --bg-panel: #ffffff;
  --border: #e1e4ec;
  --text: #12151d;
  --text-dim: #565f73;
  --accent: #4a3ff0;
  --accent-2: #2c6fe0;
  --radius: 12px;
  --max-width: 880px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel);
}

.header-inner {
  height: 64px;
  display: flex;
  align-items: center;
}

.wordmark {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text);
}

.wordmark:hover {
  text-decoration: none;
  color: var(--accent);
}

.hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.75rem;
}

.statement {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin: 0 auto;
  max-width: 520px;
}

.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.section h2 {
  font-size: 1.4rem;
  margin: 0 0 1.5rem;
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0 0 1.25rem;
  color: var(--text-dim);
}

.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-2);
  text-decoration: none;
}

.about p {
  color: var(--text-dim);
  max-width: 640px;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.copyright {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.footer-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

@media (max-width: 640px) {
  .hero {
    padding: 3.5rem 0 2.5rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
