:root {
  /* Cocoa & Cream Premium Palette */
  --bg: #f5f1ea;
  --fg: #2d241e;
  --bg-alt: var(--fg);
  --fg-alt: #fdfbf7;
  
  --ink: var(--fg);
  --paper: #ffffff;
  --muted: #7a6f68;
  --accent: #8b5e34;
  --accent-light: #fdf2e9;
  --gold: #c5a059;
  --line: #e2d9cc;
  --shadow: 0 12px 32px rgba(45, 36, 30, 0.06);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(139, 94, 52, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(197, 160, 89, 0.03) 0%, transparent 40%);
  line-height: 1.5;
}

/* Premium Navigation */
.top-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 12px 0; /* Reduced from 18px */
}

.nav-container {
  max-width: 1100px; /* Reduced from 1200px */
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-nav .logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.15rem; /* Reduced from 1.3rem */
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.top-nav .nav-links {
  display: flex;
  gap: 24px; /* Reduced from 40px */
}

.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

/* Main Layout */
.przewodnik-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px; /* Reduced from 60px 32px */
}

/* Hero Section */
.przewodnik-cover {
  padding: 60px 50px; /* Reduced from 100px 80px */
  margin-bottom: 40px; /* Reduced from 80px */
  border-radius: 32px; /* Reduced from 48px */
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px; /* Reduced from 80px */
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem); /* Reduced from 2.5-4.2rem */
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-lead {
  font-size: 1.05rem; /* Reduced from 1.2rem */
  color: var(--muted);
  max-width: 450px;
  margin-bottom: 32px;
}

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

.hero-chips span {
  padding: 6px 16px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-avatar-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px; /* Reduced from 380px */
  aspect-ratio: 1;
}

.hero-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--paper);
  box-shadow: 0 12px 32px rgba(45, 36, 30, 0.1);
}

/* E-book Cards (More "E-booky") */
.ebook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.ebook-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.ebook-card:not(.coming-soon):hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(45, 36, 30, 0.08);
  border-color: var(--accent);
}

.ebook-cover-visual {
  height: 240px; /* Reduced from 320px */
  background: #fdfaf5;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ebook-icon-large {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid var(--line);
  transition: transform 0.4s ease;
}

.ebook-card:hover .ebook-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.ebook-card-body {
  padding: 24px 32px 32px; /* Adjusted padding */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ebook-card h3 {
  margin: 0 0 12px;
  font-size: 1.12rem;
  line-height: 1.38;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.ebook-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 24px;
  line-height: 1.5;
  flex-grow: 1;
}

.ebook-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 5;
}

/* Coming Soon State */
.ebook-card.coming-soon {
  opacity: 0.7;
  cursor: not-allowed;
}

.ebook-card.coming-soon .ebook-cover-visual {
  filter: grayscale(1);
  background: #f5f5f5;
}

.ebook-card.coming-soon .ebook-badge {
  background: #777;
}

.btn-disabled,
.cta-link-disabled,
.inline-disabled-note {
  pointer-events: none;
}

.btn-disabled {
  background: #d9d2c8;
  color: #6e6258;
  border-color: #d9d2c8;
  cursor: not-allowed;
}

.inline-disabled-note {
  color: var(--muted);
  font-weight: 700;
}

.recipe-card-disabled {
  opacity: 0.8;
}

.cta-link-disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Articles */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.knowledge-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.knowledge-link {
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.knowledge-card:not(.coming-soon):hover .knowledge-link {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateX(4px);
}

.knowledge-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

/* Knowledge Card Coming Soon */
.knowledge-card.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f8f8f8;
}

.knowledge-card.coming-soon .knowledge-link {
  pointer-events: none;
  background: var(--line);
  color: var(--muted);
  border-color: var(--line);
}

/* Section Headings */
.section-header {
  margin: 60px 0 32px; /* Reduced from 120px 0 60px */
  text-align: center;
}

.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.2rem; /* Reduced from 3.2rem */
  color: var(--ink);
  margin: 0 0 8px;
}

/* Contact / About */
.contact-section {
  background: var(--fg);
  color: var(--fg-alt);
  border-radius: 32px;
  padding: 50px; /* Reduced from 80px */
  margin-top: 60px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--fg-alt);
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  text-transform: uppercase;
  font-size: 0.9rem;
  border: 1px solid rgba(253, 251, 247, 0.35);
}

.btn-secondary:hover {
  border-color: rgba(253, 251, 247, 0.8);
}

/* Subpage Components */
.przewodnik-section {
  background: var(--paper);
  padding: 26px 32px 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.przewodnik-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.62rem;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
}

.recipe-card {
  background: #fdfbf7;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px; /* Reduced from 40px */
  margin: 24px 0;
}

.recipe-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.tag {
  background: #f1ede4;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.7rem;
}

.note-box {
  background: #fdfaf5;
  border-left: 4px solid var(--accent);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 16px 16px 0;
}

@media (max-width: 900px) {
  .hero-content, .contact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image { order: -1; margin: 0 auto; }
}
/* Subpage Specific Refinements */
.przewodnik-kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  display: block;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  padding: 8px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 100px;
}

.back-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateX(-5px);
}

