/* STAR Access page only (/star-access/). Loaded after site.css. */

/* The report pitch on the left, the registration form on the right. The form
 * column is a fixed 420px until 1000px, where the two stack. */
.star {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 56px;
  align-items: start;
}

/* ------------------------------------------------------------------ hero */

.star-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.star-hero__lede {
  max-width: var(--measure-hero);
  text-wrap: pretty;
}

/* --------------------------------------------------------- report column */

/* .star__heading carries no size of its own: it is a section h2, so the shared
 * .h2 (38/300, stepping to 28px at 640px) is exactly the role it wants. */

.star__text {
  line-height: 1.75;
  text-wrap: pretty;
}

.star__highlights {
  list-style: none;
  display: grid;
  gap: 16px;
}

.star__highlights li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
}

.star__highlights .material-icons {
  flex: 0 0 auto;
  margin-top: 4px;
  font-size: 19px;
  color: var(--gold-500);
}

.star__related {
  display: grid;
  justify-items: start;
  gap: 12px;
  border-top: 1px solid var(--border-default);
}

/* The 20px under the divider rule. It rides on the heading rather than as
 * padding-top on .star__related because check 14 reads vertical padding on any
 * block selector as a section band claiming the spacing that belongs to
 * .section - and this is a divider inside the report column, not a band. Same
 * rendering: the container has no padding, so the first grid item's margin is
 * the gap under the rule. */
.star__related-heading {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.star__related-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
}

/* ------------------------------------------------------------- download */

/* Was the registration panel. The card chrome stays because the layout still
   wants a panel beside the summary; only the fields inside it went away. */
.star__download {
  display: grid;
  gap: 20px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.star__form-head {
  display: grid;
  gap: 8px;
}

.star__form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-800);
}

.star__form-intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Full width so the download reads as the panel's one action rather than as a
   button that happens to sit in it. */
.star__submit {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}

.star__meta {
  font-size: 13px;
  color: var(--text-muted);
}

/* --------------------------------------------------------- breakpoints */

@media (max-width: 1000px) {
  .star {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .star__download {
    padding: 24px 20px;
  }
}

/* ---------------------------------------------------------------- STAR --
   The report summary runs wider than the aside beside it, so the columns are
   weighted rather than even. The aside is a white card on the grey band: on
   --grey-100 a plain block would need its own border to read as a panel, and
   the card already carries one from .card, so this only adds the padding and
   the heading treatment. */
.star-brief {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.star-brief .section__head {
  margin-bottom: 0;
}

.star-brief__note {
  margin: 0;
  font-size: 14px;
  color: var(--grey-600);
}

.star-aside {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.star-aside__heading {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-800);
}

.star-aside p + p {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .star-brief {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
