@font-face {
  font-family: "Fredoka";
  font-style: normal;
  font-display: swap;
  font-weight: 300 700;
  src: url("/fonts/fredoka-latin-wght-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-display: swap;
  font-weight: 200 1000;
  src: url("/fonts/nunito-latin-wght-normal.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --blue: #123dc5;
  --blue-dark: #08236d;
  --purple: #5127ee;
  --yellow: #ffd533;
  --coral: #ff6a54;
  --mint: #25d69f;
  --cream: #fff7e7;
  --paper: #fffdf8;
  --ink: #092461;
  --muted: #6f6a65;
  --line: rgba(9, 36, 97, 0.15);
  --shadow: 0 20px 55px rgba(8, 35, 109, 0.14);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --shell: 1180px;
  --header-height: 72px;
  font-family: "Nunito", ui-rounded, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand__name,
.button {
  font-family: "Fredoka", ui-rounded, system-ui, sans-serif;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 13.5vw, 4.7rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 8.5vw, 3.45rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  margin-bottom: 18px;
}

.shell {
  width: min(calc(100% - 36px), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(9, 36, 97, 0.08);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand__mark {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.brand__name {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand__name span {
  color: var(--coral);
}

.desktop-nav,
.header-cta {
  display: none;
}

.desktop-nav {
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #314475;
  font-size: 0.93rem;
  font-weight: 800;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  border-radius: 4px;
  background: var(--coral);
  content: "";
  transition: transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.mobile-nav {
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary svg {
  width: 24px;
}

.mobile-nav nav {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: min(290px, calc(100vw - 36px));
  gap: 3px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-nav nav a {
  padding: 11px 12px;
  border-radius: 11px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
}

.mobile-nav nav a:hover,
.mobile-nav nav a[aria-current="page"] {
  background: #f3f0ff;
}

.mobile-nav nav .mobile-nav__cta {
  margin-top: 5px;
  background: var(--blue);
  color: #fff;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 4px solid rgba(37, 214, 159, 0.6);
  outline-offset: 3px;
}

.button--small {
  min-height: 42px;
  padding: 10px 18px;
  font-size: 0.91rem;
}

.button--yellow {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(255, 213, 51, 0.26);
}

.button--blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 24px rgba(18, 61, 197, 0.2);
}

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

.button--outline {
  border-color: rgba(9, 36, 97, 0.26);
  background: transparent;
  color: var(--ink);
}

.button--full {
  width: 100%;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 19px;
  transition: transform 160ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link--light {
  color: #fff;
}

.lede,
.lede-dark {
  max-width: 660px;
  font-size: clamp(1.08rem, 3vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero-note {
  margin: 18px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0.8;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 112px;
  background: var(--blue);
  color: #fff;
}

.home-hero::before {
  position: absolute;
  top: -170px;
  right: -200px;
  width: 540px;
  height: 540px;
  border: 96px solid rgba(81, 39, 238, 0.65);
  border-radius: 50%;
  content: "";
}

.home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
}

.home-hero__copy {
  align-self: center;
}

.home-hero__copy .lede {
  color: rgba(255, 255, 255, 0.84);
}

.hero-wave {
  position: absolute;
  right: -4%;
  bottom: -73px;
  left: -4%;
  height: 135px;
  transform: rotate(-2deg);
  border-radius: 50% 50% 0 0;
  background: var(--paper);
}

.signal-art {
  width: 100%;
  max-width: 590px;
  margin-inline: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 28px 60px rgba(5, 24, 81, 0.3);
}

.signal-art__top {
  display: flex;
  justify-content: space-between;
  padding: 3px 11px 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.signal-art > svg {
  border-radius: 25px;
}

.signal-art__result {
  display: grid;
  gap: 4px;
  padding: 15px 10px 7px;
}

.signal-art__result span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-art__result strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.5rem;
}

.mini-strength {
  display: flex;
  gap: 5px;
  margin-top: 7px;
}

.mini-strength i {
  width: 30px;
  height: 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.22);
}

.mini-strength i:nth-child(-n + 3) {
  background: var(--yellow);
}

.answer-band,
.steps-band,
.deep-read-band,
.limits-band,
.editorial-band,
.three-layers,
.plain-truth,
.process,
.responsibility-band,
.science-article,
.pricing-section,
.pricing-faq {
  padding: 76px 0;
}

.answer-band__grid {
  display: grid;
  gap: 38px;
}

.section-intro p,
.section-heading p {
  color: var(--muted);
}

.outcome-pair {
  display: grid;
  gap: 14px;
}

.outcome {
  padding: 24px;
  border-radius: var(--radius-md);
}

.outcome span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
}

.outcome--truthful {
  background: #d4faed;
  color: #075c48;
}

.outcome--deceptive {
  background: #ffe0d9;
  color: #7a251b;
}

.outcome__line {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}

.outcome__line i {
  height: 8px;
  flex: 1;
  border-radius: 9px;
  background: currentColor;
  opacity: 0.15;
}

.outcome__line i:nth-child(-n + 4) {
  opacity: 0.85;
}

.steps-band {
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-bottom: 38px;
}

.section-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
}

.steps-rail {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-rail li {
  position: relative;
  padding: 24px 0 26px 66px;
  border-top: 1px solid rgba(9, 36, 97, 0.18);
}

.steps-rail li > span {
  position: absolute;
  top: 20px;
  left: 0;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: var(--blue);
  color: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.steps-rail li:nth-child(2) > span {
  background: var(--purple);
}

.steps-rail li:nth-child(3) > span {
  background: var(--coral);
}

.steps-rail p {
  margin: 0;
  color: var(--muted);
}

.deep-read-band {
  overflow: hidden;
  background: var(--purple);
  color: #fff;
}

.deep-read-band__grid {
  display: grid;
  gap: 44px;
}

.deep-read-copy > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.07rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.check-icon {
  width: 23px;
  min-width: 23px;
  margin-top: 1px;
  color: var(--mint);
}

.timeline-preview {
  padding: 20px;
  transform: rotate(1.5deg);
  border-radius: 30px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(3, 17, 65, 0.34);
}

.timeline-preview__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.timeline-preview__header span {
  color: var(--purple);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.timeline-preview__header strong {
  font-family: "Fredoka", sans-serif;
}

.timeline-preview__track {
  display: flex;
  height: 110px;
  align-items: center;
  gap: 4px;
  padding: 12px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--blue-dark);
}

.timeline-preview__track span {
  width: 8px;
  height: var(--h);
  flex: 1;
  border-radius: 6px;
  background: var(--mint);
}

.timeline-preview__track span:nth-child(3n) {
  background: var(--yellow);
}

.timeline-preview__track span:nth-child(4n) {
  background: var(--coral);
}

.timeline-preview__moments {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.timeline-preview__moments article {
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.timeline-preview__moments span {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 900;
}

.timeline-preview__moments h3 {
  margin: 2px 0 3px;
  font-size: 1rem;
}

.timeline-preview__moments p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.limits-band {
  background: var(--paper);
}

.limits-band__grid {
  display: grid;
  gap: 30px;
}

.limits-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 220px;
  border-radius: var(--radius-lg);
  background: var(--yellow);
}

.limits-symbol span {
  width: 34px;
  height: 34px;
  border: 9px solid var(--ink);
  border-radius: 50%;
}

.limits-symbol span:nth-child(2) {
  width: 64px;
  height: 64px;
  border-color: var(--coral);
}

.limits-band p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.06rem;
}

.cta-band {
  padding: 34px 0;
  background: var(--blue);
  color: #fff;
}

.cta-band__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 22px;
}

.cta-band h2 {
  margin-bottom: 7px;
  font-size: clamp(1.8rem, 7vw, 2.8rem);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  overflow: hidden;
  padding: 70px 0;
}

.page-hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-hero--blue {
  background: var(--blue);
  color: #fff;
}

.page-hero--blue .lede {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero--cream {
  background: var(--cream);
}

.page-hero--center {
  text-align: center;
}

.page-hero--center .narrow {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.page-hero--purple {
  background: var(--purple);
  color: #fff;
}

.page-hero--pricing {
  position: relative;
  padding-bottom: 126px;
  background: var(--yellow);
  text-align: center;
}

.page-hero--pricing::after {
  position: absolute;
  right: -8%;
  bottom: -80px;
  left: -8%;
  height: 130px;
  border-radius: 50% 50% 0 0;
  background: var(--paper);
  content: "";
}

.page-hero--pricing .narrow {
  position: relative;
  z-index: 1;
}

.signal-art--compact {
  max-width: 520px;
}

.editorial-grid {
  display: grid;
  gap: 34px;
}

.editorial-aside {
  padding-top: 12px;
  border-top: 5px solid var(--coral);
}

.editorial-aside p {
  margin-bottom: 7px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editorial-aside strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.45rem;
  line-height: 1.25;
}

.prose-large p {
  color: var(--muted);
  font-size: 1.06rem;
}

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

.three-layers {
  background: var(--cream);
}

.layer-rows {
  border-bottom: 1px solid var(--line);
}

.layer-rows article {
  display: grid;
  grid-template-columns: 42px 1fr 12px;
  gap: 12px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.layer-number {
  color: var(--purple);
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
}

.layer-rows p {
  margin: 0;
  color: var(--muted);
}

.layer-color {
  width: 12px;
  height: 58px;
  border-radius: 10px;
  background: var(--yellow);
}

.layer-color--mint {
  background: var(--mint);
}

.layer-color--coral {
  background: var(--coral);
}

.plain-truth {
  background: var(--blue-dark);
  color: #fff;
}

.plain-truth__grid {
  display: grid;
  gap: 26px;
}

.plain-truth .lede-dark {
  color: #fff;
}

.plain-truth p:not(.lede-dark) {
  color: rgba(255, 255, 255, 0.74);
}

.plain-truth .button--outline {
  border-color: rgba(255, 255, 255, 0.44);
  color: #fff;
}

.process {
  padding-top: 36px;
}

.process .shell {
  display: grid;
  gap: 24px;
}

.process-step {
  display: grid;
  gap: 22px;
  padding: 27px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.process-step__number {
  font-family: "Fredoka", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-step__body p {
  margin-bottom: 0;
  color: rgba(9, 36, 97, 0.72);
}

.process-step--blue {
  background: #dbe5ff;
}

.process-step--yellow {
  background: #fff0a8;
}

.process-step--mint {
  background: #c9f7e8;
}

.process-step--coral {
  background: #ffded8;
}

.process-step__visual,
.context-notes,
.analysis-lines,
.read-options {
  min-height: 175px;
}

.upload-visual {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 25px;
  background: var(--blue);
}

.upload-visual__mic {
  width: 54px;
  height: 72px;
  border: 8px solid var(--yellow);
  border-radius: 30px;
}

.upload-visual__mic::before {
  display: block;
  width: 72px;
  height: 46px;
  margin: 33px 0 0 -17px;
  border-right: 7px solid var(--yellow);
  border-bottom: 7px solid var(--yellow);
  border-left: 7px solid var(--yellow);
  border-radius: 0 0 38px 38px;
  content: "";
}

.upload-visual__wave {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.upload-visual__wave i {
  width: 6px;
  height: 30%;
  border-radius: 5px;
  background: var(--mint);
}

.upload-visual__wave i:nth-child(2n) {
  height: 80%;
}

.upload-visual__wave i:nth-child(3n) {
  height: 55%;
}

.context-notes {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: 24px;
  border-radius: 25px;
  background: var(--cream);
}

.context-notes span {
  padding: 12px 15px;
  transform: rotate(-1deg);
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  font-family: "Fredoka", sans-serif;
  font-weight: 600;
}

.context-notes span:nth-child(2) {
  transform: rotate(1deg);
}

.analysis-lines {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 28px;
  border-radius: 25px;
  background: var(--blue-dark);
}

.analysis-lines i {
  width: 12px;
  height: 28%;
  border-radius: 8px;
  background: var(--mint);
}

.analysis-lines i:nth-child(2n) {
  height: 65%;
  background: var(--yellow);
}

.analysis-lines i:nth-child(3n) {
  height: 92%;
  background: var(--coral);
}

.read-options {
  display: grid;
  align-content: center;
  gap: 10px;
}

.read-options > span {
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  border: 1px solid rgba(9, 36, 97, 0.13);
  border-radius: 16px;
  background: var(--paper);
}

.read-options small {
  color: var(--purple);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.read-options strong {
  font-family: "Fredoka", sans-serif;
}

.responsibility-band {
  background: var(--yellow);
}

.responsibility-band__grid {
  display: grid;
  gap: 22px;
}

.responsibility-band p {
  max-width: 690px;
}

.science-hero {
  display: grid;
  gap: 34px;
}

.science-hero__statement {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(9, 36, 97, 0.3);
}

.science-hero__statement strong {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(1.55rem, 6vw, 2.4rem);
  line-height: 1.1;
}

.science-hero__statement p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.article-layout {
  display: grid;
  gap: 38px;
}

.article-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.article-nav a {
  padding: 8px 13px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.article-prose {
  max-width: 770px;
}

.article-prose > section + section {
  margin-top: 68px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

.article-prose p,
.article-prose li {
  color: #4f5669;
  font-size: 1.04rem;
}

.source-note {
  display: grid;
  gap: 9px;
  margin-top: 30px;
  padding: 22px;
  border-left: 6px solid var(--mint);
  border-radius: 0 18px 18px 0;
  background: #e4fbf4;
}

.source-note a {
  color: var(--blue);
  font-weight: 800;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list li {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.method-list strong {
  color: var(--ink);
  font-family: "Fredoka", sans-serif;
  font-size: 1.15rem;
}

.meaning-split {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.meaning-split > div {
  padding: 24px;
  border-radius: 22px;
  background: var(--cream);
}

.meaning-split > div:last-child {
  background: #ffe5df;
}

.meaning-split ul {
  margin-bottom: 0;
  padding-left: 19px;
}

.pricing-section {
  padding-top: 20px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 35, 109, 0.06);
}

.price-card--pro {
  border: 3px solid var(--blue);
}

.price-card--ultra {
  border-color: transparent;
  background: var(--blue-dark);
  color: #fff;
  box-shadow: 0 22px 50px rgba(8, 35, 109, 0.2);
}

.price-card__head {
  min-height: 76px;
}

.price-card__head h2 {
  margin-bottom: 4px;
  font-size: 1.65rem;
}

.price-card__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card--ultra .price-card__head p,
.price-card--ultra .price span,
.price-card--ultra .annual-price span {
  color: rgba(255, 255, 255, 0.67);
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 58px;
  margin: 16px 0 10px;
}

.price strong {
  font-family: "Fredoka", sans-serif;
  font-size: 2.45rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.annual-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: -2px 0 16px;
}

.annual-price strong {
  color: var(--coral);
  font-family: "Fredoka", sans-serif;
}

.price-card--ultra .annual-price strong {
  color: var(--yellow);
}

.annual-price span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  color: #4d5877;
  font-size: 0.91rem;
}

.price-card--ultra li {
  color: rgba(255, 255, 255, 0.84);
}

.price-card .button {
  margin-top: auto;
}

.pricing-notes {
  max-width: 860px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.pricing-notes p {
  margin-bottom: 8px;
}

.pricing-faq {
  background: var(--cream);
}

.pricing-faq h2 {
  margin-bottom: 30px;
}

.faq-list {
  max-width: 850px;
}

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

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

.faq-list summary {
  padding: 20px 38px 20px 0;
  cursor: pointer;
  font-family: "Fredoka", sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
}

.faq-list p {
  max-width: 720px;
  color: var(--muted);
}

.legal-hero {
  padding: 62px 0 54px;
  background: var(--cream);
}

.legal-hero__inner {
  max-width: 900px;
}

.legal-hero h1 {
  font-size: clamp(2.7rem, 10vw, 4.4rem);
}

.legal-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.legal-hero .legal-date {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 800;
}

.legal-pending {
  padding: 2px 7px;
  border-radius: 7px;
  background: #fff0a8;
  color: #6c5100;
  font-size: 0.86em;
  font-weight: 800;
}

.legal-body {
  padding: 64px 0 90px;
}

.legal-layout {
  display: grid;
  gap: 40px;
}

.legal-summary {
  align-self: start;
  padding: 24px;
  border-radius: 22px;
  background: #e8edff;
}

.legal-summary h2 {
  font-size: 1.4rem;
}

.legal-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.legal-summary li {
  color: #465476;
  font-size: 0.9rem;
}

.legal-prose {
  max-width: 780px;
}

.legal-prose h2 {
  margin: 52px 0 15px;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.legal-prose h2:first-of-type {
  margin-top: 32px;
}

.legal-prose h3 {
  margin-top: 26px;
}

.legal-prose p,
.legal-prose li {
  color: #4f5669;
}

.legal-prose a {
  color: var(--blue);
  font-weight: 800;
}

.legal-prose ul {
  padding-left: 22px;
}

.retention-table {
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.retention-table > div {
  display: grid;
  gap: 8px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.retention-table strong {
  font-family: "Fredoka", sans-serif;
}

.site-footer {
  padding: 60px 0 22px;
  background: #071c56;
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 38px;
}

.brand--footer .brand__mark {
  color: var(--mint);
}

.brand--footer .brand__name {
  color: #fff;
}

.footer-lead p {
  max-width: 360px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid > div:not(.footer-lead) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid h2 {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Nunito", sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-lead) a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  text-decoration: none;
}

.footer-grid > div:not(.footer-lead) a:hover {
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2px 18px;
  margin-top: 44px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.73rem;
}

@media (min-width: 680px) {
  .shell {
    width: min(calc(100% - 64px), var(--shell));
  }

  .answer-band,
  .steps-band,
  .deep-read-band,
  .limits-band,
  .editorial-band,
  .three-layers,
  .plain-truth,
  .process,
  .responsibility-band,
  .science-article,
  .pricing-section,
  .pricing-faq {
    padding-block: 94px;
  }

  .answer-band__grid,
  .deep-read-band__grid,
  .limits-band__grid,
  .editorial-grid,
  .plain-truth__grid,
  .responsibility-band__grid,
  .science-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 64px;
  }

  .outcome-pair,
  .timeline-preview__moments,
  .meaning-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-rail li {
    padding: 78px 28px 8px 0;
    border-top: 0;
    border-right: 1px solid var(--line);
  }

  .steps-rail li + li {
    padding-left: 28px;
  }

  .steps-rail li:last-child {
    border-right: 0;
  }

  .steps-rail li > span {
    top: 14px;
    left: 0;
  }

  .steps-rail li + li > span {
    left: 28px;
  }

  .cta-band__inner {
    align-items: center;
    flex-direction: row;
  }

  .page-hero {
    padding: 92px 0;
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: 60px;
  }

  .layer-rows article {
    grid-template-columns: 70px 1fr 16px;
    padding: 30px 0;
  }

  .layer-color {
    width: 16px;
  }

  .process-step {
    grid-template-columns: 54px minmax(0, 0.85fr) minmax(280px, 1.15fr);
    align-items: center;
    padding: 38px;
  }

  .process-step__visual,
  .context-notes,
  .analysis-lines,
  .read-options {
    min-height: 220px;
  }

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

  .retention-table > div {
    grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(160px, 0.55fr) minmax(160px, 0.55fr);
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 930px) {
  .desktop-nav,
  .header-cta {
    display: flex;
  }

  .mobile-nav {
    display: none;
  }

  .home-hero {
    min-height: 720px;
    padding: 78px 0 132px;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 64px;
  }

  .home-hero__copy h1 {
    max-width: 650px;
  }

  .article-layout,
  .legal-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
    gap: 80px;
  }

  .article-nav {
    position: sticky;
    top: calc(var(--header-height) + 28px);
    display: grid;
    overflow: visible;
  }

  .article-nav a {
    padding: 8px 0;
    border: 0;
    border-radius: 0;
  }

  .legal-summary {
    position: sticky;
    top: calc(var(--header-height) + 28px);
  }

  .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
  }

  .price-card {
    padding: 25px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
