:root {
  --accent: #F5F5F5;
  --bg: #060606;
  --fg: #E8E8E8;
  --bgCard: #0C0C0C;
  --border: #1C1C1C;
  --bodyText: #CFCFCF;
  --metaText: #707070;
  --subtleText: #484848;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Grid pattern */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Custom cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 100000;
  mix-blend-mode: difference;
  transition: width 0.2s ease, height 0.2s ease, margin 0.2s ease;
  margin-left: -10px;
  margin-top: -10px;
}
.cursor.hover {
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
}
@media (pointer: coarse) {
  .cursor { display: none !important; }
  body { cursor: auto; }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  border-bottom: 1px solid var(--border);
}
.header-logo {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--fg);
  text-decoration: none;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-right a {
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.header-right a:hover { color: var(--accent); }
.header-right svg { width: 20px; height: 20px; fill: currentColor; }
.header-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}
.header-subscribe {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent) !important;
}
.header-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  z-index: 1001;
}
.header-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg);
  transition: all 0.3s ease;
}
.header-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.header-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--bg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 48px;
  line-height: 1;
  cursor: none;
  padding: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--accent);
}
.mobile-menu-content {
  text-align: center;
  padding: 40px;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--fg);
  text-decoration: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 20px;
  transition: color 0.2s;
}
.mobile-menu-nav a:hover {
  color: var(--accent);
}
.mobile-menu-nav svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.mobile-menu-subscribe {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 255, 255, 0.08);
}
.mobile-menu-subscribe:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ===== INTERACTIVE GRID HERO (home only) ===== */
.hero {
  height: 85vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--accent);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
  cursor: none;
}

.hero-scroll-indicator span {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--metaText);
  text-transform: uppercase;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 768px) {
  .hero-scroll-indicator {
    bottom: 24px;
  }
}

.hero-grid-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Keep grid visible on mobile now that pulse works */

.hero-center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 clamp(20px, 4vw, 60px);
}

.hero-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-title .accent-word {
  color: #FFFFFF;
  text-shadow: 0 0 30px rgba(245, 245, 245, 0.4), 0 0 60px rgba(245, 245, 245, 0.15);
}

.hero-desc {
  font-size: 18px;
  color: var(--bodyText);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.hero-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.hero-form input::placeholder { color: var(--metaText); }
.hero-form input:focus { border-color: var(--accent); }
.hero-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 255, 255, 0.08);
}
.hero-form button:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ===== INLINE POST SUBSCRIBE FORM ===== */
.post-subscribe-inline {
  background: var(--bgCard);
  border: 1px solid var(--border);
  padding: 32px;
  margin: 48px 0;
  text-align: center;
  border-radius: 4px;
}

.post-subscribe-inline h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--fg);
  margin: 0 0 12px 0;
}

.post-subscribe-inline p {
  color: var(--bodyText);
  font-size: 16px;
  margin: 0 0 24px 0;
}

.post-subscribe-inline form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 420px;
  margin: 0 auto;
}

.post-subscribe-inline input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}

.post-subscribe-inline input::placeholder {
  color: var(--metaText);
}

.post-subscribe-inline input:focus {
  border-color: var(--accent);
}

.post-subscribe-inline button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 255, 255, 0.08);
}

.post-subscribe-inline button:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .post-subscribe-inline {
    padding: 24px 20px;
  }
  .post-subscribe-inline form {
    flex-direction: column;
  }
  .post-subscribe-inline input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
}

/* ===== FORM FEEDBACK ===== */
.form-message {
  display: none;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0;
  margin-top: 8px;
  flex-basis: 100%;
}
.form-success { color: #4ade80; }
.form-error { color: #f87171; }
.form-loading { color: var(--metaText); }

[data-members-form].success .form-success,
[data-members-form].error .form-error,
[data-members-form].loading .form-loading {
  display: block;
}
[data-members-form].success input,
[data-members-form].success button {
  display: none;
}

/* ===== POST BANDS (home) ===== */
.band {
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.band.visible {
  opacity: 1;
  transform: translateY(0);
}

.band-hero {
  height: 70vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.band-hero .band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, color-mix(in srgb, var(--bg) 60%, transparent) 40%, color-mix(in srgb, var(--bg) 20%, transparent) 100%);
}
.band-hero .band-content {
  position: relative;
  z-index: 2;
  padding: clamp(30px, 5vw, 60px);
  width: 100%;
}
.band-hero .band-tag {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.band-hero .band-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
  max-width: 700px;
  transition: color 0.3s;
}
.band-hero:hover .band-title { color: var(--accent); }
.band-hero .band-meta {
  font-size: 15px;
  color: var(--metaText);
}
.band-hero .band-meta span { margin: 0 8px; opacity: 0.5; }

.band-post {
  height: 350px;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid var(--border);
}
.band-post.reverse { flex-direction: row-reverse; }

.band-post .band-image {
  width: 45%;
  flex-shrink: 0;
  overflow: hidden;
}
.band-post .band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.band-post:hover .band-image img {
  transform: scale(1.03);
}

.band-post .band-text {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 60px);
}
.band-post .band-tag {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.band-post .band-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 14px;
  transition: color 0.3s;
}
.band-post:hover .band-title { color: var(--accent); }

.band-post .band-excerpt {
  color: var(--bodyText);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.band-post .band-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.band-post .band-meta {
  font-size: 14px;
  color: var(--metaText);
}
.band-post .band-meta span { margin: 0 6px; opacity: 0.5; }
.band-post .band-read {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--accent);
  transition: opacity 0.3s;
  white-space: nowrap;
}
.band-post .band-read:hover { opacity: 0.7; }

/* ===== SUBSCRIBE BANNER (home) ===== */
.subscribe-banner {
  text-align: center;
  padding: 100px clamp(20px, 4vw, 60px);
  position: relative;
}
.subscribe-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}
.subscribe-banner h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 48px);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.subscribe-banner p {
  color: var(--bodyText);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.subscribe-banner .sub-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}
