/* ==========================================================
   THE EXIT BUILD -- shared-styles.css
   Design system: glassmorphism, neural grid, brass/navy
   ========================================================== */

/* 1. BRAND TOKENS */
:root {
  --navy:        #1A2F4A;
  --brass:       #C9A84C;
  --near-black:  #0D1B2A;
  --text:        #E8E8E8;
  --text-muted:  #9AA5B4;
  --cyan:        #00D4FF;
  --glass-bg:    rgba(255, 255, 255, 0.06);
  --glass-border:rgba(201, 168, 76, 0.15);
  --glass-glow:  rgba(201, 168, 76, 0.2);
  --gradient-cta:linear-gradient(90deg, #C9A84C, #00D4FF);
}

/* 2. RESET */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote {
  margin: 0;
  padding: 0;
}
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }
a { color: var(--brass); text-decoration: none; }
a:hover { opacity: 0.85; }
button { cursor: pointer; }

/* 3. BODY BASE */
body {
  background-color: var(--near-black);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* 4. NEURAL BG FIXED LAYER */
.neural-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.07;
  pointer-events: none;
  overflow: hidden;
}

@keyframes neural-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

@keyframes neural-draw {
  from { stroke-dashoffset: var(--dash-len); }
  to   { stroke-dashoffset: 0; }
}

/* 5. NAVIGATION */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.9rem;
  color: var(--brass);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.nav-logo::before { content: '// '; }

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brass); opacity: 1; }

.nav-subscribe {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-cta);
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  flex-shrink: 0;
}
.nav-subscribe:hover { opacity: 0.9; color: var(--navy); }

.nav-days {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.75rem;
  color: var(--brass);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Hamburger (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brass);
  transition: all 0.3s;
}

/* Mobile dropdown nav */
.nav-dropdown {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 1.5rem 1.5rem;
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  flex-direction: column;
  gap: 0;
}
.nav-dropdown.open { display: flex; }
.nav-dropdown a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.nav-dropdown a:hover,
.nav-dropdown a.active { color: var(--brass); }
.nav-dropdown .nav-subscribe {
  display: block;
  text-align: center;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
}

/* Mobile bottom fixed bar */
.nav-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 56px;
  background: rgba(13, 27, 42, 0.95);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-bottom-bar-inner {
  display: flex;
  height: 100%;
}
.nav-bottom-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-bottom-item:hover,
.nav-bottom-item.active { color: var(--brass); opacity: 1; }
.nav-bottom-item svg { width: 18px; height: 18px; }
.nav-bottom-item span {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.6rem;
  letter-spacing: -0.02em;
}

/* Nav spacer */
.nav-spacer { height: 64px; }

@media (max-width: 768px) {
  .site-nav { padding: 0 1.25rem; }
  .nav-hamburger { display: flex; }
  .nav-links-wrap { display: none; }
  .nav-bottom-bar { display: block; }
  .nav-days { display: none; }

  /* Add bottom padding for fixed bar */
  body { padding-bottom: 56px; }
}

/* 6. FOOTER */
.site-footer {
  background: var(--near-black);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  padding: 2rem;
  text-align: center;
  font-family: 'Source Code Pro', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}
.site-footer a {
  color: var(--brass);
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }

/* 7. GLASS CARD */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px -8px var(--glass-glow);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px -4px var(--glass-glow);
}

/* 8. METRIC CARDS */
.metric-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px -8px var(--glass-glow);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--brass);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.metric-card:hover { transform: translateY(-2px); }

.metric-number {
  display: block;
  font-family: 'Source Code Pro', monospace;
  font-size: 2.5rem;
  color: var(--brass);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.metric-label {
  font-family: Inter, sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.metric-status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00FF41;
  margin-right: 0.5rem;
  vertical-align: middle;
  animation: status-pulse 2s infinite;
}

/* 9. EPISODE CARDS */
.episode-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 20px -8px var(--glass-glow);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.episode-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px -4px var(--glass-glow);
}

.episode-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--near-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Source Code Pro', monospace;
  font-size: 1.5rem;
  color: var(--brass);
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}
.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.episode-body { padding: 1.25rem; }

