:root {
  --bg: #f9f7f2;
  --bg-elevated: #f1efe8;
  --ink: #1a1c2e;
  --ink-muted: #4b5068;
  --line: #e3e0d8;
  --accent: #1a1c2e;
  --accent-mid: #24273a;
  --shadow: 5px 5px 0 #1a1c2e;
  --shadow-soft: 0 22px 50px -28px rgba(26, 28, 46, 0.35);
  --shadow-lift: 7px 7px 0 #1a1c2e;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.3, 0.64, 1);
  --radius-lg: 14px;
  --radius-pill: 999px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Nunito", "Inter", system-ui, sans-serif;
  --font-brand: "Luckiest Guy", "Comic Sans MS", "Comic Sans", cursive;
  --container: 1040px;
  --narrow: 720px;
  --header-h: 58px;
  --reveal-duration: 0.85s;
}

.brand {
  font-family: var(--font-brand);
  font-weight: 400;
  letter-spacing: 0.02em;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-muted);
  background-color: var(--bg);
  position: relative;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      105% 55% at 0% 0%,
      rgba(99, 102, 241, 0.07),
      transparent 52%
    ),
    radial-gradient(
      90% 50% at 100% 8%,
      rgba(236, 72, 153, 0.055),
      transparent 48%
    ),
    radial-gradient(
      70% 45% at 50% 100%,
      rgba(26, 28, 46, 0.04),
      transparent 55%
    ),
    linear-gradient(180deg, #fdfcfa 0%, var(--bg) 38%, #f6f3ec 100%);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-display);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--narrow));
}

.container--steps {
  width: min(100% - 2.5rem, 760px);
}

.container--faq {
  width: min(100% - 2.5rem, 720px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  transition: box-shadow 0.45s var(--ease-out), background 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out);
}

.site-header.is-scrolled {
  background: color-mix(in srgb, var(--bg) 96%, #fff 4%);
  box-shadow: 0 10px 40px -20px rgba(26, 28, 46, 0.18);
  border-bottom-color: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s var(--ease-out);
}

.logo:hover,
.logo:focus-visible {
  color: var(--accent-mid);
  transform: translateY(-1px);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.85rem;
  justify-content: flex-end;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1.5px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--ink), var(--accent-mid));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav__emphasis {
  color: var(--ink) !important;
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 1px;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: color-mix(in srgb, var(--bg) 97%, #fff 3%);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
    box-shadow: 0 24px 48px -32px rgba(26, 28, 46, 0.2);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav.is-open {
    max-height: 240px;
  }

  .site-nav__list {
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    align-items: flex-start;
  }
}

html.motion-ok main > section.section:not(.hero):not(.is-revealed),
html.motion-ok .site-footer:not(.is-revealed) {
  opacity: 0;
  transform: translateY(1.35rem);
  filter: blur(0.5px);
}

html.motion-ok main > section.section:not(.hero).is-revealed,
html.motion-ok .site-footer.is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out),
    filter 0.5s ease;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.section--tight {
  padding-block: 0 2.5rem;
}

.section__title {
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
}

.section__intro {
  margin: -1.65rem auto 2rem;
  max-width: 40rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.section__intro--narrow {
  max-width: 34rem;
}

.hero {
  padding-top: clamp(2rem, 5vw, 3rem);
}

.hero__inner {
  text-align: center;
}

.hero__mascot {
  display: block;
  width: min(320px, 88vw);
  margin: 0 auto 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
  transition: transform 0.5s var(--ease-out);
}

.hero__mascot .mascot-bounce {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero__mascot img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 36px rgba(26, 28, 46, 0.22));
  transition: transform 0.6s var(--ease-out), filter 0.45s var(--ease-out);
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 0.85rem;
}

.hero__kicker .brand {
  font-size: clamp(1.4rem, 3.2vw, 1.75rem);
  line-height: 1;
}

.hero__kicker-meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

html.motion-ok .hero__kicker {
  animation: hero-rise 0.85s var(--ease-out) both;
  animation-delay: 0.08s;
}