.subscribe-banner .sub-form input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bgCard);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
}
.subscribe-banner .sub-form input::placeholder { color: var(--metaText); }
.subscribe-banner .sub-form input:focus { border-color: var(--accent); }
.subscribe-banner .sub-form button {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: none;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 255, 255, 0.08);
}
.subscribe-banner .sub-form button:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* ===== POST PAGE ===== */
.post-back {
  display: inline-block;
  padding: 20px clamp(20px, 4vw, 60px);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--metaText);
  text-decoration: none;
  transition: color 0.2s;
}
.post-back:hover {
  color: var(--fg);
}

.post-header {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(60px, 10vh, 100px) clamp(20px, 4vw, 40px) clamp(40px, 6vh, 60px);
  text-align: center;
}

.post-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.post-tag {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

.post-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 24px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  color: var(--bodyText);
}
.post-meta span { opacity: 0.6; }

.post-feature-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
}
.post-feature-image img {
  width: 100%;
  display: block;
  border: 1px solid var(--border);
}

.post-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) 80px;
  color: var(--bodyText);
}

.post-content p {
  margin-bottom: 28px;
}

.post-content h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.3;
  color: var(--fg);
  margin-top: 48px;
  margin-bottom: 20px;
}

.post-content h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 3vw, 24px);
  line-height: 1.3;
  color: var(--fg);
  margin-top: 40px;
  margin-bottom: 16px;
}

.post-content ul,
.post-content ol {
  margin-bottom: 28px;
  padding-left: 24px;
}

.post-content li {
  margin-bottom: 12px;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 40px 0;
  font-style: italic;
  color: var(--fg);
}

.post-content code {
  background: var(--bgCard);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 16px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
}

.post-content pre {
  background: var(--bgCard);
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 32px 0;
}

.post-content pre code {
  background: none;
  border: none;
  padding: 0;
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.post-content a:hover { opacity: 0.7; }

.post-content button,
.post-content .kg-button-card a {
  padding: 14px 28px;
  background: var(--accent);
  color: var(--bg);
  border: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3), 0 4px 12px rgba(255, 255, 255, 0.08);
}

.post-content button:hover,
.post-content .kg-button-card a:hover {
  background: var(--fg);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5), 0 8px 24px rgba(255, 255, 255, 0.2);
}

.post-content img {
  width: 100%;
  margin: 0;
  border: 1px solid var(--border);
}

.post-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

.post-footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px clamp(20px, 4vw, 40px) 80px;
  border-top: 1px solid var(--border);
}

.post-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.post-author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.post-author-info h4 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 4px;
}

.post-author-info p {
  font-size: 15px;
  color: var(--metaText);
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 40px 20px 48px;
  border-top: 1px solid var(--border);
  color: var(--metaText);
  font-size: 14px;
}
.footer strong {
  color: var(--fg);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}
.footer .made-with {
  margin-top: 8px;
  color: var(--bodyText);
  font-size: 16px;
}

/* ===== SUBSCRIPTION SUCCESS BANNER ===== */
.subscribe-success-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--accent);
  color: var(--bg);
  padding: 16px 20px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.subscribe-success-banner.visible {
  transform: translateY(0);
}

.subscribe-success-banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.subscribe-success-banner .banner-text {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.subscribe-success-banner .banner-cta {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg);
  color: var(--accent);
  text-decoration: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: opacity 0.2s;
}

.subscribe-success-banner .banner-cta:hover {
  opacity: 0.8;
}

