/* ==========================================================================
   Homepage lede
   Replaces the centred hero. A centred headline over a pill badge over two
   buttons is the most recognisable generated-landing-page shape there is, so
   this is asymmetric: copy left, real prices right, above the fold.
   ========================================================================== */

.lede {
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2rem, 5vw, 4rem);
}

.lede__grid {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

@media (min-width: 900px) {
  .lede__grid { grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.85fr); }
}

/* Grid child needs min-width:0 or long words push the column wide. */
.lede__copy { min-width: 0; }

.lede__title {
  font-size: clamp(2.25rem, 5.2vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--text);
  max-width: 14ch;
  margin: 0 0 var(--s-4);
}

.lede__sub {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 52ch;
  margin: 0 0 var(--s-5);
}

.lede__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.lede__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--fs-xs);
  color: var(--text-3);
  margin: 0;
}

.lede__note a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-3);
  text-decoration: none;
  border-bottom: 1px solid var(--line-mid);
}

.lede__note a:hover { color: var(--text-2); border-bottom-color: var(--line-hi); }

/* --- Price panel -------------------------------------------------------- */

.pricepeek {
  border: 1px solid var(--line-mid);
  border-radius: var(--r);
  background: var(--bg-raise);
  padding: var(--s-4);
}

.pricepeek__title {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin: 0 0 var(--s-3);
}

.pricepeek__table {
  width: 100%;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}

/* Every cell shares one padding and one border so the rules line up straight
   across the row. The name cell must stay a real table-cell — making the <th>
   a flex container takes it out of the row box and its border then sits at a
   different height from the price cells. The flex goes on a span inside. */
.pricepeek__table th,
.pricepeek__table td {
  height: 2.65rem;
  padding: 0 0 0 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: right;
  vertical-align: middle;
  font-weight: 400;
  white-space: nowrap;
}

.pricepeek__table th {
  padding-left: 0;
  text-align: left;
  font-size: var(--fs-sm);
  color: var(--text);
  width: 100%;
}

.pricepeek__table tr:last-child th,
.pricepeek__table tr:last-child td { border-bottom: 0; }

.pricepeek__name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricepeek__name img { border-radius: 4px; flex: none; }

.pricepeek__ic {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex: none;
}

.pricepeek__table a { color: inherit; text-decoration: none; }
.pricepeek__table a:hover { color: var(--amber-hi); }

.pricepeek__table td.nums {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.pricepeek__unit {
  font-size: var(--fs-xs);
  color: var(--text-3);
}

.pricepeek__foot {
  font-size: var(--fs-xs);
  color: var(--text-3);
  line-height: 1.5;
  margin: var(--s-3) 0 0;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}

/* ==========================================================================
   Included-on-every-plan list
   Deliberately not a third grid of bordered cards: a plain two-column
   definition list, ruled rather than boxed.
   ========================================================================== */

.speclist {
  margin: 0;
  border-top: 1px solid var(--line);
}

.speclist__row {
  display: grid;
  gap: 0.35rem var(--s-5);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 760px) {
  .speclist__row { grid-template-columns: minmax(0, 15rem) minmax(0, 1fr); }
}

.speclist__term {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text);
}

.speclist__term .ic {
  color: var(--amber);
  flex: none;
  transform: translateY(2px);
}

.speclist__desc {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--text-2);
  max-width: 68ch;
}
