:root {
  /* Color Contrast (WCAG AA tested) */
  --bg: #05080f;           /* Background */
  --bg-soft: #0a0f1d;
  --card: rgba(15, 23, 42, 0.6);
  --card-hover: rgba(30, 41, 59, 0.8);
  --stroke: rgba(255, 255, 255, 0.06);
  --stroke-bright: rgba(255, 255, 255, 0.12);
  --accent: #ff6b2b;       /* Contrast: 5.8:1 ✓ */
  --accent-glow: rgba(255, 107, 43, 0.3);
  --accent-2: #4ade80;     /* Contrast: 4.9:1 ✓ */
  --accent-2-glow: rgba(74, 222, 128, 0.2);
  --text: #f8fafc;         /* Contrast: 14.2:1 ✓ */
  --muted: #a8b5c4;        /* Contrast: 6.1:1 ✓ (Changed from #94a3b8) */
  --text-muted: rgba(248, 250, 252, 0.7);
  --nav-bg: rgba(5, 8, 15, 0.8);
  --topbar-height: 70px;   /* Default, updated by JS */
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(255, 107, 43, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(74, 222, 128, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
}

/* Accessibility: Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 2000; /* Higher than topbar */
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* Accessibility: Focus Indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.nav-inner a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -2px; /* Inside to avoid layout shift */
}

.btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Breadcrumbs */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid var(--stroke);
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li::before {
  content: '/';
  margin: 0 8px;
  color: var(--muted);
}

.breadcrumb li:first-child::before {
  content: none;
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}

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

h1 {
  margin: 0 0 24px;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(to bottom right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  margin: 0 0 24px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 32px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.125rem;
  font-family: 'Work Sans', sans-serif;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 40px;
}

.section {
  margin-top: 60px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100vw;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  height: 70px;
/*  min-height: 70px;
  height: auto;
  box-sizing: border-box;
  overflow-x: hidden;*/
}

.topbar-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 20px var(--accent-glow);
  transform: rotate(45deg);
}

.brand-fade {
  color: var(--muted);
  font-weight: 400;
}

.secondary-nav {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-left: auto;
  align-items: center;
  padding-right: 60px; /* Space for fixed language selector */
}

.secondary-nav a {
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  transition: color 0.2s ease;
}

.secondary-nav a:hover,
.secondary-nav a:active {
  color: var(--text);
}

/* Active state for navigation */
.secondary-nav a.nav-active,
.nav-inner a.nav-active {
  color: var(--accent);
  position: relative;
}

.nav-inner a.nav-active::after {
  transform: scaleX(1);
}

/* Mobile Menu Toggle (Button) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--text);
  transition: all 0.3s ease;
}

.cta-button {
  background: var(--accent);
  color: white !important;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover,
.cta-button:active {
  background: #e55a1b;
  transform: translateY(-1px);
}

.brand-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lang-selector {
  position: fixed;
  top: 7px;
  right: 7px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 2002;
  background: rgba(5, 8, 15, 0.8);
  backdrop-filter: blur(8px);
  padding: 3px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
}

.lang-selector a {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  padding: 2px 4px;
  border-radius: 4px;
  text-transform: uppercase;
}

.lang-selector a.active {
  color: var(--text);
  background: var(--stroke);
}

.lang-selector a[aria-current="page"],
.lang-selector a.active {
  color: var(--accent);
  font-weight: 700;
  background: transparent;
}

.primary-nav {
  position: sticky;
  top: var(--topbar-height);
  z-index: 999;
  background: rgba(5, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.primary-nav::-webkit-scrollbar {
  display: none;
}

.nav-inner {
  width: fit-content;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-inner a {
  padding: 16px 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-inner a:hover,
.nav-inner a:active {
  color: var(--accent);
}

.nav-inner a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner a:hover::after,
.nav-inner a:active::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-card {
  background: transparent;
  border: none;
  padding: 0;
  box-shadow: none;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 4px 12px;
  background: var(--accent-glow);
  border-radius: 6px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row {
  display: flex;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.card:hover,
.card:active,
.card.touch-active {
  transform: translateY(-8px);
  background: var(--card-hover);
  border-color: var(--accent-glow);
  box-shadow: 0 0 20px var(--accent-glow);
}

.card.section {
  padding: 32px;
}

.card.principle {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03); /* Keep original bg */
  border-radius: 24px;
  margin: 0.3rem;
  position: relative;
  backdrop-filter: blur(8px);
}

.card.principle:hover,
.card.principle:active,
.card.principle.touch-active {
  z-index: 50;
  background: var(--card-hover);
  transform: translateY(-4px);
  border-color: var(--accent-glow);
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
}

.card.principle strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: 1.1rem;
}

.card.truth {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03); /* Keep original bg */
  border-radius: 16px;
}

.card small {
  display: block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.5rem;
  color: var(--text);
}

.path-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.2s ease;
}

.path-card:hover,
.path-card:active,
.path-card:focus-within,
.path-card.touch-active {
  border-color: var(--accent-glow);
  box-shadow: 0 0 20px var(--accent-glow);
}

.path-card h3 {
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.path-card ul li {
  margin-bottom: 0.8rem;
}

.path-card a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.path-card a:hover,
.path-card a:focus-visible,
.path-card a:active {
  color: var(--text);
  text-shadow: 0 0 8px var(--accent-glow);
  transform: translateX(4px);
  outline: none;
}

.chip {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s ease;
}

.chip:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--stroke-bright);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 20px -5px var(--accent-glow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -10px var(--accent-glow);
  filter: brightness(1.1);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  color: var(--text);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--stroke-bright);
  transform: translateY(-2px);
}

