/* EDITORIAL — magazine, warm, big serifs */
.ed-root {
  --ed-bg: #F6F1E8;
  --ed-bg-2: #EBE3D4;
  --ed-ink: #1B2233;
  --ed-ink-2: #4A5468;
  --ed-ink-3: #7A8499;
  --ed-rule: #D9CFBE;
  --ed-accent: #C9522C;        /* warm rust */
  --ed-accent-2: #1B2233;
  --ed-card: #FFFFFF;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  color: var(--ed-ink);
  background: var(--ed-bg);
  line-height: 1.5;
}
.ed-root.palette-navy {
  --ed-bg: #0A1628;
  --ed-bg-2: #0F1E3A;
  --ed-ink: #F4F0E6;
  --ed-ink-2: #B5C8D8;
  --ed-ink-3: #7FA8C8;
  --ed-rule: #1A3A5A;
  --ed-accent: #00C8E8;
  --ed-accent-2: #F4F0E6;
  --ed-card: #0F1E3A;
}
.ed-root.palette-forest {
  --ed-bg: #F2EFE6;
  --ed-bg-2: #E5E1D2;
  --ed-ink: #1F2A1E;
  --ed-ink-2: #455244;
  --ed-ink-3: #7A867A;
  --ed-rule: #C9C2AE;
  --ed-accent: #2F6B3F;
  --ed-accent-2: #1F2A1E;
  --ed-card: #FFFFFF;
}

/* Headings — serif display */
.ed-h1, .ed-h2, .ed-quote blockquote {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ed-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ed-ink-3);
  font-weight: 600;
}
.ed-h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-top: 18px;
}
.ed-h1-a { display: block; color: var(--ed-ink); }
.ed-h1-b { display: block; color: var(--ed-accent); font-style: italic; font-weight: 400; }
.ed-h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  margin-top: 16px;
  color: var(--ed-ink);
}
.ed-section-sub {
  font-size: 18px;
  color: var(--ed-ink-2);
  max-width: 620px;
  margin-top: 18px;
  text-wrap: pretty;
}
.ed-section-head--center {
  text-align: center;
}
.ed-section-head--center .ed-section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* Nav */
.ed-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--ed-bg) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--ed-rule);
}
.ed-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.ed-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ed-ink);
}
.ed-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  object-fit: cover;
}
.ed-brand-text {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 15px;
}
.ed-nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.ed-nav-links a {
  color: var(--ed-ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s;
}
.ed-nav-links a:hover { color: var(--ed-accent); }
.ed-nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ed-lang {
  display: inline-flex;
  border: 1px solid var(--ed-rule);
  border-radius: 999px;
  overflow: hidden;
}
.ed-lang button {
  background: transparent;
  border: none;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ed-ink-3);
  cursor: pointer;
}
.ed-lang button.is-on {
  background: var(--ed-ink);
  color: var(--ed-bg);
}
.ed-nav-cta {
  background: var(--ed-ink);
  color: var(--ed-bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s;
}
.ed-nav-cta:hover { transform: translateY(-1px); }

/* Section base */
.ed-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 28px;
  position: relative;
}
.ed-section + .ed-section {
  border-top: 1px solid var(--ed-rule);
}
.ed-section-head {
  max-width: 720px;
  margin-bottom: 64px;
}

/* Hero — split */
.ed-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 120px;
}
.ed-hero--split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .ed-hero--split { grid-template-columns: 1fr; }
}
.ed-sub {
  font-size: 20px;
  color: var(--ed-ink-2);
  max-width: 520px;
  margin-top: 24px;
  text-wrap: pretty;
}
.ed-cta-row {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ed-ink);
  color: var(--ed-bg);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, background 0.15s;
}
.ed-cta:hover { transform: translateY(-1px); }
.ed-cta--full { width: 100%; justify-content: center; margin-top: 20px; }
.ed-cta-ghost {
  font-size: 15px;
  font-weight: 500;
  color: var(--ed-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ed-ink-3);
  padding-bottom: 2px;
}
.ed-cta-ghost:hover { border-color: var(--ed-accent); color: var(--ed-accent); }
.ed-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  border-top: 1px solid var(--ed-rule);
  padding-top: 24px;
}
.ed-hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.ed-hero-stats b {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  color: var(--ed-ink);
  font-variant-numeric: tabular-nums;
}
.ed-hero-stats span {
  font-size: 12px;
  color: var(--ed-ink-3);
  letter-spacing: 0.04em;
}
.ed-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ed-hero-tag {
  position: absolute;
  bottom: -8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-ink-3);
}

/* Hero — centered */
.ed-hero--centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ed-hero--centered .ed-sub { margin: 24px auto 0; }
.ed-hero--centered .ed-h1 { max-width: 1000px; }
.ed-hero-phone-wrap { margin-top: 64px; }

