/* ============================================
   SHOULDERMEN — Main Stylesheet
   A dark, atmospheric design with angel/devil
   visual contrast for the Shouldermen game site.
   ============================================ */

/* ============================================
   1. CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Base darks */
  --color-bg-deep: #0a0a12;
  --color-bg-primary: #12101f;
  --color-bg-elevated: #1a1730;
  --color-bg-surface: #231f3a;

  /* Angel palette (warm / gold) */
  --color-angel: #d4a843;
  --color-angel-light: #f0d078;
  --color-angel-glow: rgba(212, 168, 67, 0.15);

  /* Devil palette (cool / red) */
  --color-devil: #c0392b;
  --color-devil-light: #e74c3c;
  --color-devil-glow: rgba(192, 57, 43, 0.15);

  /* UI accent */
  --color-accent: #7c5cbf;
  --color-accent-hover: #9b7fd4;

  /* Text */
  --color-text: #e8e6f0;
  --color-text-secondary: #a9a4c0;
  --color-text-dim: #6b6589;

  /* Borders */
  --color-border: rgba(124, 92, 191, 0.2);
  --color-border-subtle: rgba(255, 255, 255, 0.06);

  /* CTA */
  --color-cta: #5c7cfa;
  --color-cta-hover: #748ffc;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --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.5rem;
  --text-5xl: 3.5rem;

  /* 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;

  /* Layout */
  --max-width: 1200px;
  --max-width-narrow: 720px;
  --nav-height: 70px;
  --radius: 8px;
  --radius-lg: 12px;

  /* Effects */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 20px rgba(124, 92, 191, 0.3);
  --transition: 250ms ease;
}

/* ============================================
   2. RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

ul, ol {
  list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

h4 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
}

strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ============================================
   4. LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

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

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

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

.grid {
  display: grid;
  gap: var(--space-xl);
}

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

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

.text-center {
  text-align: center;
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

/* ============================================
   5. SKIP LINK & ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-cta);
  color: #fff;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  z-index: 200;
  font-weight: 700;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-subtle);
  height: var(--nav-height);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text);
  font-weight: 700;
  font-size: var(--text-xl);
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo:hover {
  color: var(--color-text);
}

.site-logo img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.site-nav__link {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: var(--color-text);
}

.site-nav__link--cta {
  background: var(--color-cta);
  color: #fff;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius);
  font-weight: 700;
}

.site-nav__link--cta:hover {
  background: var(--color-cta-hover);
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../images/header.jpg') center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 18, 0.5) 0%,
    rgba(10, 10, 18, 0.8) 70%,
    var(--color-bg-deep) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-lg);
}

.hero__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--color-angel) 0%, var(--color-text) 50%, var(--color-devil-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-inline: auto;
}

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

/* Page hero (smaller, for inner pages) */
.page-hero {
  padding: var(--space-4xl) 0 var(--space-3xl);
  text-align: center;
  background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-deep) 100%);
  border-bottom: 1px solid var(--color-border-subtle);
}

.page-hero h1 {
  margin-bottom: var(--space-md);
}

.page-hero p {
  max-width: 600px;
  margin-inline: auto;
  font-size: var(--text-lg);
}

/* ============================================
   8. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn--primary {
  background: var(--color-cta);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-cta-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(92, 124, 250, 0.4);
}

.btn--steam {
  background: #171a21;
  color: #c7d5e0;
  border: 1px solid #2a475e;
}

.btn--steam:hover {
  background: #1b2838;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(27, 40, 56, 0.6);
}

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

.btn--outline:hover {
  background: var(--color-accent);
  color: #fff;
}

.btn--lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: var(--text-lg);
}

/* ============================================
   9. CARDS
   ============================================ */
.card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.card__icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
  display: block;
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.card__text {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Angel & Devil variants */
.card--angel {
  border-color: var(--color-angel);
  background: linear-gradient(135deg, var(--color-bg-elevated) 0%, rgba(212, 168, 67, 0.05) 100%);
}

.card--angel:hover {
  box-shadow: 0 0 30px var(--color-angel-glow);
}

.card--angel .card__title {
  color: var(--color-angel-light);
}

.card--devil {
  border-color: var(--color-devil);
  background: linear-gradient(135deg, var(--color-bg-elevated) 0%, rgba(192, 57, 43, 0.05) 100%);
}

.card--devil:hover {
  box-shadow: 0 0 30px var(--color-devil-glow);
}

.card--devil .card__title {
  color: var(--color-devil-light);
}

/* ============================================
   10. FEATURE SECTION
   ============================================ */
.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

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

.section__header p {
  font-size: var(--text-lg);
}

/* ============================================
   11. GALLERY / SCREENSHOT SECTION
   ============================================ */
.gallery {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.gallery__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.03);
}

/* ============================================
   12. STEAM CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  padding: var(--space-4xl) 0;
}

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

.cta-section p {
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

.cta-banner {
  background: linear-gradient(135deg, var(--color-bg-elevated) 0%, var(--color-bg-surface) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl) var(--space-xl);
  max-width: 700px;
  margin-inline: auto;
}

/* ============================================
   13. ABOUT PAGE SPECIFICS
   ============================================ */
