/* ===== PREMIUM MINECRAFT EDITORIAL SECONDARY PAGES ===== */
:root {
  --ed-bg: #060504;
  --ed-stone: #1a1612;
  --ed-deepslate: #0e0c0a;
  --ed-panel: #221c18;
  --ed-parchment: #fdf6e3;
  --ed-parchment-dark: #b8a99a;
  --ed-text: #fdf6e3;
  --ed-muted: #b8a99a;
  --ed-green: #62a336;
  --ed-green-bright: #7ec850;
  --ed-amber: #e5a348;
  --ed-purple: #7ec850;
  --ed-cyan: #7ec850;
  --ed-border: rgba(229, 163, 72, 0.2);
  --ed-max: 1240px;
  --ed-readable: 720px;
}

body.ed-page {
  background: var(--ed-bg);
  color: var(--ed-text);
}

.ed-main {
  background: var(--ed-bg);
  overflow-x: hidden;
}

/* Seamless handoff into minecraft.net black footer */
.ed-page .ed-main > .ed-section:last-of-type,
.ed-page .ed-main > .ed-cta:last-child {
  background-color: #000;
}

.ed-wrap {
  max-width: var(--ed-max);
  margin: 0 auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}

.ed-wrap--narrow {
  max-width: 1100px;
}

/* --- HERO --- */
.ed-hero {
  position: relative;
  min-height: clamp(420px, 52vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--announce-h));
}

.ed-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ed-hero--features .ed-hero__bg { object-position: center 42%; }
.ed-hero--guides .ed-hero__bg { object-position: center 35%; }
.ed-hero--faq .ed-hero__bg { object-position: center 30%; }
.ed-hero--trust .ed-hero__bg { object-position: center 40%; }
.ed-hero--download .ed-hero__bg { object-position: center 38%; }

.ed-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ed-hero--features .ed-hero__overlay {
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.15) 0%, rgba(10, 8, 6, 0.4) 45%, rgba(6, 5, 4, 0.92) 100%);
}

.ed-hero--guides .ed-hero__overlay {
  background: linear-gradient(to bottom, rgba(12, 10, 8, 0.2) 0%, rgba(12, 10, 8, 0.55) 50%, rgba(6, 5, 4, 0.94) 100%);
}

.ed-hero--faq .ed-hero__overlay {
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.25) 0%, rgba(14, 12, 10, 0.55) 45%, rgba(6, 5, 4, 0.94) 100%);
}

.ed-hero--trust .ed-hero__overlay {
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.25) 0%, rgba(10, 8, 6, 0.65) 55%, rgba(6, 5, 4, 0.96) 100%);
}

.ed-hero--download {
  min-height: clamp(380px, 48vh, 560px);
}

.ed-hero--download .ed-hero__overlay {
  background: linear-gradient(to bottom, rgba(10, 8, 6, 0.1) 0%, rgba(10, 8, 6, 0.45) 45%, rgba(6, 5, 4, 0.94) 100%);
}

.ed-hero--download .ed-hero__content {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.ed-hero--download .ed-hero__title {
  max-width: 20ch;
}

.ed-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--ed-max);
  margin: 0 auto;
  padding: 2rem clamp(1rem, 3vw, 2rem) 3rem;
}

.ed-hero--features .ed-hero__content {
  text-align: center;
  padding-bottom: 3.5rem;
}

.ed-hero--faq .ed-hero__content {
  text-align: center;
  padding-bottom: 3.5rem;
}

.ed-hero--faq .ed-breadcrumb ol {
  justify-content: center;
}

.ed-hero--faq .ed-hero__lead {
  margin-inline: auto;
  max-width: 42rem;
}

.ed-breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
}

.ed-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ed-breadcrumb a {
  color: var(--ed-green-bright);
  text-decoration: none;
}

.ed-breadcrumb a:hover { text-decoration: underline; }
.ed-breadcrumb li[aria-current="page"] { color: var(--ed-muted); }

.ed-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ed-muted);
  margin: 0 0 0.875rem;
}

.ed-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.ed-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  line-height: 1.65;
  color: var(--ed-muted);
  max-width: 42rem;
  margin: 1.125rem 0 0;
}

.ed-hero--features .ed-hero__lead { margin-inline: auto; }

.ed-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.ed-hero--features .ed-hero__actions { justify-content: center; }