@media (hover: hover) and (pointer: fine) {
  .hero__mascot:hover {
    transform: translateY(-4px);
  }

  .hero__mascot:hover img {
    transform: scale(1.03);
    filter: drop-shadow(0 26px 48px rgba(26, 28, 46, 0.32));
  }
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

html.motion-ok .hero__eyebrow {
  animation: hero-rise 0.9s var(--ease-out) both;
  animation-delay: 0.05s;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

html.motion-ok .hero__title {
  animation: hero-rise 0.95s var(--ease-out) both;
  animation-delay: 0.12s;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero__title {
    background: linear-gradient(
      120deg,
      var(--ink) 0%,
      #2f3248 42%,
      var(--ink) 88%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  html.motion-ok .hero__title {
    animation:
      hero-rise 0.95s var(--ease-out) both,
      shimmer-title 8s ease-in-out infinite;
    animation-delay: 0.12s, 0.5s;
  }
}

.hero__lead {
  margin: 0 0 0.6rem;
  max-width: 30rem;
  margin-inline: auto;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-muted);
}

html.motion-ok .hero__lead {
  animation: hero-rise 0.95s var(--ease-out) both;
  animation-delay: 0.22s;
}

.hero__sub {
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

html.motion-ok .hero__sub {
  animation: hero-rise 0.95s var(--ease-out) both;
  animation-delay: 0.3s;
}

.hero__compare {
  margin: 0 0 1.35rem;
  padding: 1.15rem 1.35rem 1.2rem;
  font-size: 0.98rem;
  line-height: 1.62;
  text-align: center;
  color: var(--ink-muted);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #fff 55%, var(--bg-elevated)) 0%,
    var(--bg-elevated) 100%
  );
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow), 0 14px 36px -28px rgba(26, 28, 46, 0.12);
}

.hero__compare strong {
  color: var(--ink);
}

.hero__brand {
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.hero__compare-note {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-muted);
  font-style: normal;
}

@media (max-width: 540px) {
  .hero__brand {
    white-space: normal;
  }
}

html.motion-ok .hero__compare {
  animation: hero-rise 0.95s var(--ease-out) both;
  animation-delay: 0.26s;
}

.hero__disclaimer {
  margin: 1.5rem 0 0;
  max-width: 24rem;
  margin-inline: auto;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

html.motion-ok .hero__disclaimer {
  animation: hero-rise 1s var(--ease-out) both;
  animation-delay: 0.38s;
}

html.motion-ok .hero__mascot {
  animation: hero-rise 0.9s var(--ease-out) both;
}

html.motion-ok .hero__mascot img {
  animation: mascot-glow 5.5s ease-in-out 0.9s infinite;
}

html.motion-ok .hero__mascot .mascot-bounce {
  animation: mascot-bounce 2.75s var(--ease-spring) 0.9s infinite;
  will-change: transform;
}

html.motion-ok .final-cta__mascot img {
  animation: mascot-glow 5.5s ease-in-out infinite;
  animation-delay: -2.75s;
}

html.motion-ok .final-cta__mascot .mascot-bounce {
  animation: mascot-bounce 2.75s var(--ease-spring) infinite;
  animation-delay: -1.5s;
  will-change: transform;
}

.download-cta__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    filter 0.28s ease;
}

.btn--primary {
  background: linear-gradient(
    165deg,
    #2e3148 0%,
    var(--accent) 48%,
    #12131c 100%
  );
  color: #fff;
  box-shadow: var(--shadow), 0 16px 36px -18px rgba(26, 28, 46, 0.55);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lift), 0 22px 44px -18px rgba(26, 28, 46, 0.45);
  filter: brightness(1.04);
}

.btn--primary:active {
  transform: translate(1px, 1px);
  box-shadow: 4px 4px 0 #1a1c2e;
  filter: brightness(0.98);
}

.btn--primary:focus-visible {
  outline: 2px solid #6366f1;
  outline-offset: 3px;
}

.download-cta__note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.text-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-mid);
}

.rule {
  border: none;
  height: 1px;
  margin: 0 auto 0;
  max-width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line) 12%,
    color-mix(in srgb, var(--ink) 12%, transparent) 50%,
    var(--line) 88%,
    transparent
  );
  opacity: 0.9;
}

.rule--short {
  width: min(40%, 320px);
  margin-block: 2.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #fff 55%, var(--bg)) 0%,
    var(--bg) 100%
  );
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.85rem;
  box-shadow: var(--shadow), 0 18px 40px -28px rgba(26, 28, 46, 0.2);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-lift), 0 26px 50px -26px rgba(26, 28, 46, 0.28);
  }
}

.card:active {
  transform: translate(-1px, -1px);
}

.card--soft {
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #fff 40%, var(--bg-elevated)) 0%,
    var(--bg-elevated) 100%
  );
}

.card__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  text-align: center;
}

.card__text {
  margin: 0;
  font-size: 0.98rem;
  text-align: center;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.steps__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.steps__num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #2a2d42 0%, var(--ink) 55%, #12131c 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 6px 16px -4px rgba(26, 28, 46, 0.45);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

@media (hover: hover) and (pointer: fine) {
  .steps__item:hover .steps__num {
    transform: scale(1.06);
    box-shadow: 0 10px 22px -6px rgba(26, 28, 46, 0.5);
  }
}

.steps__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
  text-align: center;
}