/* Hero — editorial (3-column with rails) */
.ed-hero--editorial {
  display: grid;
  grid-template-columns: 180px 1fr 180px;
  gap: 48px;
  align-items: start;
  padding-top: 100px;
  padding-bottom: 140px;
}
@media (max-width: 900px) {
  .ed-hero--editorial { grid-template-columns: 1fr; }
  .ed-hero-rail-l, .ed-hero-rail-r { display: none; }
}
.ed-hero-rail-l, .ed-hero-rail-r {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-ink-3);
  padding-top: 8px;
}
.ed-hero-rail-r { text-align: right; }
.ed-hero-rule {
  height: 1px;
  background: var(--ed-rule);
  margin: 12px 0;
  width: 60px;
}
.ed-hero-center { text-align: center; }
.ed-h1--editorial {
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.03em;
}
.ed-sub--editorial { margin: 32px auto 0; }
.ed-hero--editorial .ed-cta-row { justify-content: center; }

/* Phone placeholder — used in hero + screenshots row */
.ed-phone-ph {
  --ph-w: 280px;
  --ph-h: 580px;
  width: var(--ph-w);
  height: var(--ph-h);
}
.ed-phone-ph--md {
  --ph-w: 240px;
  --ph-h: 500px;
}
.ed-phone-ph-bezel {
  width: 100%;
  height: 100%;
  background: #1B2233;
  border-radius: 38px;
  padding: 8px;
  box-shadow:
    0 30px 60px -20px rgba(27, 34, 51, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  position: relative;
}
.ed-phone-ph-notch {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}
.ed-phone-ph-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0A1628 0%, #0F1E3A 100%);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ed-phone-ph-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.ed-phone-ph-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding: 0 24px;
}

/* Roles */
.ed-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ed-rule);
  border: 1px solid var(--ed-rule);
}
@media (max-width: 800px) {
  .ed-roles-grid { grid-template-columns: 1fr 1fr; }
}
.ed-role {
  background: var(--ed-bg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
}
.ed-role:hover { background: var(--ed-bg-2); }
.ed-role-icon { color: var(--ed-accent); margin-bottom: 8px; }
.ed-role h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--ed-ink);
  letter-spacing: -0.01em;
}
.ed-role p { font-size: 14px; color: var(--ed-ink-2); line-height: 1.55; }

/* How it works */
.ed-how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.ed-how-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--ed-rule);
  align-items: start;
}
.ed-how-step:last-child { border-bottom: 1px solid var(--ed-rule); }
.ed-how-n {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 56px;
  color: var(--ed-accent);
  line-height: 1;
}
.ed-how-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--ed-ink);
}
.ed-how-body p {
  font-size: 17px;
  color: var(--ed-ink-2);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .ed-how-step { grid-template-columns: 1fr; gap: 12px; }
  .ed-how-n { font-size: 40px; }
}

/* Features */
.ed-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .ed-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ed-features-grid { grid-template-columns: 1fr; }
}
.ed-feat {
  background: var(--ed-card);
  border: 1px solid var(--ed-rule);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.ed-feat:hover {
  transform: translateY(-2px);
  border-color: var(--ed-accent);
}
.ed-feat-viz-wrap {
  height: 180px;
  background: var(--ed-bg-2);
  border-bottom: 1px solid var(--ed-rule);
  padding: 22px 24px;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  position: relative;
  overflow: hidden;
}
.ed-feat-viz { flex: 1; min-width: 0; }
.ed-feat-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ed-feat-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ed-accent);
  font-weight: 700;
}
.ed-feat h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ed-ink);
}
.ed-feat p { font-size: 14px; color: var(--ed-ink-2); line-height: 1.55; }

/* ── Feature visualisations ─────────────────────────────────────── */

/* load — bar chart with baseline */
.ed-viz-load {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.ed-viz-load-bars {
  display: flex;
  gap: 3px;
  height: 100%;
  align-items: flex-end;
  position: relative;
}
.ed-viz-load-bars span {
  flex: 1;
  background: var(--ed-ink-3);
  border-radius: 2px 2px 0 0;
  min-height: 4px;
  opacity: 0.6;
}
.ed-viz-load-bars span.is-over {
  background: var(--ed-accent);
  opacity: 1;
}
.ed-viz-load-baseline {
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px dashed var(--ed-ink-2);
  z-index: 1;
  pointer-events: none;
}
.ed-viz-load-baseline span {
  position: absolute;
  right: 0;
  top: -16px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ed-ink-2);
  background: var(--ed-bg-2);
  padding: 1px 4px;
}
.ed-viz-load-foot {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
}
.ed-viz-load-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ed-accent);
  font-weight: 700;
}

