:root {
  --paper: #f4efe7;
  --paper-light: #fbf9f5;
  --ink: #1c1b20;
  --muted: #65606a;
  --violet: #6b56d8;
  --violet-dark: #34266d;
  --coral: #ff806a;
  --acid: #d7f46a;
  --line: rgb(28 27 32 / 14%);
  --control-line: #78737d;
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", Meiryo, sans-serif;
  --font-serif: "Yu Mincho", "Hiragino Mincho ProN", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  min-width: 20rem;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: #fff;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.preview-banner {
  padding: 0.55rem 1rem;
  background: var(--violet-dark);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  min-height: 5.25rem;
  align-items: center;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgb(244 239 231 / 92%);
  backdrop-filter: blur(18px);
  grid-template-columns: 1fr auto 1fr;
}

.wordmark {
  width: max-content;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark span {
  margin-left: 0.28rem;
  color: var(--coral);
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-style: normal;
  vertical-align: super;
}

.site-header nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.8rem);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header nav a {
  padding: 0.55rem 0;
}

.header-cta {
  justify-self: end;
  padding: 0.8rem 1.15rem;
  border-radius: 99rem;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.hero {
  display: grid;
  min-height: calc(100svh - 7rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(0, 1.02fr) minmax(25rem, 0.98fr);
}

.hero-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(5rem, 8vw, 9rem) clamp(1.5rem, 7vw, 8rem);
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--violet);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin: 1.5rem 0 1.8rem;
  font-family: var(--font-serif);
  font-size: clamp(3.4rem, 7.2vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--violet);
  font-style: normal;
}

.hero-lead {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.025em;
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0 1.45rem;
  border: 1px solid var(--ink);
  border-radius: 99rem;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-quiet {
  border-color: var(--line);
  background: var(--paper-light);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.5rem;
  margin: 2.4rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.68rem;
  list-style: none;
}

.hero-notes li::before {
  margin-right: 0.45rem;
  color: var(--violet);
  content: "●";
  font-size: 0.45rem;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 45rem;
  place-items: center;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 22%, rgb(255 128 106 / 72%), transparent 22%),
    radial-gradient(circle at 85% 72%, rgb(215 244 106 / 78%), transparent 24%),
    var(--violet);
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 32%);
  border-radius: 50%;
}

.stage-orbit-one {
  width: 38rem;
  height: 38rem;
}

.stage-orbit-two {
  width: 50rem;
  height: 50rem;
}

.page-card {
  position: relative;
  z-index: 2;
  width: min(72%, 29rem);
  min-height: 37rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 1.25rem;
  background: #0c1626;
  box-shadow: 0 2.5rem 5rem rgb(45 31 98 / 35%);
  color: #eee9df;
  transform: rotate(2.2deg);
}

