/* ============================================================
   /why-escape.html — differentiation page
   Side-by-side "most apps vs Escape" comparison without naming
   competitors. Quiet, factual, scannable on mobile.
   ============================================================ */

.why-escape {
  max-width: 1080px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}

/* Hero */
.why-escape-hero { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.why-escape-hero .eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600; margin: 0 0 18px;
}
.why-escape-h {
  font-size: clamp(2.5rem, 5.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--ink-1);
}
.why-escape-h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.why-escape-lede {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0;
  text-wrap: pretty;
}

/* Comparison table — built with CSS grid for clean rows.
   On mobile each cell stacks vertically with a label prefix. */
.why-escape-table-wrap {
  margin: 0 0 80px;
}
.why-escape-table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-1);
  border-radius: 16px;
  overflow: hidden;
}
.why-escape-row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line-1);
  background: rgba(255,255,255,0.01);
}
.why-escape-row:last-child { border-bottom: 0; }
.why-escape-row > div {
  padding: 22px 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  border-right: 1px solid var(--line-1);
}
.why-escape-row > div:last-child { border-right: 0; }
.why-escape-row > div a {
  color: var(--blue, #4DA3FF);
  text-decoration: none;
}
.why-escape-row > div a:hover { text-decoration: underline; text-underline-offset: 3px; }

.why-escape-rowhead {
  font-size: 12px !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-3) !important;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
}

/* Header row distinguishes the two columns. */
.why-escape-row-head > div {
  padding: 16px 22px;
  font-size: 11px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  color: var(--ink-3);
}
.why-escape-row-head .why-escape-col-us {
  color: var(--ink-1);
  background: rgba(77,163,255,0.08);
}

/* Subtle accent on the "Escape" column so the differentiation reads
   visually, not just textually. */
.why-escape-col-us {
  background: rgba(77,163,255,0.03);
  color: var(--ink-1);
}
.why-escape-col-them {
  color: var(--ink-3);
}

/* Footer / honest section */
.why-escape-foot {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid var(--line-1);
}
.why-escape-foot h2 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-1);
  margin: 0 0 18px;
}
.why-escape-foot p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin: 0 0 18px;
  text-wrap: pretty;
}
.why-escape-foot .appstore { display: inline-block; margin-top: 28px; }
.why-escape-foot .appstore img { height: 56px; }

/* Mobile: stacked rows with inline label headers. */
@media (max-width: 760px) {
  .why-escape { padding: 120px 16px 72px; }
  .why-escape-row { grid-template-columns: 1fr; }
  .why-escape-row > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 16px 18px;
  }
  .why-escape-row > div:last-child { border-bottom: 0; }

  /* Hide desktop header row, use per-row inline labels instead. */
  .why-escape-row-head { display: none; }

  /* Mobile prefix labels — use ::before to identify which column each
     stacked cell represents. */
  .why-escape-col-them::before,
  .why-escape-col-us::before {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
  }
  .why-escape-col-them::before {
    content: 'Most apps';
    color: var(--ink-4);
  }
  .why-escape-col-us::before {
    content: 'Escape';
    color: #4DA3FF;
  }

  .why-escape-rowhead {
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  }
}
