:root {
  --paper: #f2eee4;
  --paper-deep: #e7e0d2;
  --ink: #1d211f;
  --muted: #686c66;
  --line: rgba(29, 33, 31, 0.18);
  --line-strong: rgba(29, 33, 31, 0.42);
  --red: #a43c2e;
  --red-dark: #74281f;
  --green: #263f35;
  --white: #fbfaf6;
  --shadow: 0 28px 70px rgba(35, 32, 27, 0.09);
  --serif: "Songti SC", "STSong", "Noto Serif CJK SC", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(29, 33, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 33, 31, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input,
select {
  font: inherit;
}

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

a {
  color: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 3px solid rgba(164, 60, 46, 0.45);
  outline-offset: 3px;
}

.site-header,
main,
.site-footer {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
}

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

.brand__seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--red);
  color: var(--red);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
  transform: rotate(-3deg);
}

.brand > span:last-child {
  display: grid;
  gap: 3px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(48px, 8vw, 118px);
  align-items: center;
  min-height: 720px;
  padding: 76px 0 88px;
}

.eyebrow,
.section-heading > p,
.result__header p,
.dimensions header p,
.community-bridge > div:first-child > p,
.boundaries > header > p {
  margin: 0;
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.23em;
}

.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
}

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--red);
}

.hero h1,
.section-heading h2,
.result h2,
.boundaries h2,
.community-bridge h2 {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(52px, 6.3vw, 88px);
}

.hero h1 em,
.section-heading h2 em,
.result h2 em,
.boundaries h2 em,
.community-bridge h2 em {
  color: var(--red);
  font-style: normal;
}

.hero__lead {
  max-width: 620px;
  margin: 34px 0 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.85;
}

.hero__note {
  max-width: 590px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--primary {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.button--primary:hover {
  background: var(--red-dark);
}

.button--quiet {
  border-color: var(--line-strong);
  color: var(--muted);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 11px;
  list-style: none;
}

.hero__trust li {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero__trust li::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero__visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 45%, rgba(164, 60, 46, 0.12), transparent 34%),
    rgba(251, 250, 246, 0.48);
  box-shadow: var(--shadow);
}

.hero__glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(164, 60, 46, 0.07);
  font-family: var(--serif);
  font-size: 330px;
  line-height: 1;
  transform: translate(-50%, -55%);
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(164, 60, 46, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -54%) rotate(-14deg);
}

.orbit--one {
  width: 370px;
  height: 210px;
}

.orbit--two {
  width: 250px;
  height: 390px;
  transform: translate(-50%, -54%) rotate(24deg);
}

.person {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  background: var(--paper);
}

.person small {
  font-size: 8px;
  letter-spacing: 0.17em;
}

.person strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}

.person span {
  color: var(--muted);
  font-size: 9px;
}

.person--you {
  top: 29%;
  left: 12%;
}

.person--robby {
  top: 29%;
  right: 12%;
  border-color: var(--red);
  color: var(--red);
}

.connection {
  position: absolute;
  z-index: 3;
  top: 39%;
  right: 28%;
  left: 28%;
  display: flex;
  align-items: center;
}

.connection i {
  height: 1px;
  flex: 1;
  background: var(--red);
}

.connection b {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}

.hero__visual > p {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.truth-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 112px;
  padding: 22px 26px;
  border: 1px solid rgba(164, 60, 46, 0.3);
  background: rgba(164, 60, 46, 0.045);
}

.truth-card__mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
}

.truth-card strong {
  font-family: var(--serif);
  font-size: 16px;
}