.page-card::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 30%, rgb(12 22 38 / 80%)),
    radial-gradient(circle at 65% 35%, #7ba7d8 0 10%, transparent 11%),
    linear-gradient(135deg, #172b43, #0c1626 70%);
  content: "";
}

.page-card-top,
.page-card-body,
.page-card-foot {
  position: relative;
  z-index: 2;
}

.page-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.page-card-mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 50%);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.page-card-nav,
.page-card-body p,
.page-card-foot {
  font-size: 0.52rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-card-body {
  position: absolute;
  right: 1.75rem;
  bottom: 4.8rem;
  left: 1.75rem;
}

.page-card-body h2 {
  margin: 0.55rem 0;
  color: #83aee0;
  font-family: Georgia, serif;
  font-size: clamp(4.5rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.page-card-body span {
  font-family: var(--font-serif);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.page-card-foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  padding: 1.2rem 0.8rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.page-card-foot i {
  color: var(--coral);
  font-style: normal;
}

.stage-caption {
  position: absolute;
  right: 2rem;
  bottom: 1.4rem;
  margin: 0;
  color: rgb(255 255 255 / 76%);
  font-family: Georgia, serif;
  font-size: 0.65rem;
  font-style: italic;
}

.recognition {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem 3vw;
  border-bottom: 1px solid var(--line);
  background: var(--acid);
  font-size: clamp(0.7rem, 1.4vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.15em;
}

.recognition p {
  margin: 0;
}

.recognition i {
  color: var(--violet);
  font-style: normal;
}

.first-proof,
.pricing-teaser {
  display: grid;
  gap: 3rem;
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 7vw, 8rem);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.35fr 1fr;
}

.first-proof h2,
.pricing-teaser h2,
.example-teaser h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.first-proof p:not(.section-label) {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: var(--muted);
  line-height: 2;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.section-intro {
  max-width: 60rem;
}

.value-grid {
  display: grid;
  grid-column: 2;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.value-grid article {
  min-height: 19rem;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.value-grid article:first-child {
  border-left: 1px solid var(--line);
}

.value-grid article > span {
  color: var(--violet);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-style: italic;
}

.value-grid h3 {
  margin: 5rem 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 500;
}

.value-grid p {
  margin: 0 !important;
  font-size: 0.78rem;
  line-height: 1.9 !important;
}

.example-teaser {
  display: grid;
  min-height: 50rem;
  align-items: stretch;
  gap: 0;
  padding: 0;
  background: #111b2c;
  color: #f3efe7;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.82fr);
}

.example-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: clamp(4rem, 8vw, 8rem);
}

.section-label-light {
  color: #8ab4e5;
}

.example-teaser h2 {
  margin: 1rem 0;
  color: #8ab4e5;
  font-family: Georgia, serif;
  font-style: italic;
}

.example-teaser p:not(.section-label) {
  max-width: 35rem;
  color: rgb(243 239 231 / 65%);
  line-height: 1.8;
}

.demo-metrics {
  max-width: 38rem;
  margin: 3rem 0 1.2rem;
  border-top: 1px solid rgb(255 255 255 / 17%);
}

.demo-metrics div {
  display: grid;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 17%);
  grid-template-columns: 1fr auto;
}

.demo-metrics dt {
  color: rgb(243 239 231 / 55%);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-metrics dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.metric-note {
  margin: 0 0 2rem !important;
  font-size: 0.65rem;
}

.example-visual {
  position: relative;
  display: block;
  min-height: 50rem;
  overflow: hidden;
}

.example-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(17 27 44 / 12%), rgb(17 27 44 / 20%) 60%, rgb(17 27 44 / 75%));
  content: "";
}

.example-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 57% center;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.example-visual:hover img {
  transform: scale(1.025);
}

.example-visual span {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 99rem;
  font-size: 0.68rem;
}

.button-light {
  flex: 0 0 auto;
  border-color: rgb(255 255 255 / 55%);
}

.demo-showcase {
  padding: clamp(5rem, 9vw, 9rem) 4vw;
  border-bottom: 1px solid var(--line);
  background: #e9e2d6;
}

.demo-showcase-heading {
  display: grid;
  gap: 3rem;
  align-items: start;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  grid-template-columns: 0.32fr 1fr;
}

.demo-showcase-heading h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.14;
}

.demo-showcase-heading > div > p {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.9;
}

.demo-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid rgb(28 27 32 / 24%);
  background: var(--paper-light);
}

.demo-card-visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid rgb(28 27 32 / 24%);
  background: #201f25;
}

.demo-card-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(0 0 0 / 45%));
  content: "";
}

.demo-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-card-visual:hover img {
  transform: scale(1.025);
}

.demo-card-visual-luna img {
  object-position: 54% 22%;
}

.demo-card-visual-sena img {
  object-position: 56% center;
}

.demo-card-visual-yume img {
  object-position: 68% center;
}