.steps-timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  opacity: 0.3;
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--accent);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--accent-glow);
}

.timeline-content h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.timeline-content > p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--muted);
}

.step-section {
  margin: 1.5rem 0;
}

.step-section strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
}

.step-section ul {
  margin: 0;
  padding-left: 1.5rem;
  list-style: none;
}

.step-section li {
  margin-bottom: 0.5rem;
  color: var(--muted);
  position: relative;
  padding-left: 0.5rem;
}

.step-section li::before {
  content: '•';
  position: absolute;
  left: -1rem;
  color: var(--accent);
  font-weight: bold;
}

.step-note {
  margin: 1rem 0 0;
  padding: 1rem;
  background: rgba(255, 107, 43, 0.08);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.truth-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
}

.truth-text strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-size: 1.1rem;
}

.truth-text p {
  margin: 0;
  font-size: 0.95rem;
}

.closing-section {
  margin-top: 100px;
}

.closing-card {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.1), rgba(74, 222, 128, 0.05));
  border: 1px solid var(--accent);
}

.closing-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.closing-card p {
  font-size: 1.1rem;
  margin: 1.5rem auto;
  max-width: 700px;
}

.closing-card .cta-row {
  justify-content: center;
  margin-top: 2rem;
}

footer {
  margin-top: 60px;
  padding: 80px 0 40px;
  border-top: 1px solid var(--stroke);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), transparent);
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-content .brand {
  margin-bottom: 8px;
}

.footer-content p {
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 500;
}

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

.copyright {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.6;
  margin-top: 16px;
}

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

  .cta-row,
  .chips {
    justify-content: center;
  }

  /* Navigation for Tablet/Mobile */
  .topbar {
    position: sticky;
    padding: 12px 20px;
    flex-direction: row;
    height: 70px;
    overflow: visible;
    align-items: flex-end;
  }

  .topbar-inner {
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 8px;
  }

  .nav-toggle {
    display: block;
    margin-bottom: 4px;
  }

  .secondary-nav {
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    background: var(--bg);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    padding-right: 0; /* Reset padding for mobile drawer */
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s;
    border-top: 1px solid var(--stroke);
    overflow-y: auto;
    margin-top: 0;
    z-index: 2000;
    visibility: hidden;
    flex-wrap: nowrap;
  }

  .secondary-nav.open {
    transform: translateX(0);
    visibility: visible;
  }
  
  .secondary-nav a {
    width: 100%;
    max-width: 300px;
    text-align: center;
    font-size: 1.1rem;
  }

  /* Animate hamburger to X */
  .nav-toggle.open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .lang-selector {
    right: 70px;
    top: 12px;
    background: transparent;
    border: none;
    backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .timeline-item:not(:last-child)::before {
    left: 29px;
  }

  .truth-item {
    grid-template-columns: 50px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .truth-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }



  .primary-nav {
    top: var(--topbar-height);
    mask-image: linear-gradient(to right, transparent, black 12px, black calc(100% - 12px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12px, black calc(100% - 12px), transparent);
    overflow-x: auto;
    padding: 0 20px;
    /* Ensure it doesn't slide under due to sub-pixel rendering */
    margin-top: 0;
  }

  .nav-inner {
    gap: 24px;
  }

  .nav-inner a {
    white-space: nowrap;
  }

  .page {
    padding: 40px 20px;
  }

  h1 {
    font-size: 2.5rem;
  }

  .section-card {
    padding: 32px 24px;
  }
}

/* Added styles for dynamic sections */

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}

.note {
  background: rgba(255, 107, 43, 0.1);
  border-left: 4px solid var(--accent);
  padding: 16px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '-';
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted);
  border-top: 1px solid var(--stroke);
  margin-top: 16px;
}

.cta-block {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, var(--bg-soft), var(--card));
  border: 1px solid var(--accent);
  border-radius: 24px;
  text-align: center;
}

.cta-content h3 {
  margin-bottom: 16px;
  color: var(--accent);
}

/* Content Warning Banner */
.content-warning {
  background: linear-gradient(135deg, rgba(255, 107, 43, 0.15), rgba(255, 107, 43, 0.05));
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  color: var(--text);
}

.content-warning-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.content-warning-title::before {
  content: '⚠️';
  font-size: 1.5rem;
}

.content-warning-body {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.content-warning-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.content-warning-cta a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.content-warning-cta a:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto; /* Disable smooth scroll */
  }
  
  .card:hover {
    transform: none; /* Remove translateY */
  }
  
  .nav-inner a::after {
    transition: none; /* Remove underline animation */
  }
  
  .btn.primary:hover,
  .btn.ghost:hover {
    transform: none; /* Remove button lift effect */
  }
  
  .timeline-item:not(:last-child)::before {
    display: none; /* Remove timeline connector animation */
  }
}

/* Utility Classes */
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.text-accent { color: var(--accent); }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.5rem; }
.font-bold { font-weight: 700; }

.link-reset { text-decoration: none; color: inherit; }

.border-l-accent {
  border-left: 4px solid var(--accent);
  padding-left: 1rem;
}

.lang-nav {
  display: inline-block;
  margin-left: 1rem;
}

@media (max-width: 768px) {
  .content-warning {
    padding: 16px;
    margin-bottom: 24px;
  }

  .content-warning-title {
    font-size: 1rem;
  }

  .content-warning-cta {
    flex-direction: column;
  }

  .content-warning-cta a {
    width: 100%;
    justify-content: center;
  }
}