.subscribe-success-banner .banner-close {
  color: var(--bg);
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  opacity: 0.8;
  transition: opacity 0.2s;
  cursor: pointer;
  padding: 0 8px;
}

.subscribe-success-banner .banner-close:hover {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .header-hamburger {
    display: flex;
  }
  .header-logo {
    font-weight: 700;
  }
  .hero { height: 75vh; }
  .hero-column {
    font-size: clamp(28px, 5vw, 40px);
  }
  .hero-title {
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 700;
  }
  .band-post {
    flex-direction: column !important;
    height: auto;
  }
  .band-post .band-image {
    width: 100%;
    height: 220px;
  }
  .band-post .band-text {
    width: 100%;
    padding: 24px;
  }
  .band-hero { height: 50vh; }
  .hero-form {
    flex-direction: column;
  }
  .hero-form input {
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .subscribe-banner .sub-form {
    flex-direction: column;
    align-items: center;
  }
  .subscribe-banner .sub-form input {
    width: 100%;
    border-right: 1px solid var(--border);
    border-bottom: none;
  }
  .post-title {
    font-size: clamp(28px, 6vw, 40px);
  }
  .post-content h2 {
    font-size: clamp(22px, 4vw, 28px);
  }
  .post-content .kg-button-card {
    text-align: center;
  }
  .post-content button,
  .post-content .kg-button-card a {
    width: auto;
    display: inline-block;
    text-align: center;
  }
  .kg-bookmark-container {
    flex-direction: column !important;
  }
  .kg-bookmark-thumbnail {
    min-width: 100% !important;
    max-width: 100% !important;
    height: 180px;
  }
}

/* ===== GHOST CONTENT CARDS ===== */
.kg-card {
  margin: 0 0 28px 0;
}

.kg-image-card,
.kg-gallery-card {
  margin: 0 0 20px 0;
}

.kg-image {
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
}

.kg-image-card figcaption,
.kg-gallery-card figcaption {
  font-size: 14px;
  line-height: 1.5;
  color: var(--bodyText);
  opacity: 0.7;
  text-align: center;
  margin-top: 3px;
  margin-bottom: 20px;
}

.kg-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kg-gallery-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.kg-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.kg-bookmark-card {
  width: 100%;
  margin: 40px 0;
  background: transparent !important;
}

.kg-bookmark-container {
  display: flex !important;
  text-decoration: none;
  border: 1px solid var(--border) !important;
  background: var(--bgCard) !important;
  overflow: hidden;
  transition: all 0.2s;
  border-radius: 4px;
}

.kg-bookmark-container:hover {
  border-color: var(--accent) !important;
}

.kg-bookmark-content {
  flex-grow: 1;
  padding: 20px;
  background: transparent !important;
}

.kg-bookmark-title {
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1.5 !important;
  color: var(--fg) !important;
  margin-bottom: 8px;
}

.kg-bookmark-description {
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: var(--bodyText) !important;
  margin-bottom: 12px;
  max-height: 3em;
  overflow: hidden;
}

.kg-bookmark-metadata {
  display: flex;
  align-items: center;
  font-size: 13px !important;
  color: var(--bodyText) !important;
  opacity: 0.7;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  flex-wrap: nowrap;
  min-width: 0;
}

.kg-bookmark-author,
.kg-bookmark-publisher {
  color: var(--bodyText) !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.kg-bookmark-icon {
  width: 28px !important;
  height: 28px !important;
  min-width: 28px;
  max-height: 28px;
  margin-right: 16px;
  object-fit: cover;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

.kg-bookmark-thumbnail {
  position: relative;
  min-width: 200px;
  max-width: 200px;
  background: var(--bgCard) !important;
}

.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.kg-embed-card {
  margin: 40px 0;
}

.kg-embed-card iframe {
  width: 100%;
  border: 1px solid var(--border);
}

.kg-video-card,
.kg-audio-card {
  margin: 40px 0;
}

.kg-video-card video,
.kg-audio-card audio {
  width: 100%;
  border: 1px solid var(--border);
}

/* ===== TABLES ===== */
.post-content table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  border: 1px solid var(--border);
  background: var(--bgCard);
}

.post-content table th,
.post-content table td {
  padding: 14px 18px;
  text-align: left;
  border: 1px solid var(--border);
}

.post-content table th {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  background: rgba(255, 255, 255, 0.03);
}

.post-content table td {
  font-size: 15px;
  line-height: 1.6;
  color: var(--bodyText);
}

.post-content table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ===== GHOST EDITOR WIDE/FULL CLASSES ===== */
.kg-width-wide {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.kg-width-full {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.post-content .kg-width-wide,
.post-content .kg-width-full {
  margin-top: 0;
  margin-bottom: 0;
}

.post-content .kg-width-wide img,
.post-content .kg-width-full img {
  width: 100%;
  border: 1px solid var(--border);
}