.demo-card-visual > span {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 1rem;
  padding: 0.48rem 0.65rem;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 999px;
  color: #fff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.demo-kind {
  margin: 0 0 0.9rem;
  color: var(--violet-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.demo-card-body > p:not(.demo-kind, .metric-note) {
  min-height: 6.2rem;
  margin: 1.2rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.85;
}

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

.demo-measurement div {
  display: grid;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr auto;
}

.demo-measurement dt,
.demo-plan-reference span {
  color: var(--muted);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-measurement dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 0.7rem;
}

.demo-plan-reference {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0;
  grid-template-columns: 1fr 1fr;
}

.demo-plan-reference p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
}

.demo-plan-reference strong {
  font-family: Georgia, serif;
  font-size: 0.74rem;
  font-weight: 400;
}

.demo-card .metric-note {
  min-height: 4.1rem;
  margin: 0 0 1.4rem !important;
  color: var(--muted);
  font-size: 0.58rem;
  line-height: 1.7;
}

.demo-open-link {
  display: flex;
  min-height: 3.25rem;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.pricing-teaser {
  align-items: end;
  background: var(--paper-light);
}

.pricing-teaser .button {
  width: max-content;
  margin-top: 2rem;
}

.section-heading {
  display: grid;
  align-items: start;
  gap: 3rem;
  grid-template-columns: 0.35fr 1fr;
}

.section-heading h2,
.included-copy h2,
.usage-lead h2,
.faq-heading h2,
.closing-cta h2,
.apply-intro h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.17;
}

.process-section,
.plans-section,
.faq-section {
  padding: clamp(5rem, 10vw, 10rem) clamp(1.5rem, 7vw, 8rem);
  border-bottom: 1px solid var(--line);
}

.process-list {
  max-width: 70rem;
  margin: clamp(4rem, 8vw, 8rem) 0 0 auto;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1.5rem;
  grid-template-columns: 4rem 1fr;
}

.process-list li > span {
  color: var(--violet);
  font-family: Georgia, serif;
  font-size: 0.76rem;
  font-style: italic;
}

.process-list h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 500;
}

.process-list p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.9;
}

.included-section {
  display: grid;
  min-height: 48rem;
  align-items: center;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem);
  background: var(--violet-dark);
  color: #fff;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1fr);
}

.included-copy h2 {
  margin: 1.5rem 0;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.included-copy > p:last-child {
  max-width: 33rem;
  color: rgb(255 255 255 / 65%);
  line-height: 1.9;
}

.included-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  list-style: none;
}

.included-list li {
  display: grid;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  gap: 1.5rem;
  grid-template-columns: 9rem 1fr;
}

.included-list strong {
  font-family: var(--font-serif);
  font-size: 0.92rem;
}

.included-list span {
  color: rgb(255 255 255 / 62%);
  font-size: 0.72rem;
  line-height: 1.7;
}

.plans-section {
  background: var(--paper-light);
}

.plans-heading {
  grid-template-columns: 1fr 0.55fr;
}

.plans-heading > p {
  align-self: end;
  margin: 0 0 0.5rem;
  color: var(--muted);
  line-height: 1.9;
}

.plans-heading h2 {
  margin-top: 1.25rem;
}

.catalog-status {
  margin: 3rem 0 1.25rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgb(107 86 216 / 34%);
  border-radius: 0.7rem;
  background: rgb(107 86 216 / 8%);
  color: var(--violet-dark);
  font-size: 0.72rem;
  line-height: 1.7;
}

.plan-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  display: flex;
  min-height: 37rem;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.8rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-light);
}

.plan-name,
.plan-use,
.plan-price,
.annual-price {
  margin: 0;
}

.plan-name {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 700;
}

.plan-use {
  min-height: 3.5rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-top: 3rem;
}

.plan-price strong {
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.08em;
}

.plan-price span {
  font-size: 0.66rem;
}

.annual-price {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.68rem;
}

.annual-price span {
  display: block;
  margin-top: 0.25rem;
  color: var(--violet);
}

.plan-card dl {
  margin: 2.2rem 0;
  border-top: 1px solid currentcolor;
}

.plan-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}

.plan-card dt {
  color: var(--muted);
  font-size: 0.62rem;
}

.plan-card dd {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 0.76rem;
}

.plan-link {
  display: flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border: 1px solid currentcolor;
  border-radius: 99rem;
  font-size: 0.68rem;
  font-weight: 700;
}

.annual-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-size: 0.72rem;
}

.annual-note p {
  margin: 0;
}

.annual-note a {
  flex: 0 0 auto;
  font-weight: 700;
}