/* Block transition into content */
.ed-block-edge {
  height: 12px;
  background:
    linear-gradient(135deg, var(--ed-green) 25%, transparent 25%) -6px 0,
    linear-gradient(225deg, var(--ed-green) 25%, transparent 25%) -6px 0,
    linear-gradient(45deg, var(--ed-green) 25%, transparent 25%),
    linear-gradient(315deg, var(--ed-green) 25%, var(--ed-stone) 25%);
  background-size: 12px 12px;
  background-color: var(--ed-deepslate);
}

.ed-block-edge--stone {
  background-color: var(--ed-panel);
  background-image:
    linear-gradient(135deg, #444 25%, transparent 25%) -6px 0,
    linear-gradient(225deg, #444 25%, transparent 25%) -6px 0,
    linear-gradient(45deg, #444 25%, transparent 25%),
    linear-gradient(315deg, #444 25%, var(--ed-stone) 25%);
  background-size: 12px 12px;
}

.ed-block-edge--dirt {
  background: linear-gradient(180deg, #5b8731 0%, #4a7028 40%, #6b4b32 100%);
  height: 8px;
}

.ed-block-edge--purple {
  background: linear-gradient(90deg, #3d6620 0%, #62a336 50%, #3d6620 100%);
  height: 4px;
}

/* --- SECTIONS --- */
.ed-section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.ed-section--stone { background: var(--ed-stone); }
.ed-section--deepslate { background: var(--ed-deepslate); }
.ed-section--dark { background: var(--ed-bg); }
.ed-section--parchment-band { background: #1a1612; }

.ed-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
}

.ed-section__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ed-muted);
  max-width: var(--ed-readable);
  margin: 0 0 2rem;
}

.ed-link {
  color: var(--ed-green-bright);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
}

.ed-link:hover { text-decoration: underline; }

/* Split layouts */
.ed-split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 900px) {
  .ed-split {
    grid-template-columns: 1fr 1fr;
  }
  .ed-split--reverse .ed-split__media { order: 2; }
  .ed-split--reverse .ed-split__body { order: 1; }
  .ed-split--60-40 { grid-template-columns: 1.15fr 0.85fr; }
  .ed-split--40-60 { grid-template-columns: 0.85fr 1.15fr; }
}

.ed-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ed-border);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.35);
}

.ed-split__media--portrait img {
  aspect-ratio: 3 / 4;
  max-height: 520px;
  object-fit: cover;
  border: none;
  box-shadow: none;
}

.ed-body {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ed-muted);
}

.ed-body p { margin: 0 0 1rem; }
.ed-body p:last-child { margin-bottom: 0; }
.ed-body strong { color: var(--ed-text); font-weight: 600; }

/* Fact strip */
.ed-fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ed-border);
}

.ed-fact-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ed-muted);
}

.ed-fact-strip img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* Parchment panel — lantern-lit stone tablet */
.ed-parchment {
  background: #221c18;
  color: #fdf6e3;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 2px solid rgba(229, 163, 72, 0.25);
  box-shadow: inset 0 1px 0 rgba(229, 163, 72, 0.08), 0 6px 0 rgba(0, 0, 0, 0.35);
}

.ed-parchment .ed-section__title { color: #fdf6e3; }
.ed-parchment .ed-body { color: #b8a99a; }

/* Stone panel */
.ed-stone-panel {
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 4px 0 rgba(0, 0, 0, 0.25);
}

/* Full-width image band */
.ed-band {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ed-band__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ed-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.55) 45%, rgba(8, 8, 8, 0.35) 100%);
}

.ed-band__content {
  position: relative;
  z-index: 2;
  max-width: var(--ed-max);
  margin: 0 auto;
  padding: 3rem clamp(1rem, 3vw, 2rem);
  width: 100%;
}

/* Controls grid */
.ed-controls-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .ed-controls-grid { grid-template-columns: repeat(3, 1fr); }
}

.ed-control-block {
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  padding: 1.25rem;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.ed-control-block:hover {
  transform: translateY(-2px);
  border-color: #555;
}

.ed-control-block h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  color: #fff;
}

.ed-control-block p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

/* RTX comparison */
.ed-rtx-row {
  display: grid;
  gap: 0.375rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .ed-rtx-row { grid-template-columns: 1fr 1fr; }
}

.ed-rtx-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ed-border);
}

/* Compare table */
.ed-table-wrap {
  overflow-x: auto;
  margin-top: 1.5rem;
}

.ed-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.ed-table th,
.ed-table td {
  border: 1px solid var(--ed-border);
  padding: 0.875rem 1rem;
  text-align: left;
}