/* easa — progress bars */
.ed-viz-easa {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.ed-viz-easa-row { display: flex; flex-direction: column; gap: 4px; }
.ed-viz-easa-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 11px;
  font-weight: 600;
  color: var(--ed-ink);
}
.ed-viz-easa-num {
  font-family: 'Fraunces', Georgia, serif;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 500;
}
.ed-viz-easa-num .dim { color: var(--ed-ink-3); font-size: 11px; }
.ed-viz-easa-track {
  height: 4px;
  background: var(--ed-rule);
  border-radius: 2px;
  overflow: hidden;
}
.ed-viz-easa-track span {
  display: block;
  height: 100%;
  background: var(--ed-accent);
  border-radius: 2px;
}

/* ocr — mini table with confidence */
.ed-viz-ocr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.ed-viz-ocr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4px 8px;
}
.ed-viz-ocr-h {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ed-ink-3);
  border-bottom: 1px solid var(--ed-rule);
  padding-bottom: 4px;
}
.ed-viz-ocr-c {
  font-size: 12px;
  color: var(--ed-ink);
  font-variant-numeric: tabular-nums;
}
.ed-viz-ocr-c em {
  font-style: normal;
  color: var(--ed-ink-3);
  font-size: 16px;
  line-height: 1;
}
.ed-viz-ocr-flag {
  color: var(--ed-accent);
  font-weight: 700;
  background: color-mix(in oklab, var(--ed-accent) 15%, transparent);
  padding: 0 4px;
  border-radius: 2px;
}
.ed-viz-ocr-foot {
  display: flex;
  gap: 16px;
  font-family: 'Inter', sans-serif;
}
.ed-viz-conf {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ed-ink-2);
}
.ed-viz-conf > span:not(:last-child) {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ed-rule);
}
.ed-viz-conf--hi > span:nth-child(-n+3) { background: var(--ed-accent); }
.ed-viz-conf--lo > span:nth-child(1) { background: var(--ed-accent); }

/* certs — list with status dots */
.ed-viz-certs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.ed-viz-cert {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.ed-viz-cert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ed-rule);
}
.ed-viz-cert--ok .ed-viz-cert-dot { background: #2F8B5C; }
.ed-viz-cert--soon .ed-viz-cert-dot { background: #C9A02C; }
.ed-viz-cert--warn .ed-viz-cert-dot { background: var(--ed-accent); }
.ed-viz-cert--over .ed-viz-cert-dot {
  background: var(--ed-accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--ed-accent) 20%, transparent);
}
.ed-viz-cert-label { color: var(--ed-ink); font-weight: 500; }
.ed-viz-cert-days {
  font-family: 'Fraunces', Georgia, serif;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  color: var(--ed-ink-2);
}
.ed-viz-cert--warn .ed-viz-cert-days,
.ed-viz-cert--over .ed-viz-cert-days { color: var(--ed-accent); font-weight: 600; }

/* rules — VFR/IFR mixed flight */
.ed-viz-rules {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.ed-viz-rules-route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--ed-ink);
  letter-spacing: 0.04em;
}
.ed-viz-rules-line {
  display: flex;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}
.ed-viz-rules-vfr { flex: 0.45; background: var(--ed-ink-2); }
.ed-viz-rules-ifr { flex: 0.55; background: var(--ed-accent); }
.ed-viz-rules-legend {
  display: flex;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ed-ink-2);
  align-items: center;
  flex-wrap: wrap;
}
.ed-viz-rules-legend span { display: inline-flex; align-items: center; gap: 5px; }
.ed-viz-rules-legend .lg { width: 10px; height: 6px; border-radius: 1px; }
.ed-viz-rules-legend .lg-vfr { background: var(--ed-ink-2); }
.ed-viz-rules-legend .lg-ifr { background: var(--ed-accent); }
.ed-viz-rules-pill {
  background: var(--ed-ink);
  color: var(--ed-bg);
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.ed-viz-rules-roles {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ed-viz-rules-roles .role {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: var(--ed-bg);
  border: 1px solid var(--ed-rule);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--ed-ink-2);
}

/* battery */
.ed-viz-battery {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}
.ed-viz-battery-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 6px 8px;
  background: var(--ed-bg);
  border: 1px solid var(--ed-rule);
  border-radius: 3px;
}
.ed-viz-battery-row--new {
  border-color: var(--ed-accent);
  background: color-mix(in oklab, var(--ed-accent) 6%, var(--ed-bg));
}
.ed-viz-battery-label { display: flex; flex-direction: column; min-width: 0; }
.ed-viz-battery-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--ed-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ed-viz-battery-id {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--ed-ink-3);
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
}
.ed-viz-battery-row--new .ed-viz-battery-id { color: var(--ed-accent); font-weight: 700; }
.ed-viz-battery-num {
  font-family: 'Fraunces', Georgia, serif;
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 500;
  color: var(--ed-ink);
}