.usage-section {
  display: grid;
  min-height: 48rem;
  padding: clamp(5rem, 9vw, 9rem) clamp(1.5rem, 7vw, 8rem);
  background: var(--ink);
  color: #fff;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1fr);
}

.usage-lead h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.7rem, 5vw, 5.3rem);
}

.usage-detail ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 20%);
  list-style: none;
}

.usage-detail li {
  display: grid;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  gap: 1.5rem;
  grid-template-columns: 7rem 1fr;
}

.usage-detail li span {
  color: var(--acid);
  font-family: var(--font-serif);
}

.usage-detail li p {
  margin: 0;
  color: rgb(255 255 255 / 65%);
  font-size: 0.74rem;
  line-height: 1.9;
}

.usage-caution {
  margin: 2rem 0 0;
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--coral);
  background: rgb(255 255 255 / 6%);
  font-size: 0.7rem;
  line-height: 1.8;
}

.faq-section {
  display: grid;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(18rem, 0.7fr) minmax(22rem, 1fr);
}

.faq-heading {
  display: block;
}

.faq-heading h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.6rem, 4.8vw, 5rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 1rem;
  right: 0;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.9;
}

.closing-cta {
  display: flex;
  min-height: 46rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 6rem 1.5rem;
  background:
    radial-gradient(circle at 20% 20%, rgb(255 128 106 / 52%), transparent 25%),
    radial-gradient(circle at 80% 78%, rgb(215 244 106 / 55%), transparent 25%),
    var(--violet);
  color: #fff;
  text-align: center;
}

.closing-cta h2 {
  margin: 1.4rem 0;
}

.closing-cta > p:not(.section-label) {
  max-width: 38rem;
  margin: 0 0 2rem;
  color: rgb(255 255 255 / 92%);
  line-height: 1.9;
}

.button-acid {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
}

.site-footer {
  display: grid;
  min-height: 12rem;
  align-items: center;
  padding: 2rem clamp(1.5rem, 4vw, 4rem);
  background: #111014;
  color: rgb(255 255 255 / 64%);
  gap: 1rem 2rem;
  grid-template-columns: 1fr 1fr auto;
}

.footer-wordmark {
  color: #fff;
}

.site-footer p {
  margin: 0;
  font-size: 0.65rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
  font-size: 0.65rem;
}

.footer-status {
  grid-column: 1 / -1;
  color: rgb(255 255 255 / 72%);
}

/* Application preview */

.apply-page {
  background: var(--paper-light);
}

.apply-header {
  grid-template-columns: 1fr auto;
}

.back-link {
  padding: 0.7rem 0;
  font-size: 0.7rem;
  font-weight: 700;
}

.apply-shell {
  width: min(100%, 90rem);
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 5vw, 5rem);
}

.apply-intro {
  max-width: 65rem;
}

.apply-intro h1 {
  margin: 1.5rem 0;
}

.apply-intro > p:not(.eyebrow) {
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.9;
}

.apply-safety {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.apply-safety span {
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 99rem;
  background: #fff;
  font-size: 0.65rem;
}

.local-data-caution {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
}

.apply-layout {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.36fr);
}

.application-form {
  min-width: 0;
}

.error-summary {
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.4rem;
  border: 2px solid #a32638;
  border-radius: 0.6rem;
  background: #fff3f4;
  color: #721728;
}

.error-summary h3 {
  margin: 0;
  font-size: 0.9rem;
}

.error-summary ul {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.74rem;
  line-height: 1.8;
}

.error-summary a {
  text-decoration: underline;
}

.apply-step {
  margin-bottom: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.apply-step-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.apply-step-heading > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--violet);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-style: italic;
}

.apply-step-heading p,
.apply-step-heading h3 {
  margin: 0;
}

