:root {
  /* Final Session #79. Pine Green Accent auf Warm Cream. */
  --bg: #faf9f5;
  --bg-alt: #f3f1ea;
  --bg-dark: #0f1f1a;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --text-faint: #8a8a8a;
  --text-on-dark: #f3f1ea;
  --border: #e6e3d8;
  --accent: #104A3A;
  --accent-soft: #1a5a48;
  --accent-tint: #d8e3dd;

  --font-display: 'Red Hat Display', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  --container-max: 1100px;
  --gutter: 32px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--text);
}
.nav__brand:hover { color: var(--accent); }
.nav__links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--text-muted);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--text);
  border-bottom-color: var(--accent);
}
.nav__hamburger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* =========================================================
   HERO (Hub-Variante)
   ========================================================= */
.hero {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  align-items: start;
}
.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #e9e4d6;
  color: var(--text-faint);
  border: 2px solid #d6d0c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.03em;
}
.hero-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 64px;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.hero-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--text);
  max-width: 720px;
  margin-bottom: 16px;
}
.hero-subtag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}
.hero-subtag span + span::before {
  content: "·";
  margin: 0 10px;
  color: var(--text-faint);
}

/* =========================================================
   PAGE-HERO (für Sub-Pages)
   ========================================================= */
.page-hero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero__label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.page-hero__sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  color: var(--text-muted);
  max-width: 680px;
}

/* =========================================================
   BUILD STATUS (Hub)
   ========================================================= */
.build {
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--border);
}
.build-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 72px;
  align-items: start;
}
.label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 10px;
}
.build-stats { max-width: 720px; }
.build-stats-row {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.build-stat { font-family: var(--font-display); }
.build-stat .num {
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.build-stat .cap {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.build-claim {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 680px;
  color: var(--text);
}
.build-claim em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
}

/* =========================================================
   ABOUT (Hub)
   ========================================================= */
.about {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 72px;
  align-items: start;
}
.about-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  max-width: 720px;
}
.about-text p + p { margin-top: 20px; }
.about-text strong {
  font-weight: 600;
  color: var(--accent);
}
.about-link {
  display: inline-block;
  margin-top: 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.about-link:hover { color: var(--accent-soft); }

/* =========================================================
   BRANDS (Hub)
   ========================================================= */
.brands {
  padding: 80px 0 40px;
}
.brands-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  padding: 32px 26px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
  min-height: 200px;
}
.brand-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.brand-logo-wrap {
  min-height: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.brand-logo-wrap img.logo-signex { width: 100%; height: auto; max-height: 48px; }
.brand-logo-wrap img.logo-seonar { width: 100%; height: auto; max-height: 64px; }
.logo-runthesim-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.38em;
}
.brand-logo-wrap img.logo-runthesim-mark {
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
}
.logo-runthesim-wordmark {
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--text);
}
.brand-logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.brand-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  flex-grow: 1;
}

/* =========================================================
   GENERIC SECTION
   ========================================================= */
.section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.section--last { border-bottom: 0; }
.section--tight { padding: 48px 0; }

