/* ========== V1 — EDITORIAL DARK ========== */
.v1 {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text-dark);
  min-height: 100%;
}
.v1-light { background: var(--bg-light); color: var(--text-light); }
.v1-light .insta-card,
.v1-light .archive { background: var(--bg-card-light); border-color: var(--border-light); }
.v1-light .insta-handle,
.v1-light .archive-title { color: var(--text-light); }
.v1-light .archive-headline { color: var(--text-light); }
.v1-light .insta-cap { color: var(--text-light); }

/* Header */
.v1-header {
  background: #0a0a0f;
  border-bottom: 1px solid #1a1a22;
  position: sticky;
  top: 0;
  z-index: 100;
}
.v1-light .v1-header { background: #fff; border-color: var(--border-light); }
.v1-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 40px 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
}
.v1-menu {
  background: transparent;
  border: none;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
  width: 32px;
  height: 32px;
}
.v1-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #15151c;
  border: 1px solid #1a1a22;
  border-radius: 4px;
  padding: 8px 12px;
  max-width: 320px;
}
.v1-light .v1-search { background: #f4f4f6; border-color: var(--border-light); }
.v1-search input {
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  outline: none;
  width: 100%;
}
.v1-search span { color: #6a6a76; }
.v1-logo-center { justify-self: center; }
.v1-header-right { justify-self: end; }

.v1-nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  border-top: 1px solid #1a1a22;
  overflow-x: auto;
}
.v1-light .v1-nav { border-color: var(--border-light); }
.v1-nav-item {
  font-size: 13px;
  font-weight: 500;
  padding: 14px 16px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  color: #a8a8b4;
  transition: color 0.15s;
}
.v1-light .v1-nav-item { color: #5a5a66; }
.v1-nav-item:hover { color: #fff; }
.v1-light .v1-nav-item:hover { color: #000; }
.v1-nav-item.active { color: #fff; font-weight: 600; }
.v1-light .v1-nav-item.active { color: #000; }
.v1-nav-spacer { flex: 1; }
.v1-edition-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  border: 1px solid;
  border-radius: 999px;
  white-space: nowrap;
}
.v1-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}

/* Main */
.v1-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 24px 60px;
}
.v1-compact .v1-main { padding: 18px 24px 40px; }

/* Hero row — manchete dominante + grid + side */
.v1-hero-row {
  display: grid;
  grid-template-columns: 1.6fr 1.3fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #1a1a22;
}
.v1-compact .v1-hero-row { gap: 24px; padding-bottom: 24px; }
.v1-light .v1-hero-row { border-color: var(--border-light); }

.v1-headline { position: relative; }
.v1-pull-quote {
  position: absolute;
  top: -20px;
  left: -8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 80px;
  line-height: 1;
  color: rgba(28,232,200,0.15);
  font-weight: 700;
  pointer-events: none;
}
.v1-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.v1-kicker-sm {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}
.v1-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 16px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: rgba(255,255,255,0.4);
  text-wrap: balance;
}
.v1-light .v1-h1 { text-decoration-color: rgba(0,0,0,0.4); }
.v1-compact .v1-h1 { font-size: 34px; }
.v1-dek {
  font-size: 16px;
  line-height: 1.5;
  color: #a8a8b4;
  margin: 0 0 18px;
  text-wrap: pretty;
}
.v1-light .v1-dek { color: #4a4a56; }
.v1-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v1-bullets li {
  border-left: 2px solid;
  padding: 4px 0 4px 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #c8c8d0;
}
.v1-light .v1-bullets li { color: #2a2a36; }
.v1-hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 8px;
}

/* Mid column */
.v1-mid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.v1-compact .v1-mid { gap: 18px; }
.v1-mid-item { padding-bottom: 22px; border-bottom: 1px solid #1a1a22; }
.v1-mid-item:last-child { border-bottom: none; }
.v1-light .v1-mid-item { border-color: var(--border-light); }
.v1-mid-img {
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 12px;
}
.v1-h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 600;
  margin: 0 0 8px;
}
.v1-compact .v1-h3 { font-size: 19px; }
.v1-dek-sm {
  border-left: 2px solid;
  padding: 2px 0 2px 12px;
  font-size: 13px;
  line-height: 1.4;
  color: #a8a8b4;
  margin: 0;
}
.v1-light .v1-dek-sm { color: #5a5a66; }

/* Right column */
.v1-side-card {
  background: #0d0d12;
  border: 1px solid #1a1a22;
  border-radius: 6px;
  padding: 20px;
  position: sticky;
  top: 110px;
}
.v1-light .v1-side-card { background: #fff; border-color: var(--border-light); }
.v1-side-head {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #1a1a22;
}
.v1-light .v1-side-head { border-color: var(--border-light); }
.v1-side-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #1a1a22;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.v1-side-item:last-of-type { border-bottom: none; }
.v1-light .v1-side-item { border-color: var(--border-light); }
.v1-side-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  width: 22px;
}
.v1-side-kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a8a96;
  margin-bottom: 4px;
}
.v1-side-title {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
}
.v1-side-more {
  width: 100%;
  margin-top: 14px;
  background: transparent;
  border: 1px solid #2a2a35;
  color: inherit;
  font-family: inherit;
  font-size: 12px;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
}
.v1-light .v1-side-more { border-color: var(--border-light); }

/* Today strip */
.v1-today-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  margin: 36px 0;
  border-top: 1px solid #1a1a22;
  border-bottom: 1px solid #1a1a22;
}
.v1-light .v1-today-strip { border-color: var(--border-light); }
.v1-today-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 6px 12px;
  border-radius: 3px;
}
.v1-today-meta {
  flex: 1;
  font-size: 14px;
  color: #a8a8b4;
}
.v1-light .v1-today-meta { color: #5a5a66; }
.v1-dot { margin: 0 8px; opacity: 0.5; }
.v1-today-cta {
  background: transparent;
  border: 1px solid;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
}

/* Bottom row */
.v1-bottom-row {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}
.v1-section-head { margin-bottom: 18px; }
.v1-section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.v1-section-sub {
  font-size: 13px;
  color: #8a8a96;
}
.v1-tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.v1-tool {
  background: #0d0d12;
  border: 1px solid #1a1a22;
  border-radius: 6px;
  padding: 14px;
}
.v1-light .v1-tool { background: #fff; border-color: var(--border-light); }
.v1-tool-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.v1-tool-img {
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 0;
}
.v1-tool-top .v1-tool-img { width: 70%; }
.v1-tool-score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid;
  border-radius: 4px;
  padding: 4px 10px;
}
.v1-tool-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a8a96;
  margin-bottom: 4px;
}
.v1-tool-name { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.v1-tool-note { font-size: 12px; line-height: 1.4; color: #a8a8b4; }
.v1-light .v1-tool-note { color: #5a5a66; }

/* Newsletter CTA */
.v1-newsletter-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background: #0d0d12;
  border: 1px solid #1a1a22;
  border-radius: 8px;
  margin-top: 48px;
}
.v1-light .v1-newsletter-cta { background: #f4f4f6; border-color: var(--border-light); }
.v1-cta-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 8px 0 10px;
  line-height: 1.1;
}
.v1-cta-text p {
  font-size: 14px;
  color: #a8a8b4;
  margin: 0;
}
.v1-light .v1-cta-text p { color: #5a5a66; }
.v1-cta-form { display: flex; gap: 8px; }
.v1-cta-form input {
  flex: 1;
  background: #050507;
  border: 1px solid #2a2a35;
  color: inherit;
  font-family: inherit;
  padding: 14px 16px;
  border-radius: 4px;
  font-size: 14px;
}
.v1-light .v1-cta-form input { background: #fff; border-color: var(--border-light); }
.v1-cta-form input:focus { outline: none; border-color: #5a5a66; }
.v1-cta-form button {
  border: none;
  color: #000;
  font-family: inherit;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 22px;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

/* Footer */
.v1-footer {
  border-top: 1px solid #1a1a22;
  margin-top: 60px;
  padding: 48px 24px 24px;
  background: #0a0a0f;
}
.v1-light .v1-footer { background: #f4f4f6; border-color: var(--border-light); }
.v1-footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}
.v1-footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.v1-footer-bio {
  font-size: 13px;
  color: #8a8a96;
  margin: 12px 0 0;
  max-width: 320px;
  line-height: 1.5;
}
.v1-footer-head {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.v1-footer-grid a {
  font-size: 13px;
  color: #a8a8b4;
  text-decoration: none;
  cursor: pointer;
}
.v1-light .v1-footer-grid a { color: #5a5a66; }
.v1-footer-grid a:hover { color: #fff; }
.v1-light .v1-footer-grid a:hover { color: #000; }
.v1-footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid #1a1a22;
  padding-top: 20px;
  font-size: 12px;
  color: #6a6a76;
  text-align: center;
}
.v1-light .v1-footer-bottom { border-color: var(--border-light); color: #8a8a96; }