.apply-step-heading p {
  color: var(--violet);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.apply-step-heading h3 {
  margin-top: 0.25rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
}

.field-label,
.field label,
.section-choices legend {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.76rem;
  font-weight: 750;
}

.field-label span,
.field label span,
.section-choices legend span {
  margin-left: 0.4rem;
  color: var(--violet);
  font-size: 0.58rem;
  font-weight: 800;
}

.field-hint {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.6;
}

.field-error {
  min-height: 1.1rem;
  margin: 0.4rem 0 0;
  color: #a32638;
  font-size: 0.66rem;
  font-weight: 700;
}

.choice-group + .choice-group {
  margin-top: 2rem;
}

.plan-choice-grid {
  display: grid;
  margin-top: 1rem;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
}

.choice-card,
.billing-choices button {
  min-height: 6.6rem;
  padding: 1rem;
  border: 1px solid var(--control-line);
  border-radius: 0.7rem;
  background: var(--paper-light);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.choice-card[aria-pressed="true"],
.billing-choices button[aria-pressed="true"] {
  border: 2px solid var(--violet);
  background: #f0edff;
  box-shadow: 0 0 0 3px rgb(107 86 216 / 12%);
}

.choice-card strong,
.choice-card span,
.choice-card small {
  display: block;
}

.choice-card strong {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
}

.choice-card span {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  font-weight: 750;
}

.choice-card small {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.62rem;
}

.billing-choices {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
}

.billing-choices button {
  min-height: 3.7rem;
  text-align: center;
}

.selection-readback {
  margin-top: 1.3rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--violet);
  background: var(--paper);
  font-size: 0.7rem;
  line-height: 1.7;
}

.field-grid {
  display: grid;
  gap: 1.4rem;
}

.field-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--control-line);
  border-radius: 0.5rem;
  background: var(--paper-light);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.7;
}

[aria-invalid="true"],
[data-invalid="true"] {
  border-color: #a32638 !important;
}

.section-choices {
  margin: 2rem 0 0;
  padding: 1.2rem;
  border: 1px solid var(--control-line);
  border-radius: 0.7rem;
}

.section-choices > div {
  display: grid;
  margin-top: 1rem;
  gap: 0.55rem;
  grid-template-columns: repeat(2, 1fr);
}

.section-choices label {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--control-line);
  border-radius: 0.45rem;
  background: var(--paper-light);
  font-size: 0.7rem;
}

.section-choices input,
.consent-check > input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--violet);
}

.consent-check {
  display: grid;
  align-items: start;
  margin-top: 2rem;
  padding: 1.1rem;
  border: 1px solid var(--control-line);
  border-radius: 0.7rem;
  background: var(--paper-light);
  gap: 0.2rem 0.75rem;
  grid-template-columns: auto 1fr;
}

.consent-check label {
  margin: 0;
  line-height: 1.7;
}

.consent-check .field-hint,
.consent-check .field-error {
  grid-column: 2;
}

.review-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--acid);
}

.review-action p {
  max-width: 30rem;
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.7;
}

.review-action .button {
  flex: 0 0 auto;
}

.apply-aside {
  position: sticky;
  top: 7rem;
}

.aside-card {
  padding: 1.6rem;
  border-radius: 1rem;
  background: var(--ink);
  color: #fff;
}

.aside-card h2 {
  margin: 1rem 0 1.8rem;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
}

.aside-card ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
  list-style: none;
}

.aside-card li {
  display: grid;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  color: rgb(255 255 255 / 72%);
  gap: 0.7rem;
  grid-template-columns: 1.6rem 1fr;
  font-size: 0.68rem;
  line-height: 1.6;
}

.aside-card li span {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  color: var(--acid);
  font-size: 0.58rem;
}

.aside-card > p:last-child {
  margin: 1.5rem 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 0.62rem;
  line-height: 1.7;
}

.application-review {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 2px solid var(--violet);
  border-radius: 1rem;
  background: #fff;
}

.application-review h2 {
  margin: 0.8rem 0;
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 500;
}

.review-warning {
  padding: 0.8rem 1rem;
  background: #fff3d6;
  color: #674b00;
  font-size: 0.72rem;
  font-weight: 700;
}

.application-review dl {
  display: grid;
  margin: 2rem 0;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
}

.application-review dl div {
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.application-review dt {
  color: var(--muted);
  font-size: 0.62rem;
}

.application-review dd {
  margin: 0.45rem 0 0;
  overflow-wrap: anywhere;
  font-size: 0.78rem;
  line-height: 1.7;
  white-space: pre-wrap;
}

.review-next {
  max-width: 48rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
}

.intake-unavailable {
  display: grid;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--control-line);
  border-radius: 0.7rem;
  background: var(--paper);
  gap: 0.35rem;
}