.steps__body {
  width: 100%;
  max-width: 38rem;
}

.steps__body p {
  margin: 0;
  font-size: 0.98rem;
  text-align: center;
}

.prose-block {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.prose-block--spaced {
  margin-top: 2.5rem;
}

.prose-block__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 800;
  text-align: center;
}

.prose-block p {
  margin: 0 0 1.25rem;
}

.table-wrap {
  margin-top: 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow), 0 20px 48px -32px rgba(26, 28, 46, 0.18);
  background: linear-gradient(180deg, #fff 0%, #faf9f7 100%);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .table-wrap:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lift), 0 26px 56px -28px rgba(26, 28, 46, 0.22);
  }
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table thead th {
  text-align: center;
  padding: 0.85rem 1rem;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #fff 35%, var(--bg-elevated)) 0%,
    var(--bg-elevated) 100%
  );
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.data-table tbody th {
  text-align: left;
  padding: 0.85rem 1rem;
  width: 28%;
  vertical-align: top;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
  .data-table thead {
    display: none;
  }

  .data-table tbody tr {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
  }

  .data-table tbody tr:last-child {
    border-bottom: none;
  }

  .data-table tbody th,
  .data-table tbody td {
    display: block;
    width: 100%;
    border: none;
    padding: 0.35rem 1rem;
  }

  .data-table tbody th {
    padding-top: 0.75rem;
  }
}

.fine-print {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  text-align: center;
}

.fine-print--languages {
  margin: 0 auto 1.25rem;
  max-width: 42rem;
  line-height: 1.6;
}

.section--who {
  background: color-mix(in srgb, var(--bg-elevated) 72%, var(--bg) 28%);
}

.who-grid__list {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.who-grid__list strong {
  color: var(--ink);
}

.who-grid__card .card__title {
  margin-bottom: 0.85rem;
}

.subsection-title {
  margin: 2.75rem 0 1rem;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--ink);
  text-align: center;
}

.stack--cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.prose-section .section__title {
  margin-bottom: 1rem;
  text-align: center;
}

.centered-prose {
  text-align: center;
  margin: 0 auto 0;
  max-width: 640px;
}

.inline-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent-mid);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, #fff 30%, var(--bg)) 0%,
    var(--bg) 100%
  );
  box-shadow: var(--shadow), 0 14px 36px -28px rgba(26, 28, 46, 0.16);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .faq__item:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-lift), 0 20px 44px -28px rgba(26, 28, 46, 0.2);
  }
}

.faq__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.1rem 2.75rem;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  text-align: center;
  position: relative;
  transition: background 0.3s ease, color 0.2s ease;
}

.faq__summary:hover,
.faq__summary:focus-visible {
  background: color-mix(in srgb, var(--bg-elevated) 75%, transparent);
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring), color 0.25s ease;
  color: var(--ink-muted);
}

.faq__item[open] .faq__summary::after {
  content: "−";
  transform: translateY(-50%);
  color: var(--ink);
}

.faq__panel {
  padding: 0 1.25rem 1.15rem;
  border-top: 1px solid var(--line);
}

html.motion-ok .faq__panel {
  animation: faq-open 0.45s var(--ease-out);
}

.faq__panel p {
  margin: 0.85rem 0 0;
  font-size: 0.98rem;
  text-align: center;
}

.faq__panel a {
  font-weight: 600;
  color: var(--ink);
}

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

.manifesto__inner {
  text-align: center;
}

.manifesto__hook {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.8vw, 2.05rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 36ch;
  margin-inline: auto;
}

.manifesto__body {
  max-width: 38rem;
  margin-inline: auto;
}

.manifesto__body > p:first-of-type {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ink-muted);
}

.manifesto__sig {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

.section--final-cta {
  padding-block: clamp(3rem, 7vw, 4.5rem);
}

.final-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.final-cta__mascot {
  display: block;
  width: min(220px, 70vw);
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  transition: transform 0.45s var(--ease-out);
}

.final-cta__mascot .mascot-bounce {
  display: block;
  width: 100%;
  line-height: 0;
}

.final-cta__mascot img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 32px rgba(26, 28, 46, 0.2));
  transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .final-cta__mascot:hover {
    transform: translateY(-3px);
  }

  .final-cta__mascot:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 24px 44px rgba(26, 28, 46, 0.3));
  }
}

.final-cta__title {
  margin: 0;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  max-width: 22ch;
  line-height: 1.2;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  text-align: center;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

.site-footer__line {
  margin: 0.35rem 0;
}

.site-footer a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
}