.ed-table th {
  background: var(--ed-panel);
  color: #fff;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ed-table td { color: var(--ed-muted); }
.ed-table .yes { color: var(--ed-green-bright); }
.ed-table .no { color: #666; }

/* CTA band */
.ed-cta {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem);
  background: var(--ed-stone);
}

.ed-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}

.ed-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ===== GUIDES ===== */
.ed-chapters {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 640px) {
  .ed-chapters { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  .ed-chapters { grid-template-columns: repeat(7, 1fr); }
}

.ed-chapter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0.75rem 0.5rem;
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  text-decoration: none;
  color: var(--ed-text);
  text-align: center;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.ed-chapter:hover {
  transform: translateY(-2px);
  border-color: var(--ed-green);
  background: #2a2a28;
}

.ed-chapter__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ed-amber);
  line-height: 1;
}

.ed-chapter__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.375rem;
  line-height: 1.3;
  color: var(--ed-muted);
}

.ed-chapter:hover .ed-chapter__label { color: var(--ed-text); }

.ed-guide-chapter {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--ed-border);
}

.ed-guide-chapter:last-child { border-bottom: none; }

.ed-step-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ed-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.ed-step-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ed-amber);
  margin: 0 0 0.5rem;
}

.ed-steps {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ed-muted);
}

.ed-steps li { margin-bottom: 0.625rem; }
.ed-steps strong { color: var(--ed-text); }

.ed-field-note {
  background: linear-gradient(180deg, #221c18 0%, #1a1612 100%);
  color: #b8a99a;
  border: 2px solid rgba(229, 163, 72, 0.2);
  border-left: 6px solid var(--ed-amber);
  padding: 1.125rem 1.25rem;
  margin-top: 1.5rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.35);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ed-field-note__title {
  font-weight: 600;
  color: #fdf6e3;
  margin: 0 0 0.375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ed-field-note__title::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--ed-amber);
  color: #1a1816;
  font-size: 0.75rem;
  font-weight: 700;
}

.ed-field-note a { color: #4a7028; font-weight: 500; }

.ed-trouble-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ed-trouble-grid { grid-template-columns: repeat(2, 1fr); }
}

.ed-checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.ed-checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ed-muted);
}

.ed-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--ed-green);
}

/* Knowledge-base modules */
.ed-symptom-tree {
  margin: 1.5rem 0 0;
  border: 2px solid var(--ed-border);
  background: var(--ed-panel);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.ed-symptom-tree details { border-bottom: 1px solid var(--ed-border); }
.ed-symptom-tree details:last-child { border-bottom: none; }

.ed-symptom-tree summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  color: var(--ed-text);
}

.ed-symptom-tree summary::-webkit-details-marker { display: none; }
.ed-symptom-tree summary::before { content: "▸ "; color: var(--ed-green-bright); }
.ed-symptom-tree details[open] summary::before { content: "▾ "; }

.ed-symptom-tree__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ed-muted);
}

.ed-symptom-tree__body ol { margin: 0.5rem 0 0; padding-left: 1.25rem; }
.ed-symptom-tree__body li { margin-bottom: 0.5rem; }
.ed-symptom-tree__body a { color: var(--ed-green-bright); }

.ed-signal-note {
  font-size: 0.8125rem;
  color: var(--ed-muted);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--ed-border);
}

.ed-backup-checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.ed-backup-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

.ed-backup-checklist input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--ed-green);
  flex-shrink: 0;
}

.ed-update-note {
  background: var(--ed-deepslate);
  border: 1px solid var(--ed-border);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.ed-update-note strong { color: var(--ed-amber); }

.ed-kb-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ed-kb-grid { grid-template-columns: repeat(2, 1fr); }
  .ed-kb-grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.ed-kb-card {
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.15s;
}

.ed-kb-card:hover { border-color: var(--ed-purple); }

.ed-kb-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.ed-kb-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ed-muted);
  line-height: 1.5;
}

.ed-source-box {
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  padding: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ed-muted);
}

.ed-source-box ul { margin: 0.5rem 0 0; padding-left: 1.25rem; }

/* ===== FAQ ===== */
.ed-vault-faq-search-wrap {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.ed-vault-faq-search {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--ed-border);
  background: var(--ed-panel);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.ed-vault-faq-search:focus-within {
  border-color: var(--ed-purple);
}

.ed-vault-faq-search__icon {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: var(--ed-muted);
  font-size: 1.125rem;
}

.ed-vault-faq-search input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--ed-text);
  font-size: 1.0625rem;
  padding: 1rem 1rem 1rem 0;
  outline: none;
  min-width: 0;
}

