body.app-body > main.vtt-landing {
  display: block;
  overflow-y: auto;
  /* The shared gutter, so the hero, every section and the closing panel start
     where the brand does and end where the identity buttons do. This page used
     to be a 72rem column centred in a bar that spans the window, which read as
     a different app from every generator. */
  padding: 0 var(--page-gutter) 3rem;
  color: var(--silver);
}
.vtt-landing :is(h1,h2,h3,p) { margin-top: 0; }
.vtt-landing a { color: var(--gold-bright); }
.vtt-hero,
.vtt-section,
.vtt-final { width: 100%; margin-inline: 0; }
.vtt-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, .95fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  min-height: min(42rem, calc(100vh - var(--nav-h)));
  padding-block: clamp(2rem, 7vw, 5rem);
}
.vtt-eyebrow,
.vtt-section-head > span,
.vtt-final > div > span {
  display: block;
  margin-bottom: .6rem;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.vtt-hero .early-access {
  margin: 0 0 .65rem;
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  letter-spacing: .14em;
}
.vtt-hero h1 {
  max-width: 15ch;
  margin-bottom: 1rem;
  color: var(--gold-bright);
  font: 700 clamp(2.25rem, 6vw, 4.6rem)/.98 var(--font-display);
  letter-spacing: -.025em;
}
.vtt-hero-copy > p { max-width: 40rem; color: var(--silver); font-size: clamp(1rem, 2vw, 1.18rem); line-height: 1.7; }
.vtt-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.35rem; }
.vtt-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: .65rem 1rem;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  background: rgba(var(--theme-base-rgb), .82);
  color: var(--gold-bright);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .05em;
  text-decoration: none;
  text-transform: uppercase;
}
.vtt-actions a:hover { border-color: var(--gold-bright); transform: translateY(-1px); }
.vtt-actions .vtt-primary { background: var(--gold); color: var(--on-accent); }
.vtt-hero-art {
  overflow: hidden;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius);
  background: var(--maroon-deep);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.vtt-hero-art img { display: block; width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: sepia(.2) contrast(1.05); }
.vtt-art-caption { display: grid; gap: .25rem; padding: .85rem 1rem; }
.vtt-art-caption strong { color: var(--gold-bright); font-family: var(--font-display); }
.vtt-art-caption span { color: var(--silver-dim); font-size: .82rem; line-height: 1.45; }
.vtt-section { padding-block: clamp(2.5rem, 6vw, 5rem); border-top: 1px solid rgba(var(--theme-accent-rgb), .24); }
.vtt-section-head { max-width: 50rem; margin-bottom: 1.6rem; }
.vtt-section-head h2,
.vtt-final h2 { margin-bottom: .75rem; color: var(--gold-bright); font: 700 clamp(1.65rem, 4vw, 2.6rem)/1.1 var(--font-display); }
.vtt-section-head p,
.vtt-final p { color: var(--silver-dim); line-height: 1.65; }
.vtt-feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.vtt-feature-grid article {
  padding: 1.2rem;
  border: 1px solid var(--maroon-edge);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(var(--theme-lit-rgb),.72), rgba(var(--theme-deep-rgb),.9));
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
}
.vtt-feature-grid h3,
.vtt-workflow h3 { margin-bottom: .45rem; color: var(--gold); font: 700 1.05rem/1.25 var(--font-display); }
.vtt-feature-grid p,
.vtt-workflow p { margin-bottom: 0; color: var(--silver-dim); font-size: .88rem; line-height: 1.55; }
.vtt-workflow ol { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; margin: 0; padding: 0; list-style: none; }
.vtt-workflow li { display: grid; grid-template-columns: 2rem 1fr; gap: .7rem; }
.vtt-workflow li > span { display: grid; place-items: center; width: 2rem; height: 2rem; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-bright); font-weight: 900; }
.vtt-faq details { border-top: 1px solid rgba(var(--theme-accent-rgb),.22); padding: .9rem .2rem; }
.vtt-faq details:last-child { border-bottom: 1px solid rgba(var(--theme-accent-rgb),.22); }
.vtt-faq summary { color: var(--gold-bright); font-weight: 800; cursor: pointer; }
.vtt-faq details p { max-width: 56rem; margin: .7rem 0 0; color: var(--silver-dim); line-height: 1.6; }
.vtt-final { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.5rem,4vw,2.5rem); border: 1px solid var(--gold-deep); border-radius: var(--radius); background: rgba(var(--theme-deep-rgb),.88); }
.vtt-final .vtt-actions { flex: none; margin-top: 0; }
@media (max-width: 850px) {
  .vtt-hero { grid-template-columns: 1fr; min-height: auto; }
  .vtt-hero h1 { max-width: 18ch; }
  .vtt-feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vtt-workflow ol { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .vtt-final { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .vtt-feature-grid,.vtt-workflow ol { grid-template-columns: 1fr; }
  .vtt-actions { align-items: stretch; flex-direction: column; width: 100%; }
}
