@font-face {
  font-family: "Pretendard";
  src: url("/assets/fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ivory: #faf7f2;
  --cream: #fffdf9;
  --paper: #fffaf5;
  --ink: #282226;
  --muted: #70666a;
  --plum: #6e3949;
  --plum-deep: #4f2936;
  --rose: #a74759;
  --rose-soft: #edd2cf;
  --rose-mid: #d59a98;
  --sage: #a8b19d;
  --sage-soft: #dde3d8;
  --yellow: #e6b765;
  --yellow-soft: #f5e4bd;
  --line: #e5ddd4;
  --line-strong: #cfc3b9;
  --shadow: 0 24px 70px rgba(67, 43, 50, 0.1);
  --shadow-soft: 0 12px 36px rgba(67, 43, 50, 0.07);
  --shell: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

p,
h1,
h2,
h3,
blockquote,
ul,
ol {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

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

::selection {
  color: #fff;
  background: var(--plum);
}

:focus-visible {
  outline: 3px solid rgba(166, 71, 89, 0.34);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--plum-deep);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.section-pad {
  padding: 136px 0;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.13;
}

.section-heading h2 em {
  color: var(--rose);
  font-style: normal;
}

.section-heading > p:last-child {
  max-width: 580px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.centered-heading {
  max-width: 760px;
  margin: 0 auto 66px;
  text-align: center;
}

.centered-heading > p:last-child {
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 12px 28px rgba(166, 71, 89, 0.2);
}

.button-primary:hover {
  background: #92384b;
  box-shadow: 0 16px 32px rgba(166, 71, 89, 0.26);
}

.button-outline {
  color: var(--plum);
  background: transparent;
  border-color: rgba(110, 57, 73, 0.42);
}

.button-outline:hover {
  background: rgba(110, 57, 73, 0.06);
  border-color: var(--plum);
}

.button-quiet {
  color: var(--muted);
  background: #f4efea;
}

.button-large {
  min-height: 62px;
  padding-inline: 30px;
  border-radius: 15px;
  font-size: 17px;
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  border-radius: 11px;
  font-size: 14px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.header-inner {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 28px;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1;
}

.wordmark span {
  color: var(--rose);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
}

.desktop-nav a {
  color: #51474c;
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  display: grid;
  padding: 8px 24px 22px;
  border-top: 1px solid var(--line);
  background: var(--ivory);
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 720px;
  padding-top: 132px;
  padding-bottom: 58px;
  overflow: hidden;
}

.hero::after {
  content: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(500px, 1.04fr);
  align-items: center;
  gap: 58px;
}

.hero-status {
  margin-bottom: 24px;
  color: var(--plum);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.hero h1 {
  max-width: 670px;
  font-size: clamp(48px, 4.8vw, 68px);
  font-weight: 790;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.hero-lead {
  max-width: 610px;
  margin-top: 28px;
  color: #5c5257;
  font-size: 19px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 10px;
  color: var(--plum);
  border-bottom: 1px solid rgba(110, 57, 73, 0.34);
  font-weight: 700;
}

.text-link:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  margin-top: 26px;
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.hero-notes li {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-left: 1px solid var(--line-strong);
}

.hero-notes li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-preview {
  position: relative;
  min-height: 555px;
}

.result-card {
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(45, 31, 35, 0.11);
}

.result-card-main {
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 535px;
  padding: 26px 28px 22px;
  background: var(--cream);
}

.result-card-main::before {
  content: none;
}

.result-card-main > * {
  position: relative;
  z-index: 1;
}

.result-card-main header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-kicker {
  color: var(--plum);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.report-example {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.type-heading {
  margin-top: 27px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.type-heading p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--plum-deep);
  font-size: 34px;
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.type-heading p b:last-child {
  color: #587052;
}

.type-heading p i {
  color: var(--muted);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
}

.type-heading span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.card-description {
  margin-top: 20px;
  color: #4f464a;
  font-size: 16px;
  line-height: 1.65;
}

.card-description strong {
  color: var(--ink);
  font-size: 17px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 17px;
}

.chip {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.chip-rose {
  color: #74404a;
  background: var(--rose-soft);
}

.chip-sage {
  color: #4d5b48;
  background: var(--sage-soft);
}

.sentence-card {
  display: flex;
  gap: 14px;
  margin-top: 21px;
  padding: 17px 18px;
  background: #f8f3ee;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.bubble-icon {
  flex: 0 0 auto;
  display: grid;
  width: 34px;
  height: 30px;
  place-items: center;
  color: #fff;
  background: var(--plum);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: 1px;
}

.sentence-card small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.sentence-card p {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.55;
}

.result-card-main footer {
  margin-top: 15px;
  color: #867a7f;
  font-size: 10px;
}

.promise-preview {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.promise-preview span {
  color: var(--muted);
  font-weight: 700;
}

.promise-preview p {
  color: var(--ink);
}

.process-strip {
  position: relative;
  z-index: 8;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.2fr;
  min-height: 122px;
  align-items: center;
  gap: 34px;
}

.process-strip-inner > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.step-icon {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--plum-deep);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 850;
}

.step-rose { background: var(--rose-soft); }
.step-sage { background: var(--sage-soft); }
.step-yellow { background: var(--yellow-soft); }

.process-strip p {
  display: grid;
  gap: 2px;
}

.process-strip strong {
  font-size: 17px;
  letter-spacing: -0.025em;
}

.process-strip small {
  color: var(--muted);
  font-size: 12px;
}

.hand-arrow {
  color: #a08f93;
  font-size: 30px;
  transform: rotate(-3deg);
}

.loop-section {
  background: var(--cream);
}

.loop-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.loop-diagram {
  position: relative;
  min-height: 490px;
  border-left: 1px solid var(--line);
}

.loop-card {
  position: absolute;
  z-index: 2;
  width: min(300px, 54%);
  padding: 27px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.loop-card > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.loop-card strong {
  display: block;
  margin-top: 18px;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.loop-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.loop-a {
  top: 24px;
  left: 0;
  transform: rotate(-2deg);
}

.loop-a > span {
  color: #77414e;
  background: var(--rose-soft);
}

.loop-b {
  right: 0;
  bottom: 27px;
  transform: rotate(2deg);
}

.loop-b > span {
  color: #4c5b47;
  background: var(--sage-soft);
}

.loop-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  align-content: center;
  color: var(--plum-deep);
  background: var(--yellow-soft);
  border: 1px solid #e5c174;
  border-radius: 50%;
  box-shadow: 0 16px 38px rgba(128, 84, 35, 0.12);
  text-align: center;
  transform: translate(-50%, -50%);
}

.loop-center b {
  font-size: 12px;
}

.loop-center span {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.25;
}

.loop-arrow {
  position: absolute;
  color: rgba(110, 57, 73, 0.45);
  font-family: serif;
  font-size: 62px;
}

.arrow-top {
  top: 80px;
  right: 100px;
  transform: rotate(10deg);
}

.arrow-bottom {
  bottom: 78px;
  left: 96px;
  transform: rotate(8deg);
}

.results-section {
  background: #f4eee9;
}

.result-demo {
  max-width: 1050px;
  margin-inline: auto;
}

.tab-list {
  display: flex;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 5px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.tab-list button {
  min-width: 122px;
  min-height: 45px;
  padding: 0 22px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 750;
}

.tab-list button.is-active {
  color: #fff;
  background: var(--plum);
  box-shadow: 0 8px 18px rgba(79, 41, 54, 0.18);
}

.tab-panel {
  min-height: 480px;
  padding: 54px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.demo-profiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  align-items: center;
  gap: 26px;
}

.profile-card {
  display: flex;
  min-height: 174px;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.profile-a { background: #fff8f7; }
.profile-b { background: #f7faf5; }

.avatar {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.avatar-a { color: #78404d; background: var(--rose-soft); }
.avatar-b { color: #4e5b4a; background: var(--sage-soft); }

.profile-card small,
.comfort-grid small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.profile-card strong,
.comfort-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 19px;
  letter-spacing: -0.035em;
}

.profile-card p,
.comfort-grid p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.misread-line {
  position: relative;
  display: grid;
  justify-items: center;
  color: var(--rose);
  text-align: center;
}

.misread-line::before,
.misread-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  border-top: 1px solid var(--rose-mid);
}

.misread-line::before { left: -3px; }
.misread-line::after { right: -3px; }

.misread-line span {
  font-size: 10px;
  font-weight: 700;
}

.misread-line b {
  font-size: 13px;
}

.action-output {
  margin-top: 28px;
  padding: 30px 34px;
  color: #fff;
  background: var(--plum-deep);
  border-radius: 22px;
}

.action-output header {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--yellow-soft);
}

.action-output header span {
  color: var(--yellow);
}

.action-output header small {
  font-weight: 750;
}

.action-output blockquote {
  margin-top: 14px;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.5;
}

.action-output > p {
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.demo-safety {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  text-align: center;
}

.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comfort-grid article {
  position: relative;
  min-height: 205px;
  padding: 30px 30px 30px 98px;
  background: #fbf7f3;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.mini-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.mini-icon.rose { color: #75404c; background: var(--rose-soft); }
.mini-icon.sage { color: #4e5a49; background: var(--sage-soft); }

.repair-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.repair-step {
  padding: 22px 18px;
  background: #f7f2ed;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.repair-step > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  background: #ede7e1;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.repair-step.is-needed {
  background: #fff8f4;
  border-color: #dfb5ab;
}

.repair-step.is-needed > span {
  color: #fff;
  background: var(--rose);
}

.repair-step strong {
  display: block;
  font-size: 15px;
}

.repair-step small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.process-section {
  background: var(--cream);
}

.process-heading {
  max-width: 720px;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 70px;
  list-style: none;
}

.process-cards li {
  position: relative;
  min-height: 500px;
  padding: 28px;
  overflow: hidden;
  background: #fbf6f1;
  border: 1px solid var(--line);
  border-radius: 28px;
}

.process-cards li:nth-child(2) { background: #f3f5ef; }
.process-cards li:nth-child(3) { background: #fbf3e3; }

.process-number {
  color: var(--rose);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-art {
  position: relative;
  height: 205px;
  margin: 26px 0 27px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(207, 195, 185, 0.74);
  border-radius: 22px;
}

.process-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-cards h3 {
  font-size: 23px;
  letter-spacing: -0.04em;
}

.process-cards li > p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.inline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  color: var(--rose);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 750;
}

.offer-section {
  background: var(--cream);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(600px, 1.3fr);
  align-items: center;
  gap: 80px;
}

.offer-cards {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 16px;
}

.offer-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.free-card {
  background: var(--ivory);
}

.paid-card {
  padding: 40px 34px 34px;
  color: #fff;
  background: var(--plum-deep);
  border-color: var(--plum-deep);
  box-shadow: 0 12px 28px rgba(50, 28, 36, 0.18);
}

.coming-badge {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 7px 12px;
  color: #654713;
  background: var(--yellow-soft);
  border: 1px solid #dfbd76;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 850;
}

.offer-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-card header span {
  color: var(--rose);
  font-size: 13px;
  font-weight: 850;
}

.paid-card header span {
  color: var(--yellow-soft);
}

.offer-card header small {
  color: var(--muted);
  font-size: 11px;
}

.paid-card header small {
  color: rgba(255, 255, 255, 0.6);
}

.offer-card h3 {
  margin-top: 18px;
  font-size: 23px;
  letter-spacing: -0.04em;
}

.price {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.price strong {
  color: #fff;
  font-size: 38px;
  letter-spacing: -0.05em;
}

.price small {
  font-size: 12px;
}

.offer-card ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 28px;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.offer-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 900;
}

.paid-card li {
  color: rgba(255, 255, 255, 0.78);
}

.paid-card .button-primary {
  width: 100%;
  color: var(--plum-deep);
  background: var(--yellow-soft);
  box-shadow: none;
}

.free-card .button {
  width: 100%;
}

.offer-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  text-align: center;
}

.safety-section {
  background: #f3eee9;
}

.safety-heading {
  max-width: 780px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 65px;
}

.principle-grid article {
  min-height: 270px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 23px;
}

.principle-grid article > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--plum);
  background: var(--rose-soft);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 800;
}

.principle-grid article:nth-child(2) > span { color: #4d5c49; background: var(--sage-soft); }
.principle-grid article:nth-child(3) > span { color: #72552a; background: var(--yellow-soft); }
.principle-grid article:nth-child(4) > span { color: #fff; background: var(--plum); }

.principle-grid h3 {
  margin-top: 23px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.principle-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.evidence-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 36px;
  margin-top: 18px;
  padding: 36px 40px;
  background: var(--plum-deep);
  border-radius: 24px;
}

.evidence-card > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.evidence-mark {
  display: grid;
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  place-items: center;
  color: var(--plum-deep);
  background: var(--yellow-soft);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 850;
}

.evidence-card p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.7;
}

.evidence-card strong {
  color: #fff;
  font-size: 15px;
}

.ai-note {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.ai-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--rose-mid);
  font-weight: 800;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  align-items: start;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 126px;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 720;
}

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

.faq-list summary span {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--plum);
  background: #f2ece7;
  border-radius: 50%;
  font-size: 18px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 760px;
  padding: 0 58px 28px 0;
  color: var(--muted);
  line-height: 1.75;
}

.final-cta {
  padding-top: 60px;
  background: var(--cream);
}

.final-cta-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background: var(--plum-deep);
  border-radius: 36px;
  text-align: center;
}

.final-cta-card > *:not(.final-line-art) {
  position: relative;
  z-index: 2;
}

.final-cta-card .eyebrow {
  color: var(--rose-mid);
}

.final-cta-card h2 {
  max-width: 680px;
  font-size: clamp(40px, 4.7vw, 62px);
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.final-cta-card .button {
  margin-top: 34px;
  color: var(--plum-deep);
  background: var(--yellow-soft);
  box-shadow: 0 15px 35px rgba(18, 7, 12, 0.22);
}

.final-cta-card > p:last-child {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.final-line-art {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}

.final-line-art::before,
.final-line-art::after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(237, 210, 207, 0.22);
  border-radius: 50%;
}

.final-line-art::before { top: -220px; left: -100px; }
.final-line-art::after { right: -80px; bottom: -250px; }

.final-line-art span,
.final-line-art i {
  position: absolute;
  bottom: 65px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.final-line-art span { left: 105px; background: rgba(213, 154, 152, 0.18); }
.final-line-art i { right: 105px; background: rgba(168, 177, 157, 0.18); }

.final-line-art b {
  position: absolute;
  right: 170px;
  bottom: 98px;
  left: 170px;
  border-top: 1px dashed rgba(230, 183, 101, 0.52);
}

.site-footer {
  padding: 30px 0 45px;
  background: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 28px 60px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.footer-wordmark {
  font-size: 25px;
}

.footer-grid > div > p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid nav a:hover {
  color: var(--rose);
}

.footer-disclaimer {
  max-width: 720px;
  color: #8d8387;
  font-size: 11px;
}

.copyright {
  color: #9a9094;
  font-size: 11px;
  text-align: right;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 80;
  right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 16px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--rose);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(92, 38, 51, 0.3);
  font-weight: 800;
}

.preview-dialog {
  width: min(calc(100% - 32px), 700px);
  max-height: min(90vh, 840px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--cream);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(39, 18, 27, 0.28);
}

.preview-dialog::backdrop {
  background: rgba(39, 25, 31, 0.58);
}

.dialog-shell {
  position: relative;
  min-height: 650px;
  padding: 46px 52px 42px;
}

.dialog-close {
  position: sticky;
  z-index: 4;
  top: 18px;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin: -28px -34px 0 auto;
  padding: 0;
  color: var(--muted);
  background: #f3ede8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.dialog-heading {
  padding-right: 38px;
}

.dialog-heading .eyebrow {
  margin-bottom: 13px;
}

.dialog-heading h2,
.quiz-result h2 {
  font-size: 36px;
  letter-spacing: -0.052em;
  line-height: 1.22;
}

.dialog-heading > p:last-child {
  margin-top: 15px;
  color: var(--muted);
  font-size: 14px;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 33px;
}

.quiz-progress > span {
  flex: 0 0 auto;
  color: var(--plum);
  font-size: 12px;
  font-weight: 850;
}

.quiz-progress > i {
  position: relative;
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: #eee7e1;
  border-radius: 999px;
}

.quiz-progress b {
  display: block;
  width: 16.666%;
  height: 100%;
  background: var(--rose);
  border-radius: inherit;
  transition: width 240ms ease;
}

.quiz-question {
  min-width: 0;
  margin: 38px 0 0;
  padding: 0;
  border: 0;
}

.quiz-question legend {
  width: 100%;
  min-height: 88px;
  padding: 0;
  font-size: 21px;
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.5;
}

.answer-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 20px;
}

.answer-scale label {
  cursor: pointer;
}

.answer-scale input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.answer-scale span {
  display: grid;
  min-height: 74px;
  place-items: center;
  padding: 8px;
  color: var(--muted);
  background: #f7f2ed;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.answer-scale label:hover span {
  border-color: var(--rose-mid);
  transform: translateY(-2px);
}

.answer-scale input:checked + span {
  color: #fff;
  background: var(--plum);
  border-color: var(--plum);
}

.answer-scale input:focus-visible + span {
  outline: 3px solid rgba(166, 71, 89, 0.28);
  outline-offset: 3px;
}

.quiz-error {
  margin-top: 14px;
  color: #b2394d;
  font-size: 12px;
  font-weight: 700;
}

.quiz-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 34px;
}

.quiz-actions .button {
  min-width: 112px;
}

.local-only {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 16px;
  color: #8b8085;
  font-size: 11px;
}

.quiz-result {
  text-align: center;
}

.quiz-result .eyebrow {
  margin-bottom: 10px;
}

.result-symbol {
  position: relative;
  width: 120px;
  height: 72px;
  margin: 0 auto 14px;
}

.result-symbol span,
.result-symbol i {
  position: absolute;
  top: 10px;
  width: 54px;
  height: 54px;
  border: 1px solid;
  border-radius: 50%;
}

.result-symbol span { left: 15px; background: var(--rose-soft); border-color: var(--rose-mid); }
.result-symbol i { right: 15px; background: var(--sage-soft); border-color: var(--sage); }

.result-symbol::after {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  width: 34px;
  border-top: 2px dashed var(--yellow);
  transform: translateX(-50%);
}

.result-summary {
  max-width: 530px;
  margin: 15px auto 0;
  color: var(--muted);
  line-height: 1.75;
}

.tendency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
  text-align: left;
}

.tendency-grid > div {
  padding: 18px;
  background: #f6f0eb;
  border-radius: 16px;
}

.tendency-grid span,
.tendency-grid strong {
  display: block;
}

.tendency-grid span {
  color: var(--muted);
  font-size: 11px;
}

.tendency-grid strong {
  margin-top: 3px;
  color: var(--plum);
  font-size: 14px;
}

.tendency-grid i {
  display: block;
  height: 5px;
  margin-top: 12px;
  overflow: hidden;
  background: #e4dbd4;
  border-radius: 999px;
}

.tendency-grid b {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--rose);
  border-radius: inherit;
}

.tendency-grid > div:last-child b {
  background: #7f8d77;
}

.result-action {
  margin-top: 18px;
  padding: 22px 24px;
  color: #fff;
  background: var(--plum-deep);
  border-radius: 17px;
  text-align: left;
}

.result-action small {
  color: var(--yellow-soft);
  font-size: 11px;
}

.result-action blockquote {
  margin-top: 8px;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.6;
}

.result-safety {
  margin-top: 12px;
  padding: 12px 14px;
  color: #775036;
  background: #fff3e3;
  border: 1px solid #ead4b4;
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.6;
}

.result-caveat {
  margin-top: 15px;
  color: #8b8085;
  font-size: 11px;
  line-height: 1.6;
}

.result-actions {
  display: grid;
  grid-template-columns: 1.15fr 1fr auto;
  gap: 10px;
  margin-top: 24px;
}

.result-actions .button {
  min-width: 0;
  padding-right: 18px;
  padding-left: 18px;
}

.share-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.share-status {
  min-height: 22px;
  margin-top: 10px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
}

.result-card-preview {
  text-align: center;
}

.card-preview-heading .eyebrow {
  margin-bottom: 10px;
}

.card-preview-heading h2 {
  font-size: 34px;
  letter-spacing: -0.05em;
  line-height: 1.25;
}

.card-preview-heading > p:last-child {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.generated-card-frame {
  display: grid;
  max-width: 390px;
  margin: 24px auto 0;
  padding: 10px;
  place-items: center;
  background: #ece6df;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.generated-result-card {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(45, 31, 35, 0.14);
}

.card-preview-safety {
  max-width: 560px;
  margin: 14px auto 0;
  padding: 11px 13px;
  color: #775036;
  background: #fff3e3;
  border: 1px solid #ead4b4;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.55;
}

.card-preview-actions {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  margin-top: 20px;
}

.card-preview-actions .button {
  min-width: 0;
  padding-right: 18px;
  padding-left: 18px;
}

.legal-body {
  background: var(--cream);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.legal-header > div,
.legal-footer > div {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-header > div > a:last-child {
  color: var(--plum);
  font-size: 13px;
  font-weight: 750;
}

.legal-main {
  padding: 110px 0 130px;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 90px;
}

.legal-title {
  position: sticky;
  top: 50px;
}

.legal-title h1 {
  font-size: clamp(40px, 4.4vw, 58px);
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.legal-title > p:last-child {
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px;
}

.legal-content {
  border-top: 1px solid var(--line-strong);
}

.legal-content section {
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: 21px;
  letter-spacing: -0.035em;
}

.legal-content p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.82;
}

.legal-footer {
  color: var(--muted);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.legal-footer nav {
  display: flex;
  gap: 22px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .process-strip-inner {
    gap: 20px;
  }

  .loop-grid,
  .offer-grid {
    gap: 50px;
  }

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

  .principle-grid article {
    min-height: 230px;
  }
}

@media (max-width: 900px) {
  .section-pad {
    padding: 100px 0;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: 136px;
  }

  .hero-grid,
  .loop-grid,
  .offer-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-preview {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .process-strip-inner {
    grid-template-columns: 1fr auto 1fr auto 1.1fr;
  }

  .loop-grid {
    gap: 45px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .process-cards li {
    min-height: auto;
  }

  .faq-heading {
    position: static;
  }

  .offer-grid {
    gap: 55px;
  }

  .offer-cards {
    max-width: 700px;
  }

  .evidence-card {
    grid-template-columns: 1fr;
  }

  .ai-note {
    padding: 24px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .faq-grid {
    gap: 50px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .legal-title {
    position: static;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section-pad {
    padding: 78px 0;
  }

  .header-inner {
    height: 68px;
    gap: 12px;
  }

  .wordmark {
    font-size: 25px;
  }

  .header-actions .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .menu-toggle {
    width: 42px;
    height: 40px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 55px;
  }

  .hero-status {
    margin-bottom: 22px;
    font-size: 11px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.6vw, 50px);
    line-height: 1.16;
  }

  .hero h1 br {
    display: none;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
    gap: 0;
    margin-top: 20px;
  }

  .hero-notes li,
  .hero-notes li:first-child {
    padding: 10px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-preview {
    min-height: 590px;
  }

  .result-card-main {
    top: 0;
    width: 100%;
    min-height: 565px;
    padding: 25px 23px 18px;
    border-radius: 14px;
  }

  .type-heading {
    margin-top: 21px;
    padding-bottom: 17px;
  }

  .type-heading p {
    gap: 12px;
    font-size: 28px;
  }

  .card-description {
    margin-top: 16px;
    font-size: 14px;
  }

  .chip-row {
    gap: 6px;
  }

  .chip {
    padding: 7px 9px;
    font-size: 10px;
  }

  .sentence-card {
    margin-top: 16px;
    padding: 14px;
  }

  .sentence-card p {
    font-size: 12px;
  }

  .promise-preview {
    grid-template-columns: 74px 1fr;
    gap: 7px 10px;
    font-size: 11px;
  }

  .process-strip-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 14px;
  }

  .process-strip-inner > div {
    min-height: 65px;
  }

  .hand-arrow {
    display: none;
  }

  .step-icon {
    width: 42px;
    height: 42px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.18;
  }

  .section-heading h2 br {
    display: none;
  }

  .section-heading > p:last-child {
    margin-top: 18px;
    font-size: 16px;
  }

  .centered-heading {
    margin-bottom: 42px;
    text-align: left;
  }

  .loop-diagram {
    min-height: 510px;
  }

  .loop-card {
    width: 82%;
    padding: 22px;
  }

  .loop-a {
    left: 0;
  }

  .loop-b {
    right: 0;
  }

  .loop-center {
    width: 106px;
    height: 106px;
  }

  .arrow-top {
    top: 145px;
    right: 12px;
  }

  .arrow-bottom {
    bottom: 145px;
    left: 12px;
  }

  .tab-list {
    width: 100%;
  }

  .tab-list button {
    min-width: 0;
    flex: 1;
    padding: 0 10px;
    font-size: 13px;
  }

  .tab-panel {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .demo-profiles {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .misread-line {
    min-height: 58px;
    place-content: center;
  }

  .misread-line::before,
  .misread-line::after {
    top: 6px;
    left: 50%;
    width: 1px;
    height: 13px;
    border-top: 0;
    border-left: 1px solid var(--rose-mid);
  }

  .misread-line::after {
    top: auto;
    right: auto;
    bottom: 6px;
  }

  .profile-card {
    min-height: 0;
    padding: 20px;
  }

  .action-output {
    padding: 22px;
  }

  .action-output blockquote {
    font-size: 18px;
  }

  .comfort-grid,
  .repair-list {
    grid-template-columns: 1fr;
  }

  .comfort-grid article {
    min-height: 0;
    padding: 22px 22px 22px 86px;
  }

  .mini-icon {
    top: 22px;
    left: 22px;
  }

  .repair-list {
    gap: 9px;
  }

  .repair-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
  }

  .repair-step > span {
    flex: 0 0 auto;
    margin: 0;
  }

  .process-cards {
    margin-top: 45px;
  }

  .process-cards li {
    padding: 22px;
  }

  .offer-grid,
  .faq-grid {
    gap: 45px;
  }

  .offer-cards {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .offer-card {
    padding: 28px 24px;
  }

  .paid-card {
    padding-top: 36px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .principle-grid article {
    min-height: 0;
  }

  .evidence-card {
    padding: 28px 24px;
  }

  .evidence-card > div {
    align-items: flex-start;
  }

  .evidence-mark {
    width: 48px;
    height: 48px;
    font-size: 11px;
  }

  .faq-list summary {
    min-height: 76px;
    font-size: 16px;
  }

  .faq-list details > p {
    padding-right: 0;
  }

  .final-cta {
    padding-top: 30px;
  }

  .final-cta-card {
    width: calc(100% - 24px);
    min-height: 500px;
    padding: 42px 24px;
    border-radius: 28px;
  }

  .final-cta-card h2 {
    font-size: 40px;
  }

  .final-cta-card h2 br {
    display: none;
  }

  .final-cta-card .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .copyright {
    text-align: left;
  }

  .mobile-sticky-cta.is-visible {
    display: flex !important;
  }

  .dialog-shell {
    min-height: 610px;
    padding: 42px 22px 30px;
  }

  .dialog-close {
    margin: -24px -4px 0 auto;
  }

  .dialog-heading h2,
  .quiz-result h2 {
    font-size: 30px;
  }

  .card-preview-heading {
    padding-right: 44px;
    padding-left: 16px;
  }

  .card-preview-heading h2 {
    font-size: 28px;
  }

  .quiz-question legend {
    min-height: 110px;
    font-size: 19px;
  }

  .answer-scale {
    gap: 5px;
  }

  .answer-scale span {
    min-height: 70px;
    padding: 5px 2px;
    font-size: 12px;
  }

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

  .result-actions {
    grid-template-columns: 1fr;
  }

  .generated-card-frame {
    width: 100%;
    padding: 7px;
  }

  .card-preview-actions {
    grid-template-columns: 1fr;
  }

  .legal-main {
    padding: 76px 0 92px;
  }

  .legal-title h1 {
    font-size: 40px;
  }

  .legal-title h1 br {
    display: none;
  }

  .legal-header > div,
  .legal-footer > div {
    min-height: 68px;
  }
}

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

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

  .button:hover,
  .answer-scale label:hover span {
    transform: none;
  }
}