.site-footer__company {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes shimmer-title {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes mascot-glow {
  0%,
  100% {
    filter: drop-shadow(0 16px 32px rgba(26, 28, 46, 0.22));
  }
  50% {
    filter: drop-shadow(0 26px 48px rgba(26, 28, 46, 0.34));
  }
}

@keyframes mascot-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  18% {
    transform: translateY(-11px);
  }
  32% {
    transform: translateY(-3px);
  }
  48% {
    transform: translateY(-8px);
  }
  62% {
    transform: translateY(-1px);
  }
  78% {
    transform: translateY(-5px);
  }
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.container--download {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

.container--legal {
  width: min(100% - 2.5rem, 720px);
  margin-inline: auto;
}

.legal-page {
  padding-block: clamp(2.5rem, 6vw, 4rem);
}

.legal-page__header {
  margin-bottom: 2rem;
  text-align: center;
}

.legal-page__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.legal-page__meta {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.legal-page__body {
  text-align: left;
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-page__body h2 {
  margin: 2.25rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.legal-page__body p {
  margin: 0 0 1rem;
}

.legal-page__body ul {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.legal-page__body li {
  margin-bottom: 0.45rem;
}

.legal-page__body a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page__body strong {
  color: var(--ink);
}

.legal-page__back {
  margin: 2.5rem 0 0;
  text-align: center;
}

.models-guide-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 1.75rem 0 0;
  text-align: center;
}

.models-guide-cta__hint {
  margin: 0;
  max-width: 32rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.guide-page__header {
  margin-bottom: 2rem;
  text-align: center;
}

.guide-page__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.8vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.guide-page__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-muted);
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.guide-page__body .table-wrap {
  margin: 1rem 0 1.25rem;
}

.guide-page__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.guide-page__cta-secondary {
  font-size: 0.95rem;
}

.guide-details {
  margin: 1.75rem 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--bg-elevated) 92%, var(--ink) 2%);
  box-shadow: 0 12px 36px -24px rgba(26, 28, 46, 0.2);
}

.guide-details__summary {
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.guide-details__summary::-webkit-details-marker {
  display: none;
}

.guide-details__body {
  padding: 0 1.15rem 1.2rem;
  border-top: 1px solid var(--line);
}

.guide-details__body > :first-child {
  margin-top: 1rem;
}

.demo-section__intro {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  font-size: 0.98rem;
  line-height: 1.6;
  text-align: center;
  color: var(--ink-muted);
}

.download-page__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.download-page__lead {
  margin: 0;
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.65;
}

.download-page__section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 800;
  text-align: center;
  color: var(--ink);
}

.download-page__section-intro {
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.6;
}

.download-page__section-intro code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
  padding: 0.1em 0.3em;
  border-radius: 4px;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}

.video-placeholder {
  margin: 0;
  border-radius: var(--radius-lg);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow), 0 20px 48px -32px rgba(26, 28, 46, 0.15);
  background: linear-gradient(
    165deg,
    color-mix(in srgb, #fff 50%, var(--bg-elevated)) 0%,
    var(--bg-elevated) 100%
  );
  overflow: hidden;
}

.video-placeholder__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}

.video-placeholder__play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  margin-bottom: 0.25rem;
  box-shadow: 0 8px 24px -8px rgba(26, 28, 46, 0.45);
}

.video-placeholder__play::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}

.video-placeholder__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
}

.video-placeholder__hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  max-width: 28ch;
}

.unsigned-notice {
  text-align: left;
}

.unsigned-notice > p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
}

.unsigned-notice__list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.unsigned-notice__list li {
  margin-bottom: 0.85rem;
}

.unsigned-notice__list li:last-child {
  margin-bottom: 0;
}

.unsigned-notice__list strong {
  color: var(--ink);
}

.unsigned-notice code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  padding: 0.12em 0.35em;
  border-radius: 6px;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
  color: var(--ink);
}

.download-buttons {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .download-buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.btn--download {
  width: 100%;
  min-height: 3.25rem;
  text-align: center;
}

.download-page__footnote {
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  text-align: center;
  line-height: 1.55;
}

.download-page__footnote code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
}

.toast {
  position: fixed;
  z-index: 10000;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  left: 50%;
  max-width: min(92vw, 22rem);
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: var(--ink);
  background: color-mix(in srgb, var(--bg) 94%, #fff);
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow), 0 20px 50px -24px rgba(26, 28, 46, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 120%, 0);
  transition:
    transform 0.38s var(--ease-out),
    opacity 0.32s ease,
    visibility 0.32s ease;
}

.toast.toast--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .toast {
    transition-duration: 0.12s;
  }
}