.ed-vault-faq-search input::placeholder { color: #6e6c68; }

.ed-faq-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .ed-faq-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.ed-faq-sidebar {
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  padding: 1.5rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.ed-faq-sidebar h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: #fff;
}

.ed-faq-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ed-faq-sidebar li { margin-bottom: 0.5rem; }

.ed-faq-sidebar a {
  color: var(--ed-green-bright);
  text-decoration: none;
  font-size: 0.9375rem;
}

.ed-faq-sidebar a:hover { text-decoration: underline; }

.ed-faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.ed-faq-nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ed-muted);
  border: 1px solid var(--ed-border);
  background: var(--ed-panel);
  transition: border-color 0.15s, color 0.15s;
}

.ed-faq-nav a:hover {
  color: #fff;
  border-color: var(--ed-purple);
}

.ed-faq-category {
  margin-bottom: 2.5rem;
}

.ed-faq-category__title {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-purple);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ed-border);
  text-align: center;
}

.ed-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ed-faq-item {
  background: var(--ed-panel);
  border: 1px solid var(--ed-border);
  border-bottom: none;
}

.ed-faq-item:last-child { border-bottom: 1px solid var(--ed-border); }

.ed-faq-item:nth-child(even) { background: #1e1d1c; }

.ed-faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
}

.ed-faq-item button span:last-child {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--ed-green-bright);
  line-height: 1;
}

.ed-faq-item [data-accordion-panel] {
  padding: 0 1.25rem 1.125rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ed-muted);
}

.ed-faq-item [data-accordion-panel] a {
  color: var(--ed-green-bright);
}

/* ===== TRUST ===== */
.ed-trust-intro {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .ed-trust-intro {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
}

.ed-trust-banner {
  background: var(--ed-panel);
  border: 2px solid var(--ed-amber);
  border-left-width: 6px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.3);
}

.ed-trust-banner .ed-section__title {
  color: var(--ed-amber);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ed-trust-aside {
  background: var(--ed-panel);
  border: 2px solid var(--ed-border);
  padding: 1.5rem;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.ed-trust-aside h3 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.ed-trust-aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ed-trust-aside li {
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--ed-border);
}

.ed-trust-aside li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ed-trust-aside a {
  color: var(--ed-green-bright);
  text-decoration: none;
  font-size: 0.9375rem;
}

.ed-trust-block {
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--ed-border);
}

.ed-trust-block:last-child { border-bottom: none; }

.ed-trust-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .ed-trust-split { grid-template-columns: 1fr 1fr; }
}

.ed-trust-split img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid var(--ed-border);
}

.ed-does-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .ed-does-grid { grid-template-columns: 1fr 1fr; }
}

.ed-does-card {
  padding: 1.5rem;
  border: 2px solid var(--ed-border);
  background: var(--ed-panel);
}

.ed-does-card--yes { border-left: 4px solid var(--ed-green); }
.ed-does-card--no { border-left: 4px solid #884444; }

.ed-does-card h3 {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  text-transform: uppercase;
  margin: 0 0 0.875rem;
}

.ed-does-card ul {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ed-muted);
}

.ed-security-checklist {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ed-security-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  padding: 1rem 1.125rem;
  background: var(--ed-panel);
  border: 1px solid var(--ed-border);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ed-muted);
}

.ed-security-item::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.35em;
  background: var(--ed-green);
}

.ed-security-item strong { color: var(--ed-text); display: block; margin-bottom: 0.125rem; }

