/* Spelt Out waiting-list page. Served from our own origin only: the Content Security
   Policy in _headers allows no scripts and no styles or images from anywhere else. */
:root {
  --navy: #0f2d52;
  --navy-2: #133a6b;
  --ink: #17212e;
  --muted: #45546a;
  --paper: #f5f7fb;
  --line: #d6deea;
  --accent: #ffc400;
  --accent-soft: #fff2b3;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
}
a {
  color: var(--navy-2);
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
}
.skip:focus {
  left: 8px;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
header.bar {
  background: var(--navy);
  color: #fff;
}
header.bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
}
.mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
  flex: none;
}
.soon {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
}
.hero {
  background: radial-gradient(900px 500px at 15% 0%, #16406f 0%, var(--navy) 65%);
  color: #fff;
  padding: 56px 0 64px;
}
.hero .grid {
  display: grid;
  gap: 36px;
}
.eyebrow {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 12px;
}
h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
}
h2 {
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.2;
  margin: 0 0 18px;
  color: var(--navy);
}
.lead {
  font-size: 20px;
  max-width: 640px;
  margin: 0 0 26px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}
.button.primary {
  background: var(--accent);
  color: var(--navy);
}
.button.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.light .button.secondary {
  color: var(--navy-2);
  border-color: var(--navy-2);
}
.small {
  font-size: 15px;
  color: #c9d6e8;
  margin: 0;
}
.hero .film-link {
  display: inline-block;
  margin-top: 14px;
  color: #fff;
  font-weight: 600;
}
.example {
  background: #fff;
  color: var(--ink);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  align-self: center;
}
.example .label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 6px;
}
.example blockquote {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: var(--paper);
  border-left: 5px solid var(--line);
  border-radius: 6px;
}
mark {
  background: var(--accent-soft);
  border-bottom: 3px solid var(--accent);
  padding: 0 2px;
}
.example p {
  margin: 0 0 12px;
}
section {
  padding: 56px 0;
}
section.light {
  background: var(--paper);
}
.stats {
  display: grid;
  gap: 18px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.stat .num {
  font-size: 44px;
  font-weight: 800;
  color: var(--navy-2);
  line-height: 1;
  margin-bottom: 8px;
}
.source {
  font-size: 14px;
  color: var(--muted);
}
ol.steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
ol.steps li {
  counter-increment: step;
  position: relative;
  padding: 20px 20px 20px 76px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-2);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
ol.steps strong {
  display: block;
  font-size: 20px;
  color: var(--navy);
}
ul.ticks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
ul.ticks li {
  position: relative;
  padding-left: 40px;
}
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-2) url("tick.svg") center/16px no-repeat;
}
.cards {
  display: grid;
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
}
.card .who {
  font-weight: 700;
  color: var(--navy-2);
  font-size: 20px;
}
.card .price {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  margin: 8px 0 2px;
}
.card .unit {
  color: var(--muted);
  margin: 0 0 16px;
}
.card .button {
  margin-top: 18px;
}
.card.parent .button {
  background: var(--navy-2);
  color: #fff;
}
details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
details:last-of-type {
  border-bottom: 1px solid var(--line);
}
summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}
details p,
details ul {
  margin: 10px 0 0;
}
.film video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 20px 50px rgba(15, 45, 82, 0.25);
}
.film .source {
  margin: 12px 0 0;
}
.film details {
  margin-top: 18px;
}
.film details ol {
  margin: 10px 0 0;
  padding-left: 22px;
}
.film details li {
  margin-bottom: 6px;
}
.missing {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
footer {
  background: var(--navy);
  color: #d8e2f0;
  padding: 36px 0;
  font-size: 15px;
}
footer a {
  color: #fff;
}
/* A plain link to the Spelt Out LinkedIn page: no LinkedIn script, widget or tracking. */
footer .socials {
  padding: 0 0 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
footer .socials h2 {
  font-size: 18px;
  color: #fff;
  margin: 0 0 12px;
}
footer .socials ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
footer .socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}
footer .socials a:hover {
  text-decoration: underline;
}
@media (min-width: 820px) {
  .hero .grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
  .stats,
  ol.steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