.story-section p {
  font-size: var(--text-lg);
  line-height: 1.8;
  max-width: 800px;
}

.steps {
  counter-reset: step;
}

.step {
  display: flex;
  gap: var(--space-xl);
  align-items: flex-start;
  margin-bottom: var(--space-2xl);
}

.step__number {
  counter-increment: step;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--text-xl);
}

.step__content h3 {
  margin-bottom: var(--space-xs);
}

.step__content p {
  margin-bottom: 0;
}

/* System requirements table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-lg);
}

.spec-table th,
.spec-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border-subtle);
}

.spec-table th {
  color: var(--color-text);
  font-weight: 700;
  background: var(--color-bg-elevated);
}

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

.spec-table tr:hover td {
  background: var(--color-bg-elevated);
}

/* Early Access badge */
.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge--early-access {
  background: rgba(92, 124, 250, 0.15);
  color: var(--color-cta);
  border: 1px solid rgba(92, 124, 250, 0.3);
}

/* ============================================
   14. DEVELOPER PAGE
   ============================================ */
.project-list {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.project-item {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-lg);
}

.project-item h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-lg);
}

.project-item p {
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* ============================================
   15. BLOG LISTING
   ============================================ */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.blog-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.blog-card__date {
  color: var(--color-text-dim);
  font-size: var(--text-sm);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.blog-card__title a {
  color: var(--color-text);
  text-decoration: none;
}

.blog-card__title a:hover {
  color: var(--color-accent);
}

.blog-card__excerpt {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.blog-card__link {
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   16. BLOG POST / ARTICLE
   ============================================ */
.article-header {
  padding: var(--space-4xl) 0 var(--space-xl);
  text-align: center;
  border-bottom: 1px solid var(--color-border-subtle);
}

.article-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
  max-width: 800px;
  margin-inline: auto;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  color: var(--color-text-dim);
  font-size: var(--text-sm);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.article-featured-img {
  max-width: var(--max-width-narrow);
  margin: var(--space-2xl) auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
}

.article-body {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  padding: var(--space-2xl) var(--space-lg);
  font-size: var(--text-lg);
  line-height: 1.8;
}

.article-body h2 {
  margin-top: var(--space-3xl);
  margin-bottom: var(--space-lg);
  font-size: var(--text-2xl);
}

.article-body h3 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  font-size: var(--text-xl);
}

.article-body p {
  margin-bottom: var(--space-lg);
}

.article-body a {
  text-decoration: underline;
  text-decoration-color: rgba(124, 92, 191, 0.4);
  text-underline-offset: 3px;
}

.article-body a:hover {
  text-decoration-color: var(--color-accent);
}

.article-body ul,
.article-body ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-xl);
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.article-body blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-lg);
  margin: var(--space-xl) 0;
  font-style: italic;
  color: var(--color-text-secondary);
}

/* Author box */
.author-box {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin: var(--space-3xl) auto;
  max-width: var(--max-width-narrow);
}

.author-box img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.author-box__name {
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.author-box__bio {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Related posts */
.related-posts {
  max-width: var(--max-width-narrow);
  margin: 0 auto var(--space-3xl);
  padding-inline: var(--space-lg);
}

.related-posts h3 {
  margin-bottom: var(--space-lg);
}

.related-posts ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.related-posts a {
  display: block;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.related-posts a:hover {
  border-color: var(--color-accent);
  transform: translateX(4px);
}

/* ============================================
   17. FOOTER
   ============================================ */
.site-footer {
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-bottom: var(--space-md);
}

.footer__brand p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  max-width: 300px;
}

.footer__links h4 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-dim);
  margin-bottom: var(--space-md);
}

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

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

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

.footer__bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: var(--space-xl);
  text-align: center;
}

.footer__bottom p {
  font-size: var(--text-sm);
  color: var(--color-text-dim);
  margin-bottom: 0;
}

/* ============================================
   18. 404 PAGE
   ============================================ */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-page__code {
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-angel) 0%, var(--color-accent) 50%, var(--color-devil) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-lg);
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(124, 92, 191, 0.4));
}

.error-page h2 {
  margin-bottom: var(--space-md);
}

.error-page p {
  margin-bottom: var(--space-xl);
  font-size: var(--text-lg);
}

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

/* ============================================
   19. RESPONSIVE
   ============================================ */

/* Tablet: 768px+ */
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .project-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  h1 {
    font-size: var(--text-5xl);
  }

  h2 {
    font-size: var(--text-4xl);
  }

  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    min-height: 85vh;
  }
}

/* Mobile: max 767px */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(10, 10, 18);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__list {
    flex-direction: column;
    gap: var(--space-xl);
    text-align: center;
    background: rgb(10, 10, 18);
    padding: var(--space-xl);
    margin-top: var(--space-lg);
  }

  .site-nav__link {
    font-size: var(--text-lg);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .hero {
    min-height: 70vh;
  }

  .article-header h1 {
    font-size: var(--text-3xl);
  }

  .error-page__code {
    font-size: 5rem;
  }

  .step {
    flex-direction: column;
    gap: var(--space-md);
  }
}
