/* ============================================
   WAGE CATTLE - Corporate Satire Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Courier+Prime:wght@400;700&display=swap');

:root {
  --corporate-gray: #f4f2ee;
  --cubicle-beige: #e8e4dc;
  --fluorescent-white: #fafaf8;
  --cattle-orange: #c94a1a;
  --cattle-orange-dark: #a33a10;
  --ink-black: #1a1a1a;
  --medium-gray: #555;
  --light-gray: #999;
  --border-gray: #ddd;
  --success-green: #2d6a4f;
  --warning-red: #c0392b;
  --gold: #c9a84c;
  --gold-light: #f0d080;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--fluorescent-white);
  color: var(--ink-black);
  overflow-x: hidden;
}

/* ============================================
   TICKER TAPE
   ============================================ */
.ticker-tape {
  background: var(--ink-black);
  color: var(--cattle-orange);
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--cattle-orange);
}

.ticker-content {
  display: inline-block;
  animation: ticker 40s linear infinite;
}

@keyframes ticker {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ============================================
   NAVIGATION - Corporate Hell
   ============================================ */
nav {
  background: var(--fluorescent-white);
  border-bottom: 3px solid var(--ink-black);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-badge {
  background: var(--cattle-orange);
  color: white;
  font-weight: 900;
  font-size: 11px;
  padding: 4px 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-logo-text {
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink-black);
}

.nav-logo-text span {
  color: var(--cattle-orange);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--medium-gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cattle-orange);
}

.nav-cta {
  background: var(--cattle-orange);
  color: white !important;
  padding: 10px 20px !important;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--cattle-orange-dark) !important;
  color: white !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--ink-black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}

.hero-bg-text {
  position: absolute;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 74, 26, 0.15);
  border: 1px solid var(--cattle-orange);
  color: var(--cattle-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 32px;
}

.hero-eyebrow::before {
  content: '●';
  animation: blink 1.5s infinite;
  color: var(--cattle-orange);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.hero-title .highlight {
  color: var(--cattle-orange);
  display: block;
}

.hero-stamp {
  display: inline-block;
  border: 4px solid var(--cattle-orange);
  color: var(--cattle-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3em;
  padding: 6px 16px;
  margin: 20px 0;
  transform: rotate(-2deg);
  font-family: 'Courier Prime', monospace;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-subtitle em {
  color: rgba(255,255,255,0.9);
  font-style: normal;
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  background: var(--cattle-orange);
  color: white;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--cattle-orange-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  flex-wrap: wrap;
}

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

.hero-stat-number {
  font-size: 36px;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
}

.hero-stat-number span {
  color: var(--cattle-orange);
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ============================================
   SCROLLING BANNER
   ============================================ */
.scroll-banner {
  background: var(--cattle-orange);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-banner-content {
  display: inline-block;
  animation: scrollBanner 25s linear infinite;
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

/* ============================================
   EMPLOYEE HANDBOOK SECTION
   ============================================ */
.handbook {
  background: var(--corporate-gray);
  padding: 100px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cattle-orange);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink-black);
}

.section-title .line2 {
  color: var(--cattle-orange);
}

.section-subtitle {
  font-size: 17px;
  color: var(--medium-gray);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.handbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.handbook-card {
  background: white;
  border: 1px solid var(--border-gray);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}

.handbook-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: var(--cattle-orange);
}

.handbook-card-number {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: var(--light-gray);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.handbook-card-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.handbook-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink-black);
  margin-bottom: 12px;
  line-height: 1.2;
}

.handbook-card-text {
  font-size: 14px;
  color: var(--medium-gray);
  line-height: 1.7;
}

.handbook-card-text em {
  color: var(--cattle-orange);
  font-style: normal;
  font-weight: 600;
}

.handbook-card.featured {
  background: var(--ink-black);
  border-color: var(--cattle-orange);
  grid-column: span 2;
}

.handbook-card.featured .handbook-card-title {
  color: white;
  font-size: 28px;
}

.handbook-card.featured .handbook-card-text {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
}

.handbook-card.featured .handbook-card-number {
  color: var(--cattle-orange);
}

/* ============================================
   COIN SECTION
   ============================================ */
.coin-section {
  background: white;
  padding: 100px 40px;
}

.coin-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.coin-image-wrapper {
  position: relative;
  text-align: center;
}

.coin-image-wrapper img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 60px rgba(201, 74, 26, 0.2));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.coin-info {
  padding: 20px 0;
}

.coin-ticker {
  font-family: 'Courier Prime', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--cattle-orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.coin-title {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 20px;
}

.coin-desc {
  font-size: 16px;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.tokenomics {
  background: var(--corporate-gray);
  border-left: 4px solid var(--cattle-orange);
  padding: 24px;
  margin-bottom: 32px;
}

.tokenomics-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cattle-orange);
  margin-bottom: 16px;
}

.tokenomics-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-gray);
  font-size: 14px;
}

.tokenomics-row:last-child {
  border-bottom: none;
}

.tokenomics-label {
  color: var(--medium-gray);
  font-weight: 500;
}

.tokenomics-value {
  font-weight: 700;
  color: var(--ink-black);
  font-family: 'Courier Prime', monospace;
}

.tokenomics-value.highlight {
  color: var(--cattle-orange);
}

/* ============================================
   MISSION SECTION - Gary Sinise
   ============================================ */