/* ===== v2 recovery content classes (added 2026-08-28) ===== */
.vault-footer--indep{background:#0d0f10;}
.vault-footer--indep .vault-footer-copy{max-width:70ch;color:#c9c0a3;line-height:1.55;}
.ft-page .ft-hero--vault{padding:4rem 1rem 3rem;background:linear-gradient(180deg,#1b1f22,#0f1213);}
.ft-page .ft-hero__inner{max-width:70rem;margin:0 auto;}
.ft-page .ft-hero__eyebrow{color:#3fb98a;font-size:0.8125rem;text-transform:uppercase;letter-spacing:0.08em;margin:1rem 0 0.5rem;}
.ft-page .ft-hero__title{color:#e8e2c8;font-size:2.25rem;line-height:1.15;margin:0 0 1rem;font-family:'Russo One',sans-serif;}
.ft-page .ft-hero__lead{color:#c9c0a3;font-size:1.05rem;line-height:1.55;max-width:60rem;margin:0;}
.ft-page .ft-section{padding:3rem 1rem;}
.ft-page .ft-section--deepslate{background:#141719;}
.ft-page .ft-section--stone{background:#191a1c;}
.ft-page .ft-section--void{background:#0f1113;}
.ft-page .ft-wrap{max-width:70rem;margin:0 auto;}
.ft-page .ft-title{color:#e8e2c8;font-family:'Russo One',sans-serif;font-size:1.5rem;margin:0 0 0.75rem;}
.ft-page .ft-lead{color:#c9c0a3;line-height:1.65;max-width:70ch;margin:0 0 1.5rem;}
.ft-signature-grid{display:grid;gap:1.25rem;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));margin-top:1rem;}
.ft-signature{background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.08);padding:1.25rem;border-radius:4px;}
.ft-signature h3{margin:0 0 0.5rem;color:#3fb98a;font-size:1rem;}
.ft-signature p{margin:0 0 0.75rem;color:#c9c0a3;font-size:0.9375rem;line-height:1.55;}
.ft-recovery{color:#e8e2c8 !important;font-size:0.875rem !important;background:rgba(63,185,138,0.08);padding:0.5rem 0.75rem;border-radius:3px;border-left:2px solid #3fb98a;margin-top:0.5rem !important;}
.ft-recovery-steps{list-style:decimal;padding-left:1.5rem;color:#c9c0a3;line-height:1.65;max-width:70ch;margin:0;}
.ft-recovery-steps li{margin-bottom:0.75rem;}
.ft-recovery-steps strong{color:#e8e2c8;}
.ft-callout{background:rgba(63,185,138,0.08);border-left:3px solid #3fb98a;padding:1rem 1.25rem;margin-top:1.25rem;border-radius:0 4px 4px 0;}
.ft-callout p{margin:0;color:#e8e2c8;font-size:0.9375rem;line-height:1.55;}
.ft-callout--warn{background:rgba(226,164,45,0.08);border-left-color:#e2a42d;}
.ft-source-line{margin-top:1.25rem;font-size:0.875rem;color:#8f8770;line-height:1.55;}
.ft-habits{margin:0;padding-left:1.25rem;color:#c9c0a3;line-height:1.7;}
.ft-habits li{margin-bottom:0.75rem;}
.ft-habits strong{color:#e8e2c8;}
.ft-cta{padding:3.5rem 1rem;background:linear-gradient(180deg,#0f1113,#1b1f22);}
.ft-cta__inner{text-align:center;}
.ft-cta__title{color:#e8e2c8;font-family:'Russo One',sans-serif;font-size:1.5rem;margin:0 0 0.5rem;}
.ft-cta__lead{color:#c9c0a3;font-size:1rem;line-height:1.55;margin:0 auto 1.25rem;max-width:50ch;}
.ft-cta__actions{display:flex;gap:0.75rem;justify-content:center;flex-wrap:wrap;}

/* ===== v2 help-desk homepage classes (added 2026-08-28) ===== */
.depth-hub-title--single{display:block;text-align:center;font-family:'Russo One',sans-serif;font-size:2.5rem;line-height:1.15;letter-spacing:0.02em;}
.platform-checklist{list-style:decimal;padding-left:1.5rem;color:#c9c0a3;line-height:1.7;max-width:70ch;margin:0 auto;}
.platform-checklist li{margin-bottom:0.6rem;}
.platform-intro{max-width:70ch;color:#c9c0a3;line-height:1.65;margin:0 auto 1.5rem;}
.platform-footnote{max-width:70ch;color:#8f8770;font-size:0.9375rem;line-height:1.55;margin:1rem auto 0;}
.review-note{font-size:0.875rem;color:#8f8770;text-align:center;line-height:1.55;max-width:70ch;margin:0 auto;}

/* ===== v2 cc/guides classes (added 2026-08-28) ===== */
.ed-map-list{columns:2;column-gap:2rem;padding-left:1.25rem;color:#c9c0a3;line-height:1.7;list-style:disc;}
.ed-map-list li{margin-bottom:0.4rem;break-inside:avoid;}
.ed-map-list a{color:#7bc44a;text-decoration:none;}
.ed-map-list a:hover{text-decoration:underline;}
@media(max-width:640px){.ed-map-list{columns:1;}}
.ed-source-line{margin-top:1rem;font-size:0.875rem;color:#8f8770;line-height:1.55;}
.ed-body-list{margin:0.75rem 0 0;padding-left:1.25rem;color:#c9c0a3;line-height:1.7;}
.ed-body-list li{margin-bottom:0.4rem;}