.intake-unavailable strong {
  font-size: 0.76rem;
}

.intake-unavailable span {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
}

.intake-submit-controls {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.intake-submit-controls .consent-check {
  margin-top: 0;
}

.intake-submit-controls a {
  color: var(--violet-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.submit-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  gap: 1rem;
}

.submit-action p {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.7;
}

.submit-action .button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.application-receipt {
  margin-top: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  background: var(--acid);
}

.application-receipt h2 {
  margin: 0.8rem 0;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 500;
}

.application-receipt > p:not(.eyebrow) {
  max-width: 48rem;
  font-size: 0.74rem;
  line-height: 1.8;
}

.application-receipt dl {
  display: grid;
  margin: 2rem 0 0;
  border-top: 1px solid rgb(28 27 32 / 25%);
  grid-template-columns: repeat(2, 1fr);
}

.application-receipt dl div {
  padding: 1rem 0;
  border-bottom: 1px solid rgb(28 27 32 / 25%);
}

.application-receipt dt {
  font-size: 0.62rem;
  font-weight: 750;
}

.application-receipt dd {
  margin: 0.4rem 0 0;
  overflow-wrap: anywhere;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
}

.application-receipt a,
.privacy-copy a,
.privacy-current-state a {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.apply-footer {
  min-height: 8rem;
  grid-template-columns: 1fr auto;
}

/* Privacy and legal */

.privacy-page {
  background: var(--paper-light);
}

.privacy-shell {
  width: min(100%, 90rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem);
}

.privacy-hero {
  display: grid;
  align-items: end;
  padding-bottom: clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid var(--line);
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
}

.privacy-hero h1 {
  max-width: 11ch;
  margin: 1rem 0 0;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.privacy-summary {
  padding: clamp(1.4rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.privacy-summary > p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  line-height: 1.8;
}

.privacy-meta,
.privacy-definition {
  margin: 1.8rem 0 0;
}

.privacy-meta div,
.privacy-definition div {
  display: grid;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  gap: 1rem;
  grid-template-columns: minmax(7rem, 0.38fr) 1fr;
}

.privacy-meta dt,
.privacy-definition dt {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 750;
}

.privacy-meta dd,
.privacy-definition dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 0.82rem;
}

.privacy-current-state {
  margin: clamp(2rem, 5vw, 4rem) 0 0;
  padding: 1.2rem 1.4rem;
  border-left: 0.35rem solid var(--violet);
  background: rgb(92 53 168 / 8%);
}

.privacy-current-state strong {
  font-family: var(--font-serif);
  font-size: 1rem;
}

.privacy-current-state p {
  margin: 0.5rem 0 0;
  font-size: 0.86rem;
  line-height: 1.85;
}

.privacy-sections {
  margin-top: clamp(3rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
}

.privacy-section {
  display: grid;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(12rem, 0.38fr) minmax(0, 1fr);
}

.privacy-section-title > p {
  margin: 0 0 1rem;
  color: var(--violet);
  font-family: Georgia, serif;
  font-size: 0.72rem;
  font-style: italic;
}

.privacy-section h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.privacy-copy {
  min-width: 0;
}

.privacy-copy h3 {
  margin: 2rem 0 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.privacy-copy h3:first-child {
  margin-top: 0;
}

.privacy-copy p,
.privacy-copy li {
  color: #3e3b43;
  font-size: 0.88rem;
  line-height: 1.85;
}

.privacy-copy p {
  max-width: 55rem;
  margin: 0 0 1rem;
}

.privacy-copy ul {
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}

.privacy-copy li + li {
  margin-top: 0.35rem;
}

.privacy-provision {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-radius: 0.75rem;
  background: var(--paper);
}

.privacy-provision h3 {
  margin-top: 0;
}

.legal-current-state {
  border-color: var(--coral);
  background: rgb(255 128 106 / 10%);
}

.legal-price-table {
  max-width: 100%;
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.legal-price-table table {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.68rem;
}

.legal-price-table th,
.legal-price-table td {
  padding: 0.9rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.legal-price-table thead th {
  color: var(--muted);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 40rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .first-proof,
  .pricing-teaser {
    grid-template-columns: 1fr;
  }

  .value-grid {
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-hero,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-section,
  .usage-section,
  .faq-section,
  .apply-layout {
    grid-template-columns: 1fr;
  }

  .apply-aside {
    position: static;
  }

  .demo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .preview-banner {
    font-size: 0.62rem;
    line-height: 1.5;
  }

  .site-header {
    min-height: 4.5rem;
    padding-inline: 1.1rem;
  }

  .header-cta {
    padding: 0.68rem 0.9rem;
    font-size: 0.62rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding: 4.25rem 1.25rem 6.75rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 31rem;
    margin-top: -3rem;
    border-top: 0;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .page-card {
    width: min(82%, 22rem);
    min-height: 27rem;
    transform: rotate(-2deg) translateY(0.75rem);
  }

  .recognition {
    justify-content: flex-start;
    overflow: hidden;
    padding-inline: 1.25rem;
    white-space: nowrap;
  }

  .recognition p:nth-of-type(n + 3),
  .recognition i:nth-of-type(n + 3) {
    display: none;
  }

  .first-proof,
  .pricing-teaser,
  .example-teaser {
    padding: 5rem 1.25rem;
  }

  .example-teaser {
    display: grid;
    padding: 0;
    grid-template-columns: 1fr;
  }

  .example-copy {
    padding: 5rem 1.25rem;
  }

  .example-visual {
    min-height: 34rem;
  }

  .demo-showcase {
    padding: 5rem 1.25rem;
  }

  .demo-showcase-heading,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-grid,
  .plan-grid {
    width: auto;
    margin-inline: -1.25rem;
    padding: 0 1.25rem 0.9rem;
    border: 0;
    grid-auto-columns: minmax(17.5rem, 86vw);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 1.25rem;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .demo-grid::-webkit-scrollbar,
  .plan-grid::-webkit-scrollbar {
    display: none;
  }

  .demo-card,
  .plan-card {
    scroll-snap-align: start;
  }

  .demo-card-body > p:not(.demo-kind, .metric-note),
  .demo-card .metric-note {
    min-height: 0;
  }

  .value-grid,
  .plan-grid,
  .field-grid-two,
  .plan-choice-grid,
  .billing-choices,
  .section-choices > div,
  .application-review dl,
  .application-receipt dl {
    grid-template-columns: 1fr;
  }

  .value-grid article,
  .value-grid article:first-child {
    min-height: 15rem;
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .value-grid h3 {
    margin-top: 3rem;
  }

  .section-heading,
  .plans-heading {
    grid-template-columns: 1fr;
  }

  .included-section,
  .usage-section,
  .process-section,
  .plans-section,
  .faq-section {
    padding: 5rem 1.25rem;
  }

  .included-list li,
  .usage-detail li {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: 31rem;
    border: 1px solid var(--line);
  }

  .annual-note,
  .review-action,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .annual-note,
  .review-action {
    display: flex;
  }

  .site-footer,
  .apply-footer {
    display: flex;
    min-height: 12rem;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .apply-shell {
    padding: 4rem 1.1rem;
  }

  .privacy-shell {
    padding: 4rem 1.1rem;
  }

  .privacy-hero h1 {
    font-size: clamp(2.6rem, 11vw, 4.6rem);
  }

  .privacy-section {
    gap: 1.5rem;
  }

  .privacy-meta div,
  .privacy-definition div {
    grid-template-columns: 1fr;
  }

  .privacy-copy p,
  .privacy-copy li {
    font-size: 0.92rem;
  }

  .apply-intro h1 {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .apply-step {
    padding: 1.25rem;
  }

  .review-action .button {
    width: 100%;
  }

  .submit-action {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-action .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-content: center;
  gap: 1.5rem;
  padding: clamp(2rem, 8vw, 7rem);
  background: var(--paper);
}

.error-page h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.error-page > p:not(.eyebrow) {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
}

.error-page .button {
  width: fit-content;
}