/* ── Cockpit detail section ─────────────────────────────────────── */
.ed-cockpit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ed-rule);
  border-top: 1px solid var(--ed-rule);
  border-bottom: 1px solid var(--ed-rule);
}
@media (max-width: 900px) {
  .ed-cockpit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ed-cockpit-grid { grid-template-columns: 1fr; }
}
.ed-cockpit-item {
  background: var(--ed-bg);
  padding: 32px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
}
.ed-cockpit-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ed-accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.ed-cockpit-body h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ed-ink);
}
.ed-cockpit-body p {
  font-size: 14px;
  color: var(--ed-ink-2);
  margin-top: 8px;
  line-height: 1.55;
}

/* Screenshots */
.ed-shots-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  align-items: end;
}
@media (max-width: 800px) {
  .ed-shots-row { grid-template-columns: 1fr; }
}
.ed-shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.ed-shot--0 { transform: translateY(40px); }
.ed-shot--2 { transform: translateY(20px); }
@media (max-width: 800px) { .ed-shot--0, .ed-shot--2 { transform: none; } }
.ed-shot-label {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ed-ink-2);
}

/* Testimonials */
.ed-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) {
  .ed-testimonials-grid { grid-template-columns: 1fr; }
}
.ed-quote {
  background: var(--ed-card);
  border: 1px solid var(--ed-rule);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.ed-quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 64px;
  color: var(--ed-accent);
  line-height: 0.7;
  height: 24px;
}
.ed-quote blockquote {
  font-size: 20px;
  line-height: 1.4;
  color: var(--ed-ink);
  font-style: italic;
}
.ed-quote figcaption { margin-top: auto; }
.ed-quote-author { font-weight: 600; font-size: 14px; color: var(--ed-ink); }
.ed-quote-role { font-size: 12px; color: var(--ed-ink-3); margin-top: 2px; }

/* Changelog */
.ed-changelog-list { list-style: none; }
.ed-changelog-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--ed-rule);
}
.ed-changelog-row:last-child { border-bottom: 1px solid var(--ed-rule); }
.ed-changelog-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ed-changelog-v {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  color: var(--ed-ink);
  font-variant-numeric: tabular-nums;
}
.ed-changelog-date {
  font-size: 12px;
  color: var(--ed-ink-3);
  letter-spacing: 0.04em;
}
.ed-changelog-h {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ed-changelog-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--ed-bg-2);
  color: var(--ed-ink-2);
}
.ed-changelog-tag--new, .ed-changelog-tag--nytt {
  background: var(--ed-accent);
  color: #fff;
}
.ed-changelog-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ed-ink);
}
.ed-changelog-body p {
  font-size: 15px;
  color: var(--ed-ink-2);
  margin-top: 8px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .ed-changelog-row { grid-template-columns: 1fr; gap: 12px; }
}

/* Pricing */
.ed-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 64px auto 0;
}
@media (max-width: 700px) {
  .ed-pricing-grid { grid-template-columns: 1fr; }
}
.ed-plan {
  background: var(--ed-card);
  border: 1px solid var(--ed-rule);
  border-radius: 8px;
  padding: 36px 32px;
}
.ed-plan--featured {
  border: 1.5px solid var(--ed-accent);
  background: var(--ed-card);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.15);
  position: relative;
}
.ed-plan-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ed-plan-head h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.ed-plan-badge {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ed-accent);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.ed-plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ed-rule);
}
.ed-plan-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 56px;
  color: var(--ed-ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ed-plan-period {
  font-size: 14px;
  color: var(--ed-ink-3);
}
.ed-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.ed-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ed-ink-2);
}
.ed-plan-features svg { color: var(--ed-accent); flex-shrink: 0; }

/* Footer */
.ed-footer {
  background: var(--ed-bg-2);
  border-top: 1px solid var(--ed-rule);
  margin-top: 80px;
}
.ed-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 28px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 700px) {
  .ed-footer-inner { grid-template-columns: 1fr; }
}
.ed-footer-tagline {
  margin-top: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ed-ink-2);
}
.ed-footer-news-h {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--ed-ink);
}
.ed-footer-form {
  display: flex;
  gap: 8px;
  max-width: 360px;
}
.ed-footer-form input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--ed-rule);
  background: var(--ed-bg);
  color: var(--ed-ink);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
}
.ed-footer-form input:focus { outline: none; border-color: var(--ed-accent); }
.ed-footer-form button {
  background: var(--ed-ink);
  color: var(--ed-bg);
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.ed-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 28px;
  border-top: 1px solid var(--ed-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ed-ink-3);
  flex-wrap: wrap;
  gap: 16px;
}
.ed-footer-links { display: flex; gap: 20px; }
.ed-footer-links a {
  color: var(--ed-ink-3);
  text-decoration: none;
}
.ed-footer-links a:hover { color: var(--ed-accent); }