.episode-badge {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 0.7rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  background: var(--brass);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.episode-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.episode-date {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.episode-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.episode-links a {
  color: var(--brass);
  font-size: 0.85rem;
  margin-right: 1rem;
  text-decoration: none;
}
.episode-links a:hover { text-decoration: underline; opacity: 1; }

/* 10. BUTTONS */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--gradient-cta);
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}
.btn-primary:hover { opacity: 0.9; color: var(--navy); }

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: transparent;
  color: var(--brass);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--brass);
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.08);
  opacity: 1;
  color: var(--brass);
}

/* 11. FORMS */
.form-row {
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 480px;
}

input[type="email"],
input[type="text"] {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px 0 0 4px;
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
input[type="email"]:focus,
input[type="text"]:focus {
  border-color: var(--brass);
}
input::placeholder { color: var(--text-muted); }

.form-row button[type="submit"],
.form-row .btn-primary {
  border-radius: 0 4px 4px 0;
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.06);
  border-radius: 4px;
  color: var(--brass);
  font-size: 0.9rem;
  font-family: 'Source Code Pro', monospace;
  letter-spacing: -0.02em;
}

@media (max-width: 520px) {
  .form-row { flex-direction: column; }
  input[type="email"],
  input[type="text"] { border-radius: 4px; border: 1px solid rgba(201,168,76,0.3); }
  .form-row button[type="submit"],
  .form-row .btn-primary { border-radius: 4px; width: 100%; }
}

/* 12. SECTION UTILITIES */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }

.section-tag {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 0.75rem;
}
.section-tag::before { content: '// '; }

.section-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

/* 13. TYPOGRAPHY */
h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--text);
}
h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--text);
}
h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--text);
}

.metric, .tool-name, .tag-label, .code {
  font-family: 'Source Code Pro', monospace;
  letter-spacing: -0.02em;
}

/* Disclosure block */
.disclosure {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  padding: 0.85rem 1.25rem;
  border-left: 3px solid var(--brass);
  background: rgba(201, 168, 76, 0.04);
  border-radius: 0 4px 4px 0;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* 14. TYPING CURSOR */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
.typing-cursor::after {
  content: '|';
  color: var(--brass);
  animation: blink 1s step-end infinite;
}

/* 15. STATUS PULSE */
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 65, 0.4); }
  50%       { box-shadow: 0 0 0 4px rgba(0, 255, 65, 0); }
}

/* 16. BRASS GLOW PULSE (silhouette image) */
@keyframes brass-glow {
  0%, 100% {
    filter: drop-shadow(0 0 15px rgba(201, 168, 76, 0.3));
  }
  50% {
    filter: drop-shadow(0 0 30px rgba(201, 168, 76, 0.5));
  }
}
.brass-glow {
  animation: brass-glow 3s ease-in-out infinite;
}

/* 17. COUNT-UP */
.count-up { transition: all 0.1s; }

/* 18. GRID UTILITIES */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .section { padding: 3.5rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  .section-heading { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* 19. TABLE STYLES */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.data-table thead tr {
  background: var(--brass);
}
.data-table th {
  padding: 0.75rem 1rem;
  text-align: left;
  color: var(--navy);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  color: var(--text);
  vertical-align: middle;
}
.data-table td.tool-name-cell {
  font-family: 'Source Code Pro', monospace;
  letter-spacing: -0.02em;
  color: var(--brass);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table .status-active {
  color: #6ee7b7;
  font-family: 'Source Code Pro', monospace;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}
.data-table .status-pending {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* 20. PILL FILTER NAV */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-family: 'Source Code Pro', monospace;
  font-size: 0.78rem;
  letter-spacing: -0.02em;
  color: var(--brass);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 99px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.pill:hover, .pill.active {
  background: var(--brass);
  color: var(--navy);
  opacity: 1;
}

/* 21. MODAL (exit intent) */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--brass);
  border-radius: 8px;
  padding: 2rem;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.25);
}
.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--brass);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s;
}
.modal-close:hover { opacity: 0.7; }
.modal-box h3 {
  font-family: 'Manrope', sans-serif;
  margin-bottom: 0.6rem;
}
.modal-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