.truth-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.truth-card > a {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.lab,
.method,
.boundaries {
  padding: 0 0 120px;
}

.section-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.section-heading > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2 {
  max-width: 780px;
  font-size: clamp(42px, 5vw, 66px);
}

.section-heading > div > span {
  max-width: 280px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.resonance-form {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.form-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  margin: 0;
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.form-block legend {
  float: left;
  display: flex;
  width: 300px;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.form-block legend b,
.optional-signals summary b {
  color: var(--red);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.form-block legend span,
.optional-signals summary span {
  display: grid;
  gap: 7px;
}

.form-block legend strong,
.optional-signals summary strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.form-block legend small,
.optional-signals summary small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.choice-grid {
  display: grid;
  gap: 10px;
}

.choice-grid--goal {
  grid-template-columns: repeat(5, 1fr);
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-grid label > span {
  display: grid;
  min-height: 88px;
  padding: 16px;
  place-content: center;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.46);
  text-align: center;
  transition: border 160ms ease, background 160ms ease, transform 160ms ease;
}

.choice-grid label:hover > span {
  transform: translateY(-2px);
}

.choice-grid input:checked + span {
  border-color: var(--red);
  color: var(--white);
  background: var(--red);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid rgba(164, 60, 46, 0.45);
  outline-offset: 3px;
}

.choice-grid--goal b {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
}

.choice-grid--goal small {
  margin-top: 7px;
  color: inherit;
  font-size: 9px;
  opacity: 0.72;
}

.choice-grid--tags {
  grid-template-columns: repeat(4, 1fr);
}

.choice-grid--tags label > span {
  min-height: 54px;
  padding: 12px;
  font-size: 12px;
}

.choice-grid label[data-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.35;
}

.optional-signals {
  border-bottom: 1px solid var(--line);
}

.optional-signals summary {
  display: grid;
  grid-template-columns: 300px auto;
  gap: 44px;
  align-items: center;
  padding: 34px 0;
  cursor: pointer;
  list-style: none;
}

.optional-signals summary::-webkit-details-marker {
  display: none;
}

.optional-signals summary > span {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
}

.optional-signals summary > span small {
  grid-column: 2;
}

.optional-signals summary i {
  position: relative;
  justify-self: end;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.optional-signals summary i::before,
.optional-signals summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
}

.optional-signals summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 160ms ease;
}

.optional-signals[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.optional-signals__intro {
  margin: -4px 0 24px 344px;
  padding: 14px 16px;
  border-left: 2px solid var(--red);
  color: var(--muted);
  background: rgba(164, 60, 46, 0.04);
  font-size: 11px;
  line-height: 1.7;
}

.optional-signals__intro p {
  margin: 0;
}

.select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 36px 344px;
}

.select-grid label {
  display: grid;
  gap: 8px;
}

.select-grid label > span {
  font-size: 11px;
  font-weight: 700;
}

.select-grid label > small {
  color: var(--red);
  font-size: 9px;
}

.select-grid select {
  width: 100%;
  height: 46px;
  padding: 0 38px 0 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.form-submit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 32px;
  align-items: center;
  padding: 34px 0 0 344px;
}

.form-submit p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.form-submit small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 9px;
  text-align: right;
}

.form-error {
  margin: 14px 0 0 344px;
  padding: 12px 14px;
  border-left: 2px solid var(--red);
  color: var(--red-dark);
  background: rgba(164, 60, 46, 0.07);
  font-size: 12px;
}

.result {
  margin-bottom: 120px;
  padding: 46px;
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.result__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.result__header p,
.dimensions header p {
  color: #d7aa89;
}

.result h2 {
  font-size: clamp(38px, 4.7vw, 62px);
}

.result h2 em {
  color: #e5b28d;
}

.result__header button,
.result__header + button {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.result__primary {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 48px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.score-card {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-content: start;
}

.score-card > small:first-child {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.score-card > strong {
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 86px;
  font-weight: 400;
  line-height: 1;
}

.score-card > span {
  align-self: end;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.score-card > p {
  grid-column: 1 / -1;
  margin: 10px 0 25px;
  color: #e5b28d;
  font-family: var(--serif);
  font-size: 16px;
}

.coverage {
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.coverage i {
  display: block;
  width: 0;
  height: 100%;
  background: #e5b28d;
  transition: width 500ms ease;
}

.score-card > small:last-child {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.result blockquote {
  position: relative;
  margin: 0;
  padding: 20px 20px 10px 56px;
}

.result blockquote > span {
  position: absolute;
  top: -16px;
  left: 0;
  color: rgba(229, 178, 141, 0.4);
  font-family: var(--serif);
  font-size: 95px;
}

.result blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.7vw, 36px);
  line-height: 1.6;
}

.result blockquote footer {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.insight-grid article {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.insight-grid article:first-child {
  padding-left: 0;
}

.insight-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.insight-grid small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.insight-grid strong {
  display: block;
  margin-top: 20px;
  color: #e5b28d;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.insight-grid p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.7;
}

.insight-grid__next button {
  margin-top: 18px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid rgba(229, 178, 141, 0.65);
  color: #e5b28d;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
}

.copy-status {
  min-height: 18px;
}

.dimensions {
  padding-top: 38px;
}

.dimensions header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.dimensions h3 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.dimensions header > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

.dimension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.dimension-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.035);
}

.dimension-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dimension-card__top small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.dimension-card__top b {
  color: #e5b28d;
  font-size: 9px;
  font-weight: 600;
}

.dimension-card strong {
  display: block;
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
}

.dimension-card p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.65;
}

.result__consent {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.7;
}

.formula {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.formula article {
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.formula article:first-child {
  padding-left: 0;
}

.formula article:last-child {
  padding-right: 0;
  border-right: 0;
}

.formula b {
  color: var(--red);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
}

.formula strong {
  display: block;
  margin-top: 24px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.formula p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.profile-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.48);
}

.profile-card__intro {
  display: flex;
  gap: 16px;
  align-items: center;
}

.profile-card__intro > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  font-family: var(--serif);
  font-size: 26px;
}

.profile-card__intro div {
  display: grid;
  gap: 5px;
}

.profile-card__intro small {
  color: var(--red);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.profile-card__intro strong {
  font-family: var(--serif);
  font-size: 17px;
}

.profile-card__intro p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.profile-card__facets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}

.profile-card__facets span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: 10px;
}

.profile-card > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.boundaries > header {
  display: grid;
  grid-template-columns: 190px 1fr;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.boundaries h2 {
  font-size: clamp(38px, 4.7vw, 62px);
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.boundary-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.boundary-grid article:first-child {
  padding-left: 0;
}

.boundary-grid article:last-child {
  padding-right: 0;
  border-right: 0;
}

.boundary-grid b {
  color: var(--red);
  font-size: 10px;
}

.boundary-grid strong {
  display: block;
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.boundary-grid p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.boundary-close {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.boundary-close a {
  float: right;
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.community-bridge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-bottom: 80px;
  padding: 64px;
  color: var(--white);
  background: var(--red);
}

.community-bridge > div:first-child > p {
  color: rgba(255, 255, 255, 0.62);
}

.community-bridge h2 {
  font-size: clamp(42px, 5vw, 66px);
}

.community-bridge h2 em {
  color: #f2d0b8;
}

.community-bridge > div:last-child {
  align-self: end;
}

.community-bridge > div:last-child > p {
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.8;
}

.button--light {
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button--light:hover {
  color: var(--red);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 34px 0 52px;
  border-top: 1px solid var(--line);
}

.brand--footer strong {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.site-footer > div {
  display: flex;
  gap: 22px;
}

.site-footer > div a {
  color: var(--muted);
  font-size: 10px;
  text-decoration: none;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.privacy {
  padding: 80px 0 120px;
}

.privacy__hero {
  max-width: 880px;
  padding-bottom: 70px;
}

.privacy__hero > p,
.privacy__body section > small {
  margin: 0;
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.privacy__hero h1 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 92px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.privacy__hero h1 em {
  color: var(--red);
  font-style: normal;
}

.privacy__hero > span {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.privacy__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.privacy__summary article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.privacy__summary article:first-child {
  padding-left: 0;
}

.privacy__summary article:last-child {
  padding-right: 0;
  border-right: 0;
}

.privacy__summary b {
  color: var(--red);
  font-size: 9px;
}

.privacy__summary strong {
  display: block;
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.privacy__summary p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.8;
}

.privacy__body {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(50px, 10vw, 130px);
  padding-top: 80px;
}

.privacy__body aside {
  align-self: stretch;
}

.privacy__body nav {
  position: sticky;
  top: 24px;
  display: grid;
  border-top: 1px solid var(--ink);
}

.privacy__body nav a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  text-decoration: none;
}

.privacy__body nav a:hover {
  color: var(--red);
}

.privacy__body article > section {
  padding: 0 0 56px;
  scroll-margin-top: 24px;
}

.privacy__body h2 {
  margin: 10px 0 20px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
}

.privacy__body section > p {
  margin: 0 0 14px;
  color: #4e524e;
  font-size: 14px;
  line-height: 2;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero__visual {
    min-height: 500px;
  }

  .choice-grid--goal {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .form-block,
  .section-heading,
  .boundaries > header {
    grid-template-columns: 1fr;
  }

  .form-block legend {
    width: auto;
  }

  .optional-signals summary {
    grid-template-columns: 1fr auto;
  }

  .optional-signals__intro,
  .select-grid,
  .form-submit,
  .form-error {
    margin-left: 0;
  }

  .form-submit {
    padding-left: 0;
  }

  .section-heading > div {
    display: block;
  }

  .section-heading > div > span {
    display: block;
    margin-top: 18px;
  }

  .section-heading > p,
  .boundaries > header > p {
    margin-bottom: 18px;
  }

  .result__primary {
    grid-template-columns: 220px 1fr;
  }

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

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

  .profile-card > p {
    grid-column: 1;
  }

  .community-bridge {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .privacy__body {
    grid-template-columns: 170px 1fr;
    gap: 46px;
  }
}

@media (max-width: 680px) {
  .site-header,
  main,
  .site-footer {
    width: min(100% - 30px, 1240px);
  }

  .site-header {
    min-height: 72px;
  }

  .site-header nav {
    gap: 14px;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .brand__seal {
    width: 36px;
    height: 36px;
    font-size: 21px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 7px;
  }

  .hero {
    gap: 48px;
    padding: 58px 0 64px;
  }

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

  .hero__lead {
    font-size: 18px;
  }

  .hero__visual {
    min-height: 400px;
  }

  .hero__glyph {
    font-size: 240px;
  }

  .orbit--one {
    width: 280px;
    height: 170px;
  }

  .orbit--two {
    width: 190px;
    height: 290px;
  }

  .person {
    width: 86px;
    height: 86px;
  }

  .person strong {
    font-size: 27px;
  }

  .person--you {
    left: 8%;
  }

  .person--robby {
    right: 8%;
  }

  .connection {
    right: 26%;
    left: 26%;
  }

  .truth-card {
    grid-template-columns: auto 1fr;
    margin-bottom: 80px;
    padding: 18px;
  }

  .truth-card > a {
    grid-column: 2;
  }

  .lab,
  .method,
  .boundaries {
    padding-bottom: 88px;
  }

  .section-heading h2,
  .boundaries h2,
  .community-bridge h2 {
    font-size: 40px;
  }

  .resonance-form {
    margin-top: 42px;
  }

  .form-block {
    gap: 24px;
    padding: 28px 0;
  }

  .choice-grid--goal,
  .choice-grid--tags,
  .select-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .choice-grid--goal label:last-child {
    grid-column: 1 / -1;
  }

  .optional-signals summary {
    gap: 16px;
  }

  .form-submit {
    grid-template-columns: 1fr;
  }

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

  .form-submit small {
    grid-column: 1;
    text-align: left;
  }

  .result {
    margin-inline: -15px;
    padding: 32px 20px;
  }

  .result__header,
  .dimensions header {
    display: block;
  }

  .result__header button {
    margin-top: 18px;
  }

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

  .score-card {
    max-width: 240px;
  }

  .result blockquote {
    padding-left: 40px;
  }

  .insight-grid,
  .dimension-grid,
  .formula,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .insight-grid article,
  .insight-grid article:first-child,
  .insight-grid article:last-child,
  .formula article,
  .formula article:first-child,
  .formula article:last-child,
  .boundary-grid article,
  .boundary-grid article:first-child,
  .boundary-grid article:last-child {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .formula article,
  .formula article:first-child,
  .formula article:last-child,
  .boundary-grid article,
  .boundary-grid article:first-child,
  .boundary-grid article:last-child {
    border-color: var(--line);
  }

  .formula article:last-child,
  .boundary-grid article:last-child {
    border-bottom: 0;
  }

  .dimensions header > span {
    display: block;
    margin-top: 10px;
  }

  .profile-card {
    padding: 22px;
  }

  .boundary-close a {
    display: block;
    float: none;
    margin-top: 12px;
  }

  .community-bridge {
    margin-inline: -15px;
    padding: 42px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer > div {
    flex-wrap: wrap;
  }

  .site-footer > p {
    grid-column: 1;
  }

  .privacy {
    padding: 58px 0 88px;
  }

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

  .privacy__summary article,
  .privacy__summary article:first-child,
  .privacy__summary article:last-child {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .privacy__summary article:last-child {
    border-bottom: 0;
  }

  .privacy__body {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 56px;
  }

  .privacy__body nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

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