.mission {
  background: var(--ink-black);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '★';
  position: absolute;
  font-size: 400px;
  color: rgba(255,255,255,0.01);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.mission-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(201, 74, 26, 0.15);
  border: 1px solid var(--cattle-orange);
  padding: 10px 20px;
  margin-bottom: 40px;
}

.mission-badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--cattle-orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mission-number {
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 900;
  color: var(--cattle-orange);
  line-height: 0.85;
  letter-spacing: -0.05em;
  display: block;
  margin-bottom: 8px;
}

.mission-number-label {
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.mission-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
}

.mission-desc strong {
  color: white;
  font-weight: 700;
}

.gsf-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
}

.gsf-stat {
  text-align: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.08);
}

.gsf-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--cattle-orange);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.gsf-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================
   HR MEMO SECTION
   ============================================ */
.memo-section {
  background: var(--cubicle-beige);
  padding: 100px 40px;
}

.memo-paper {
  max-width: 760px;
  margin: 0 auto;
  background: white;
  border: 1px solid #ccc;
  padding: 60px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.08), 16px 16px 0 rgba(0,0,0,0.04);
  position: relative;
}

.memo-paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 60px;
  width: 2px;
  height: 100%;
  background: #ffaaaa;
  opacity: 0.5;
}

.memo-header {
  border-bottom: 2px solid var(--ink-black);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.memo-title {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: 'Courier Prime', monospace;
}

.memo-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 13px;
  font-family: 'Courier Prime', monospace;
}

.memo-meta-row {
  display: flex;
  gap: 8px;
}

.memo-meta-label {
  font-weight: 700;
  color: var(--ink-black);
  min-width: 80px;
}

.memo-meta-value {
  color: var(--medium-gray);
}

.memo-body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--ink-black);
  font-family: 'Courier Prime', monospace;
}

.memo-body p strong {
  font-weight: 700;
}

.memo-stamp {
  position: absolute;
  top: 40px;
  right: 40px;
  border: 4px solid var(--cattle-orange);
  color: var(--cattle-orange);
  font-weight: 900;
  font-size: 14px;
  padding: 8px 16px;
  transform: rotate(12deg);
  letter-spacing: 0.15em;
  font-family: 'Courier Prime', monospace;
  opacity: 0.8;
}

/* ============================================
   FAQ / PERFORMANCE REVIEW
   ============================================ */
.faq-section {
  background: white;
  padding: 100px 40px;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-gray);
  padding: 28px 0;
}

.faq-question {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-black);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.faq-q-badge {
  background: var(--cattle-orange);
  color: white;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  font-size: 15px;
  color: var(--medium-gray);
  line-height: 1.7;
  padding-left: 44px;
}

.faq-answer em {
  color: var(--cattle-orange);
  font-style: normal;
  font-weight: 600;
}

/* ============================================
   WALL OF SHAME / LINKEDIN POSTS
   ============================================ */
.linkedin-section {
  background: #f3f2ef;
  padding: 100px 40px;
}

.linkedin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.linkedin-card {
  background: white;
  border: 1px solid #e0ded9;
  border-radius: 2px;
  padding: 24px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.linkedin-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.linkedin-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--corporate-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.linkedin-name {
  font-weight: 700;
  color: var(--ink-black);
  font-size: 15px;
}

.linkedin-title {
  font-size: 12px;
  color: var(--light-gray);
}

.linkedin-text {
  color: #333;
  margin-bottom: 16px;
  line-height: 1.7;
}

.linkedin-text em {
  color: var(--cattle-orange);
  font-style: normal;
  font-weight: 700;
}

.linkedin-reactions {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--light-gray);
  border-top: 1px solid #f0ede8;
  padding-top: 12px;
}

.linkedin-logo {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 18px;
  color: #0077b5;
  opacity: 0.5;
}

/* ============================================
   BOTTOM CTA
   ============================================ */
.cta-section {
  background: var(--cattle-orange);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '$HERD';
  position: absolute;
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255,255,255,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: white;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: var(--cattle-orange);
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  border: none;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-outline-white {
  background: transparent;
  color: white;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-white:hover {
  border-color: white;
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink-black);
  padding: 60px 40px;
  color: rgba(255,255,255,0.4);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-name {
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.footer-brand-name span {
  color: var(--cattle-orange);
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cattle-orange);
}

.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  max-width: 1100px;
  margin: 20px auto 0;
  line-height: 1.6;
}

/* ============================================
   BARCODE DIVIDER
   ============================================ */
.barcode-divider {
  background: var(--ink-black);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.barcode-lines {
  display: flex;
  gap: 2px;
  align-items: center;
  height: 32px;
}

.barcode-lines span {
  background: white;
  height: 100%;
  opacity: 0.4;
}

.barcode-text {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 60px 20px; }
  .hero-stats { gap: 24px; }
  .handbook { padding: 60px 20px; }
  .handbook-card.featured { grid-column: span 1; }
  .coin-container { grid-template-columns: 1fr; gap: 40px; }
  .mission { padding: 60px 20px; }
  .gsf-stats { grid-template-columns: 1fr; }
  .memo-section { padding: 60px 20px; }
  .memo-paper { padding: 32px; }
  .faq-section { padding: 60px 20px; }
  .linkedin-section { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  footer { padding: 40px 20px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}