:root {
  --bg: #f7f3ee;
  --surface: #ffffff;
  --purple: #6f35b5;
  --purple-dark: #4b2380;
  --gold: #c69b45;
  --teal: #168b94;
  --green: #4d8b5a;
  --text: #172033;
  --muted: #5f6470;
  --line: #e7ddd0;
  --shadow: 0 24px 70px rgba(40, 24, 10, 0.12);
  --soft-shadow: 0 14px 36px rgba(40, 24, 10, 0.08);
  --radius: 8px;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 44px;
  background: rgba(247, 243, 238, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  mix-blend-mode: multiply;
}

.brand strong,
.brand small {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.9;
}

.brand strong {
  color: var(--purple-dark);
  font-size: 29px;
  font-weight: 800;
}

.brand small {
  color: var(--teal);
  font-size: 20px;
  font-weight: 700;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #1b1530;
  font-size: 15px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  border-radius: 99px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.nav-cta,
.btn {
  min-height: 56px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 10px 22px rgba(111, 53, 181, 0.2);
  font-weight: 800;
}

.nav-cta {
  min-height: 52px;
}

.btn.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(30, 25, 20, 0.09);
}

.btn.light {
  color: var(--purple-dark);
  background: #fff;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.btn.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: none;
}

.full {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 64px;
  max-width: 1480px;
  margin: 0 auto;
  padding: 76px 64px 38px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  color: var(--purple-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border: 1px solid rgba(111, 53, 181, 0.13);
  background: rgba(111, 53, 181, 0.08);
  border-radius: 999px;
  font-size: 15px;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 760px;
  margin-top: 26px;
  font-size: clamp(48px, 4.55vw, 72px);
  line-height: 1;
  font-weight: 800;
}

h1 span {
  color: var(--purple);
}

.hero-subhead {
  max-width: 680px;
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 4px solid var(--purple);
  color: #33354a;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 760px;
  margin-top: 28px;
}

.social-proof p {
  margin: 0;
  color: #33354a;
  line-height: 1.5;
  font-weight: 600;
}

.avatars {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.avatars span,
.avatars b {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 3px solid var(--bg);
  border-radius: 50%;
}

.avatars span:nth-child(1) {
  margin-left: 0;
  background: linear-gradient(135deg, #6247aa, #f4c7a1);
}

.avatars span:nth-child(2) {
  background: linear-gradient(135deg, #168b94, #f2d6ba);
}

.avatars span:nth-child(3) {
  background: linear-gradient(135deg, #c69b45, #fff1cc);
}

.avatars span:nth-child(4) {
  background: linear-gradient(135deg, #4d8b5a, #d9f0df);
}

.avatars b {
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--purple);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  height: auto;
  align-self: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  background: #fff;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 238, 0.04), rgba(247, 243, 238, 0.18)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.14), transparent 35%);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.assist-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: auto;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(20, 12, 7, 0.12);
}

.assist-card h2 {
  color: var(--purple);
  font-size: 23px;
}

.assist-card ul {
  display: grid;
  gap: 14px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.assist-card li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 14px;
  color: #33354a;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}

.icon,
.trust-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.icon {
  width: 22px;
  height: 22px;
}

.assist-card .icon,
.habit-card .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(111, 53, 181, 0.12);
}

.icon::before,
.trust-icon::before {
  font-weight: 900;
  line-height: 1;
}

.shield::before {
  content: "◇";
}

.whatsapp::before {
  content: "◉";
  color: var(--green);
}

.family::before {
  content: "∞";
}

.document::before {
  content: "□";
}

.heart::before {
  content: "♡";
}

.briefcase::before {
  content: "▣";
}

.clock::before {
  content: "◷";
}

.lock::before {
  content: "▢";
}

.trust-bar {
  position: relative;
  z-index: 4;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1320px;
  margin: 24px auto 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.trust-bar div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.trust-bar div:last-child {
  border-right: 0;
}

.trust-icon {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  color: var(--purple);
  border-radius: 50%;
  background: rgba(111, 53, 181, 0.1);
}

.trust-bar strong {
  color: var(--purple-dark);
  font-size: 22px;
  line-height: 1.12;
}

.trust-bar p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.continuity-band {
  padding: 52px 22px;
  background: #fff;
}

.continuity-band div {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.continuity-band h2 {
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: 1.05;
}

.continuity-band p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 19px;
}

.section {
  max-width: 1320px;
  margin: 0 auto;
  padding: 76px 44px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
}

.section-heading h2,
.ask-copy h2,
.business-copy h2,
.vault-section h2,
.community-section h2,
.final-cta h2,
.emotional-cta h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.08;
}

.section-heading p:not(.kicker),
.ask-copy p,
.business-copy p,
.vault-section p,
.community-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.score-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 42px;
  align-items: center;
  padding: 36px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.score-ring {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.score-ring svg {
  width: 100%;
  transform: rotate(-90deg);
}

.score-ring circle {
  fill: none;
  stroke: #efe8df;
  stroke-width: 13;
}

.score-ring .progress {
  stroke: var(--purple);
  stroke-linecap: round;
  stroke-dasharray: 377;
  stroke-dashoffset: 98;
}

.score-ring div {
  position: absolute;
  text-align: center;
}

.score-ring strong {
  display: block;
  color: var(--purple-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 86px;
  line-height: 0.85;
}

.score-ring span {
  color: var(--muted);
  font-weight: 800;
}

.score-content h3 {
  max-width: 740px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.score-bars {
  display: grid;
  gap: 20px;
  margin: 28px 0 34px;
}

.score-bars article div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  font-weight: 800;
}

.score-bars b {
  color: var(--purple-dark);
}

.score-bars i {
  display: block;
  height: 10px;
  border-radius: 99px;
  background: #eee7dd;
  overflow: hidden;
}

.score-bars i::before {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--teal));
}

.panel {
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.three-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.habit-card,
.business-cards article,
.story-grid article,
.feed-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.info-card,
.habit-card,
.business-cards article {
  min-height: 100%;
  padding: 28px;
}

.info-card,
.feed-card,
.story-grid article {
  display: flex;
  flex-direction: column;
}

.category,
.feed-card p {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.info-card h3,
.feed-card h3 {
  font-size: 20px;
  line-height: 1.25;
}

.info-card p:not(.category),
.habit-card p,
.business-cards p,
.story-grid small {
  color: var(--muted);
  line-height: 1.55;
}

.info-card button,
.feed-card button,
.story-grid button {
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--purple);
  background: transparent;
  font-weight: 900;
}

.feed-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
}

.feed-card {
  min-height: 270px;
  justify-content: space-between;
  padding: 26px;
  background: linear-gradient(180deg, #fff, #faf6f0);
}

.habit-card .icon {
  color: var(--purple);
  margin-bottom: 22px;
}

.habit-card h3,
.business-cards h3 {
  font-size: 22px;
  line-height: 1.2;
}

.habit-card {
  min-height: 230px;
}

.habit-card p {
  font-size: 16px;
}

.habits-section {
  max-width: 1180px;
}

.habits-section .section-heading {
  max-width: 780px;
}

.habits-section .section-heading h2 {
  font-size: clamp(34px, 3.1vw, 48px);
}

.habits-section .section-heading .btn {
  margin-top: 8px;
}

.habits-section .three-grid {
  margin-top: 26px;
}

.emotional-cta,
.final-cta {
  color: #fff;
  background:
    radial-gradient(circle at 20% 10%, rgba(198, 155, 69, 0.3), transparent 32%),
    linear-gradient(135deg, var(--purple-dark), #22172e 70%);
}

.emotional-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 66px max(44px, calc((100vw - 1320px) / 2 + 44px));
}

.emotional-cta h2 {
  max-width: 850px;
}

.emotional-cta p,
.final-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.6;
}

.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.ask-section,
.business-section,
.vault-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}

.quick-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.quick-list button {
  min-height: 52px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  text-align: left;
  font-weight: 800;
}

.chat-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.chat-message,
.chat-response {
  padding: 18px;
  border-radius: 8px;
  background: #faf5ee;
}

.chat-message strong {
  display: block;
  margin-bottom: 8px;
  color: var(--purple-dark);
}

.chat-message p,
.chat-response p {
  margin: 0;
  color: #33354a;
  line-height: 1.55;
}

.chat-response {
  margin-top: 14px;
  background: rgba(22, 139, 148, 0.09);
}

.ask-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin: 18px 0;
}

.ask-form input,
.lead-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 15px;
  color: var(--text);
  background: #fff;
}

.ask-form button {
  min-height: 54px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  color: #fff;
  background: var(--purple);
  font-weight: 900;
}

.business-section {
  max-width: none;
  padding-left: max(44px, calc((100vw - 1320px) / 2 + 44px));
  padding-right: max(44px, calc((100vw - 1320px) / 2 + 44px));
  background: #fff;
}

.business-cards {
  display: grid;
  gap: 18px;
}

.story-grid article {
  min-height: 285px;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  border: 0;
  background:
    linear-gradient(180deg, rgba(23, 32, 51, 0.08), rgba(23, 32, 51, 0.88)),
    linear-gradient(135deg, #d5b489, #6f35b5);
}

.story-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(23, 32, 51, 0.08), rgba(23, 32, 51, 0.88)),
    linear-gradient(135deg, #168b94, #f0d9bc);
}

.story-grid article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(23, 32, 51, 0.08), rgba(23, 32, 51, 0.88)),
    linear-gradient(135deg, #4d8b5a, #4b2380);
}

.story-grid p {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.15;
}

.story-grid small {
  color: rgba(255, 255, 255, 0.74);
}

.story-grid button {
  color: #fff;
  align-self: flex-start;
}

.vault-section {
  grid-template-columns: 1fr 0.9fr;
}

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

.feature-list li {
  display: flex;
  gap: 10px;
  color: #33354a;
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.vault-mock {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.vault-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.vault-top strong {
  color: var(--purple-dark);
  font-size: 26px;
}

.vault-top span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(77, 139, 90, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.vault-checks {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.vault-checks p {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border-radius: 8px;
  background: #faf5ee;
  color: var(--text);
  font-weight: 800;
}

.vault-checks span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
}

.vault-checks b {
  color: var(--purple);
}

.vault-roadmap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.vault-roadmap i {
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(111, 53, 181, 0.16), rgba(22, 139, 148, 0.13));
}

.community-section {
  display: grid;
  justify-items: center;
  gap: 28px;
  padding: 86px 22px;
  text-align: center;
  background: #fff;
}

.community-section h2 {
  max-width: 980px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.tags span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #faf5ee;
  font-weight: 900;
}

.final-cta {
  padding: 90px max(22px, calc((100vw - 1100px) / 2));
}

.final-cta h2 {
  max-width: 980px;
}

.final-cta h3 {
  margin-top: 22px;
  color: #f6d69a;
  font-size: clamp(24px, 2vw, 34px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.3fr;
  gap: 48px;
  padding: 56px 44px 92px;
  color: #fff;
  background: #17141b;
}

.footer-brand img {
  mix-blend-mode: normal;
}

.site-footer p,
.legal p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.site-footer nav,
.legal {
  display: grid;
  gap: 12px;
  align-content: start;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.floating-chat {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 13px;
  max-width: 340px;
  min-height: 72px;
  padding: 10px 18px 10px 10px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 16px 36px rgba(75, 35, 128, 0.3);
  text-align: left;
  font-weight: 900;
}

.floating-chat img {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  object-fit: cover;
}

.floating-chat small {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 600;
}

.mobile-whatsapp {
  display: none;
}

.modal {
  width: min(720px, calc(100vw - 28px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

.modal::backdrop {
  background: rgba(23, 20, 27, 0.48);
  backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  padding: 32px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.modal-card.small {
  max-width: 540px;
  margin: 0 auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  background: #f2ece4;
  font-size: 26px;
}

.modal-progress {
  height: 8px;
  margin: 22px 0 0;
  border-radius: 99px;
  background: #efe8df;
  overflow: hidden;
}

.modal-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  transition: width 220ms ease;
}

.quiz-question {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.quiz-question h3 {
  font-size: 28px;
  line-height: 1.18;
}

.option-grid {
  display: grid;
  gap: 12px;
}

.option-grid button {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  text-align: left;
  font-weight: 800;
}

.option-grid button:hover {
  border-color: var(--purple);
  background: rgba(111, 53, 181, 0.06);
}

.lead-form {
  display: grid;
  gap: 15px;
  margin-top: 22px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted) !important;
  line-height: 1.45;
}

.check-row input {
  min-height: auto;
  margin-top: 4px;
}

.result-card {
  display: grid;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #faf5ee;
}

.result-number {
  color: var(--purple-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 70px;
  line-height: 0.9;
}

.subscore-list {
  display: grid;
  gap: 12px;
}

.subscore-list p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  font-weight: 800;
}

.modal-copy {
  color: var(--muted);
  line-height: 1.6;
}

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

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    border-radius: 99px;
    background: var(--purple-dark);
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 10px 0;
  }

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

  .nav-cta {
    justify-self: end;
  }

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

  .trust-bar {
    grid-column: 1;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 24px;
  }

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

@media (max-width: 860px) {
  .site-header {
    height: 72px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

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

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

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 48px 22px 28px;
    gap: 32px;
  }

  .eyebrow {
    border-radius: 8px;
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-subhead {
    font-size: 17px;
  }

  .hero-actions,
  .cta-pair {
    display: grid;
  }

  .btn {
    width: 100%;
    min-height: 56px;
  }

  .social-proof {
    align-items: flex-start;
  }

  .hero-visual {
    aspect-ratio: 1;
    height: auto;
  }

  .hero-visual img {
    min-height: 0;
    object-position: center center;
    transform: none;
  }

  .assist-card {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    width: auto;
  }

  .trust-bar {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-bar div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 56px 22px;
  }

  .section-heading h2,
  .ask-copy h2,
  .business-copy h2,
  .vault-section h2,
  .community-section h2,
  .final-cta h2,
  .emotional-cta h2 {
    font-size: 32px;
  }

  .score-shell,
  .ask-section,
  .business-section,
  .vault-section,
  .emotional-cta,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .score-shell,
  .panel {
    padding: 22px;
  }

  .score-ring {
    max-width: 290px;
    margin: 0 auto;
  }

  .three-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .feed-row {
    grid-template-columns: 1fr;
    margin-right: -22px;
    padding-right: 22px;
  }

  .emotional-cta,
  .business-section,
  .final-cta {
    padding: 56px 22px;
  }

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

  .site-footer {
    padding: 48px 22px 96px;
  }

  .floating-chat {
    display: none;
  }

  .mobile-whatsapp {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 90;
    display: block;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    box-shadow: 0 16px 36px rgba(75, 35, 128, 0.32);
    font-weight: 900;
  }

  .modal-card {
    padding: 24px 18px;
  }
}