/* 22. TIMELINE (about page) */
.timeline {
  position: relative;
  display: flex;
  gap: 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 168, 76, 0.25);
}
.timeline-node {
  flex: 1;
  position: relative;
  padding-top: 2rem;
}
.timeline-dot {
  position: absolute;
  top: 3px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brass);
  border: 2px solid var(--near-black);
  z-index: 1;
}
.timeline-dot.target {
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.6);
  animation: brass-glow 2s ease-in-out infinite;
}
.timeline-dot.inactive {
  background: var(--text-muted);
  box-shadow: none;
}
.timeline-date {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.78rem;
  color: var(--brass);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.timeline-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-right: 1rem;
}

@media (max-width: 600px) {
  .timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
  .timeline::before { display: none; }
  .timeline-node { padding-top: 0; padding-left: 2rem; }
  .timeline-dot { top: 2px; }
}

/* 23. RULES LIST (about page) */
.rules-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
  font-size: 0.95rem;
}
.rules-list li:last-child { border-bottom: none; }
.rule-num {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: -0.02em;
  min-width: 2rem;
  flex-shrink: 0;
}

/* 24. PRIVACY PAGE */
.privacy-content h2 {
  font-size: 1.15rem;
  color: var(--brass);
  margin: 2rem 0 0.5rem;
  font-family: 'Manrope', sans-serif;
}
.privacy-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* 25. BRASS SECTION (contrast break) */
.section-brass {
  background: var(--brass);
  padding: 4rem 2rem;
}
.section-brass h2 {
  color: var(--navy);
}
.section-brass p {
  color: var(--navy);
  opacity: 0.8;
}
.section-brass input[type="email"] {
  background: rgba(255,255,255,0.9);
  border-color: var(--navy);
  color: var(--navy);
}
.section-brass input::placeholder { color: rgba(26,47,74,0.5); }
.section-brass .btn-secondary {
  border-color: var(--navy);
  color: var(--navy);
}
.section-brass .btn-secondary:hover {
  background: rgba(26,47,74,0.1);
}

/* 26. CONTAINER */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* 27. OVERSCROLL AREA FIX for iOS */
html {
  -webkit-tap-highlight-color: transparent;
}

/* =============================
   BLOG POST STYLES
   ============================= */

.blog-post {
  max-width: 740px;
  margin: 100px auto 4rem auto;
  padding: 0 1.5rem;
}

.post-header {
  margin-bottom: 2rem;
  padding: 2rem;
}

.post-header h1 {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text);
  margin: 0.75rem 0;
  line-height: 1.2;
}

.post-meta {
  font-family: Source Code Pro, monospace;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.75rem 0;
}

.post-meta a {
  color: var(--brass);
  text-decoration: none;
}

.post-disclosure {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 1rem 0;
  padding: 0.75rem;
  border-left: 3px solid rgba(201,168,76,0.3);
}

.video-embed {
  margin: 1.5rem 0;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.post-body {
  margin-bottom: 2rem;
}

.post-body h2 {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brass);
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.post-body p {
  font-family: Inter, system-ui;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.tools-table,
.math-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-family: Inter, system-ui;
  font-size: 0.9rem;
}

.tools-table th,
.math-table th {
  background: var(--brass);
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
}

.tools-table td,
.math-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  color: var(--text);
  vertical-align: top;
}

.tools-table tr:nth-child(even) td,
.math-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.03);
}

.tools-table td a,
.math-table td a {
  color: var(--brass);
  text-decoration: none;
}

.tools-table td a:hover,
.math-table td a:hover {
  text-decoration: underline;
}

.next-log {
  margin: 2rem 0;
  padding: 1.5rem;
}

.next-log p {
  margin: 0;
  font-family: Source Code Pro, monospace;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.next-log a {
  color: var(--brass);
  text-decoration: none;
  font-weight: 600;
}

.post-subscribe {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  text-align: center;
}

.post-subscribe h2 {
  font-family: Manrope, sans-serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  margin: 3rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-family: Source Code Pro, monospace;
  font-size: 0.85rem;
}

.post-nav a {
  color: var(--brass);
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-post {
    margin-top: 80px;
    padding: 0 1rem;
  }
  .post-header h1 {
    font-size: 1.6rem;
  }
  .tools-table,
  .math-table {
    font-size: 0.8rem;
  }
  .tools-table th,
  .math-table th,
  .tools-table td,
  .math-table td {
    padding: 0.5rem 0.6rem;
  }
}