.section-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 72px;
  align-items: start;
}
.section-grid + .section-grid { margin-top: 64px; }
.section-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 720px;
}
.section-body p + p { margin-top: 18px; }
.section-body h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 32px 0 12px;
}
.section-body strong { font-weight: 600; color: var(--accent); }
.section-body ul {
  list-style: none;
  padding: 0;
  margin-top: 14px;
}
.section-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.section-body ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =========================================================
   TIMELINE (bauwerk)
   ========================================================= */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 1px solid var(--border);
  padding-left: 28px;
}
.timeline li {
  position: relative;
  padding: 0 0 28px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-date {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.timeline-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* =========================================================
   STATUS-CARDS (bauwerk)
   ========================================================= */
.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.status-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.status-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
}
.status-card__phase {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.status-card__body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* =========================================================
   CASE-CALLOUT (bauwerk)
   ========================================================= */
.case {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  margin-top: 24px;
}
.case__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}
.case__caption {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.case__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

/* =========================================================
   FOLLOW (folgen)
   ========================================================= */
.channels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.channel {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s ease;
}
.channel:hover { border-color: var(--accent); }
.channel__platform {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.channel__handle {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--text);
}
.channel__purpose {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* =========================================================
   CONTACT-PAGE
   ========================================================= */
.contact-block {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}
.contact-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  width: 110px;
  flex-shrink: 0;
}
.contact-row__value {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
}
.contact-row__value a {
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact-row__value a:hover { border-color: var(--accent); }

/* =========================================================
   CONTACT (Hub-Inline-Variante, bestehend)
   ========================================================= */
.contact {
  padding: 40px 0 80px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.contact a {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact a:hover { border-color: var(--accent); }
.contact strong { font-weight: 600; color: var(--text); }
.contact .social {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 13px;
}
.contact .social a { color: var(--text-muted); }

/* =========================================================
   LEGAL (impressum, datenschutz)
   ========================================================= */
.legal {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  max-width: 720px;
}
.legal__meta {
  display: block;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.legal h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.005em;
  margin: 36px 0 12px;
  color: var(--text);
}
.legal h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  margin: 24px 0 10px;
  color: var(--text);
}
.legal p + p { margin-top: 12px; }
.legal ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.legal ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 6px;
}
.legal ul li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}
.legal a {
  color: var(--text);
  border-bottom: 1px solid var(--accent);
}
.legal a:hover { color: var(--accent); }

/* =========================================================
   STUB-PAGE (notizen)
   ========================================================= */
.stub {
  padding: 64px 0 96px;
  font-family: var(--font-body);
}
.stub__body {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}
.stub__body p + p { margin-top: 18px; }
.stub__hint {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  font-size: 15px;
  color: var(--text-muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  color: var(--text);
}
.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col-links li { margin-bottom: 8px; }
.footer-col-links a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.15s ease;
}
.footer-col-links a:hover { color: var(--accent); }
.footer-bar {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

/* =========================================================
   ALTERNATIVE SECTION-BACKGROUNDS
   ========================================================= */
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section--dark .label,
.section--dark .section-title,
.section--dark strong { color: #f3f1ea; }
.section--dark .accent-text { color: #6FBF9C; }

/* =========================================================
   PULL-QUOTE
   ========================================================= */
.pullquote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  max-width: 760px;
}
.pullquote em {
  font-style: normal;
  font-weight: 900;
  color: var(--accent);
}
.section--dark .pullquote {
  color: #f3f1ea;
  border-left-color: #6FBF9C;
}
.section--dark .pullquote em { color: #6FBF9C; }

/* =========================================================
   BIG-STAT (single, full-width)
   ========================================================= */
.bigstat {
  padding: 48px 0;
  text-align: left;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 48px 0;
}
.bigstat__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 16px;
}
.bigstat__cap {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  max-width: 640px;
}

/* =========================================================
   DIFF-GRID (4 mini-cards)
   ========================================================= */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.diff-item {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.diff-item__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.diff-item__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  margin-bottom: 8px;
  color: var(--text);
}
.diff-item__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* =========================================================
   ANTI-PATTERN BOX (was nicht passiert)
   ========================================================= */
.anti {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.anti__col {
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.anti__col--no { border-left: 3px solid #c25450; }
.anti__col--yes { border-left: 3px solid var(--accent); }
.anti__head {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.anti__col--no .anti__head { color: #c25450; }
.anti__col--yes .anti__head { color: var(--accent); }
.anti__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.anti__list li {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.anti__list li:last-child { border-bottom: 0; }

/* =========================================================
   FAQ DETAILS
   ========================================================= */
.faq-list {
  margin-top: 8px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 24px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 720px;
}

/* =========================================================
   TWO-COL TEXT (für längere Story-Passagen)
   ========================================================= */
.twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}
.twocol p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.twocol p + p { margin-top: 14px; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.is-open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px var(--gutter);
    gap: 18px;
    border-bottom: 1px solid var(--border);
  }
  .hero { padding: 80px 0 60px; }
  .hero-grid,
  .about-grid,
  .build-grid,
  .section-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-name { font-size: 44px; }
  .hero-tagline { font-size: 18px; }
  .build-claim { font-size: 22px; }
  .about-text { font-size: 16px; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .status-grid { grid-template-columns: 1fr; }
  .channels { grid-template-columns: 1fr; }
  .page-hero { padding: 64px 0 48px; }
  .page-hero__title { font-size: 40px; }
  .page-hero__sub { font-size: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact { flex-direction: column; align-items: flex-start; gap: 16px; }
  .contact .social { margin-left: 0; }
  .contact-row { flex-direction: column; gap: 4px; padding: 12px 0; }
  .contact-row__label { width: auto; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .anti { grid-template-columns: 1fr; }
  .twocol { grid-template-columns: 1fr; gap: 16px; }
  .pullquote { font-size: 24px; }
  .bigstat__num { font-size: 64px; }
}

@media (max-width: 500px) {
  .hero-name { font-size: 36px; }
  .hero-photo { width: 120px; height: 120px; font-size: 40px; }
  .brands-grid { grid-template-columns: 1fr; }
  .build-stats-row { gap: 24px; }
  .build-stat .num { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero__title { font-size: 32px; }
}