.przewodnik-cover h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.przewodnik-cover h2 {
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 400;
  max-width: 800px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.about-cover .przewodnik-cover h2,
.about-cover h2 {
  max-width: 720px;
}

.przewodnik-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.przewodnik-author::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--line);
}

/* Markdown Table Styling */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

th, td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: #fdfaf5;
  color: var(--accent);
  font-weight: 800;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

td {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover td {
  background: #fdfdfd;
}

/* Simplified Paragraphs & Lists */
.przewodnik-section p {
  line-height: 1.65;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.05rem;
}

.przewodnik-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 20px;
}

.przewodnik-section h3 {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--strong-dark);
  margin: 22px 0 10px;
  letter-spacing: 0.01em;
}

.przewodnik-section h4 {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 700;
  color: var(--muted);
  margin: 18px 0 8px;
  letter-spacing: 0.01em;
}

.przewodnik-section strong {
  color: var(--ink);
  font-weight: 700;
}

.przewodnik-section ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
  line-height: 1.52;
  color: var(--ink);
}

.przewodnik-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.6;
  font-size: 1.2rem;
  top: -1px;
}

.przewodnik-section ol {
  margin: 0 0 20px;
  padding-left: 24px;
}

.przewodnik-section ol li {
  margin-bottom: 4px;
  line-height: 1.52;
  color: var(--ink);
}

.przewodnik-section code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #f6efe4;
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.95em;
}

/* Redesigned Tips (Blockquotes) */
blockquote {
  margin: 28px 0;
  padding: 28px 24px 22px;
  background: #fdfaf5;
  border: 1px solid var(--line);
  border-radius: 24px;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,0.02);
}

blockquote::before {
  content: "💡";
  position: absolute;
  top: -18px;
  left: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

blockquote strong:first-of-type {
  display: block;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

/* Link Styling - Minimalist */
.markdown-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(139, 94, 52, 0.2); /* Very thin underline */
  transition: all 0.2s ease;
}

.markdown-content a:hover {
  border-bottom-color: var(--accent);
  color: var(--ink);
}



/* Recipe Card Styling */
.recipe-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
  margin: 24px 0;
  position: relative;
  box-shadow: var(--shadow);
  border-left: 8px solid var(--accent);
}

.recipe-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  line-height: 1.22;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.recipe-card p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.about-page-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.about-page-card {
  height: 100%;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.about-page-card .btn-secondary {
  color: var(--accent);
  border-color: var(--line);
  background: #fdfaf5;
}

.about-page-card .btn-secondary:hover {
  border-color: var(--accent);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.certificate-card {
  background: #fdfbf7;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(45, 36, 30, 0.04);
}

.certificate-card h3 {
  margin: 0 0 12px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.certificate-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.certificate-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px solid rgba(139, 94, 52, 0.25);
}

.certificate-card a:hover {
  border-bottom-color: var(--accent);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Infographic Components */
/* ... existing infographic components ... */

/* 1. Visual Timeline */
.infographic-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 48px 0;
  position: relative;
}

.infographic-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
  z-index: 0;
}

.timeline-item {
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  width: 40px;
  height: 40px;
  background: var(--paper);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
  font-family: "Space Grotesk", sans-serif;
}

.timeline-content {
  background: #fdfaf5;
  padding: 24px 32px;
  border-radius: 24px;
  border: 1px solid var(--line);
  flex-grow: 1;
}

.timeline-content h4 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.timeline-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 2. Swap Card (Instead of X, try Y) */
.swap-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--shadow);
}

.swap-side {
  padding: 32px;
  background: var(--paper);
}

.swap-side.negative {
  background: #fffafa;
}

.swap-side.positive {
  background: #f8fbfa;
}

.swap-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.negative .swap-label { color: #cc6666; }
.positive .swap-label { color: #449988; }

.swap-content {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.4;
}

/* 3. Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.highlight-item {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.highlight-title {
  display: block;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.highlight-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* 4. Mini Stats */
.stat-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0;
}

.stat-label {
  width: 120px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}

.stat-progress-bg {
  flex-grow: 1;
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

/* 5. Visual Checklist */
.visual-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.visual-checklist li {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px 24px;
  border-radius: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.visual-checklist li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
  position: static; 
  opacity: 1;
}

.visual-checklist li:hover {
  transform: translateX(5px);
  border-color: var(--accent);
  background: #fdfaf5;
}

.source-disclaimer {
  font-size: 0.85rem;
  color: var(--muted);
  opacity: 0.8;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 48px;
}

/* Knowledge Card Coming Soon */
.knowledge-card.coming-soon {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f5f5f5;
}

.knowledge-card.coming-soon .knowledge-link {
  pointer-events: none;
  opacity: 0.5;
}

/* Knowledge Pills Grid */
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; /* Increased from 12px for better vertical spacing */
}

.knowledge-card {
  position: relative;
  overflow: visible;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px; /* Increased padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.knowledge-badge {
  position: absolute;
  top: -10px;
  left: 12px; /* Moved to left */
  background: var(--line);
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--line);
  z-index: 10;
}

/* CTA Box */
.cta-box {
  background: var(--fg);
  color: var(--fg-alt);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  margin: 48px 0;
}

.cta-box h3 {
  color: white;
  margin-top: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.cta-box p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
}

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

.cta-link {
  padding: 12px 24px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.cta-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}
