/* Solo, Studio, Agency.
   The three cards at the top are the page; the table underneath is for
   confirming a decision already made, which is why it is quieter than the
   thing above it. */

.compare-hero { padding-bottom: 26px; }

.who-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.who-card {
  padding: 22px 22px 20px;
  border: 1px solid var(--rule);
  border-radius: 16px;
  background: var(--surface);
}
.who-card.featured { border-color: oklch(0.4 0.1 128); }
.who-q {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--dim);
}
.who-a { margin: 0 0 14px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.who-a strong { color: var(--fg); }
.who-price { font-size: 15px; font-weight: 700; color: oklch(0.87 0.22 128); }

/* The teaser. Portrait or landscape, it keeps its own shape rather than being
   cropped to fit a slot. */
.teaser {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.teaser video {
  width: 100%;
  display: block;
  border-radius: 14px;
  background: oklch(0.14 0 0);
  max-height: 62vh;
}
.teaser-meta p { color: var(--muted); line-height: 1.6; }
.teaser-meta .btn { margin-top: 14px; }

.tutorial video {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 22px auto 0;
  border-radius: 14px;
  background: oklch(0.14 0 0);
}

/* The table. Wide, so it scrolls inside its own box rather than pushing the
   page sideways on a phone. */
.table-scroll { overflow-x: auto; }
table.compare {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  min-width: 560px;
}
table.compare th,
table.compare td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
}
table.compare thead th {
  font-size: 15px;
  color: var(--fg);
  white-space: nowrap;
  vertical-align: bottom;
}
table.compare tbody th {
  font-weight: 400;
  color: var(--muted);
  line-height: 1.45;
}
table.compare td { text-align: center; width: 120px; }
table.compare .featured { background: oklch(0.87 0.22 128 / 0.05); }
.th-price {
  display: block;
  margin-top: 3px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--dim);
}

.compare-acts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.centred { text-align: center; }

@media (max-width: 860px) {
  .teaser { grid-template-columns: 1fr; gap: 20px; }
  .teaser video { max-height: 48vh; margin: 0 auto; max-width: 300px; }
}

/* The enquiry form. Four fields, because every extra one is somebody deciding
   not to bother, and we can ask the rest in the reply. */
.enquiry { max-width: 520px; margin-top: 22px; }
.enquiry textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--surface);
  color: inherit;
  font: inherit;
  font-size: 14.5px;
  line-height: 1.55;
  resize: vertical;
}
.enquiry textarea:focus-visible {
  outline: 2px solid oklch(0.87 0.22 128);
  outline-offset: 1px;
}

/* Only ever shown when the count behind it is real. */
.launch-note { margin: 8px 0 0; font-size: 12.5px; line-height: 1.45; color: var(--warn, #f5a524); }
