
:root {
  --ink: #2b2521;
  --muted: #6e625b;
  --paper: #fffaf2;
  --warm: #efe3d3;
  --line: #dccfc0;
  --accent: #6f4b35;
  --accent-dark: #4d3529;
  --green: #1f7a4d;
  --green-dark: #0f4a2e;
  --radius: 22px;
  --shadow: 0 18px 55px rgba(43, 37, 33, 0.13);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 12%, rgba(255,255,255,.88), transparent 22%),
    linear-gradient(135deg, #efe3d3 0%, #fff8ef 52%, #e8ded1 100%);
  min-height: 100vh;
}
.site-shell {
  width: min(1060px, calc(100% - 36px));
  margin: 0 auto;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .02em;
}
.brand {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 19px;
}
a { color: inherit; }
.card {
  background: rgba(255, 250, 242, .86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 207, 192, .85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
}
.hero { padding: 50px 0 70px; }
.kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--accent);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 18px;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
  font-weight: 500;
}
h1 {
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing: -0.052em;
  max-width: 850px;
}
h2 {
  font-size: clamp(32px, 4.3vw, 52px);
  letter-spacing: -0.038em;
}
h3 { font-size: 27px; }
.deck {
  margin-top: 24px;
  font-size: clamp(21px, 2.6vw, 31px);
  line-height: 1.28;
  color: var(--ink);
  max-width: 800px;
}
.body-copy {
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
  max-width: 780px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  background: #1f7a4d;
  border: 1px solid #1a6842;
  color: #fff;
  font-size: 17px;
  font-weight: 850;
  padding: 15px 26px;
  min-height: 54px;
  box-shadow:
    0 3px 0 #0f4a2e,
    0 12px 22px rgba(31, 122, 77, 0.22);
  letter-spacing: 0.01em;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.button:after {
  content: " →";
  margin-left: 3px;
}
.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  box-shadow: none;
  font-size: 16px;
  font-weight: 800;
}
.button.secondary:after {
  content: "";
}
.button:hover {
  background: #17643e;
  transform: translateY(-1px);
  box-shadow:
    0 4px 0 #0f4a2e,
    0 15px 26px rgba(31, 122, 77, 0.25);
}
.button:active {
  transform: translateY(2px);
  box-shadow:
    0 1px 0 #0f4a2e,
    0 8px 18px rgba(31, 122, 77, 0.18);
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.privacy {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(78, 109, 93, .22);
  background: rgba(255,255,255,.45);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 760px;
  font-size: 15px;
}
.privacy strong { color: var(--green); }
.quiz-wrap { max-width: 850px; margin: 0 auto; padding: 42px 0 70px; }
.progress { display: flex; gap: 8px; margin: 28px 0; }
.progress span {
  height: 7px; flex: 1; border-radius: 999px; background: #e0d3c5;
}
.progress span.active { background: var(--accent); }
.question { display: none; }
.question.active { display: block; }
.options { display: grid; gap: 12px; margin-top: 24px; }
.option {
  display: flex; align-items: flex-start; gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.62);
  border-radius: 15px;
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color .15s, transform .15s, background .15s;
  font-weight: 650;
}
.option:hover { border-color: var(--accent); transform: translateY(-1px); }
.option input { margin-top: 3px; }
.help-text { margin-top: 16px; color: var(--muted); font-size: 15px; }
.selection-count { margin-top: 18px; color: var(--accent-dark); font-weight: 800; font-size: 15px; }
.quiz-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 32px; }
.result-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px;
}
.result-box {
  padding: 24px;
  border-radius: 18px;
  background: rgba(245,239,230,.72);
  border: 1px solid rgba(220,207,192,.9);
}
.result-box.wide { grid-column: 1 / -1; }
.result-box p, .result-box li {
  line-height: 1.65; color: var(--muted); font-size: 17px;
}
.result-box ul { margin: 12px 0 0 18px; padding: 0; }
.micro {
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); font-weight: 800; margin-bottom: 10px;
}
.safety-note {
  max-width: 760px;
  margin: 28px auto 50px;
  padding: 18px 22px;
  text-align: center;
  border: 1px solid rgba(220, 207, 192, 0.95);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.72);
  box-shadow: 0 10px 26px rgba(43, 37, 33, 0.06);
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
.safety-note strong { color: var(--accent-dark); }
@media (max-width: 850px) {
  .card { padding: 30px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-box.wide { grid-column: auto; }
  h1 { font-size: 48px; }
}


/* v3 Presence Profile-style green 3D buttons */
.button {
  background: linear-gradient(180deg, #2a9b61 0%, #1f7a4d 70%, #17643e 100%) !important;
  border: 1px solid #17643e !important;
  border-bottom: 5px solid #0f4a2e !important;
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 900 !important;
  padding: 18px 38px 16px !important;
  min-width: 190px !important;
  min-height: 64px !important;
  box-shadow:
    0 5px 0 #0f4a2e,
    0 16px 30px rgba(31, 122, 77, 0.28) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  transform: translateY(0);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.button:hover {
  filter: brightness(1.03) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 7px 0 #0f4a2e,
    0 20px 34px rgba(31, 122, 77, 0.32) !important;
}
.button:active {
  transform: translateY(4px) !important;
  box-shadow:
    0 1px 0 #0f4a2e,
    0 9px 20px rgba(31, 122, 77, 0.22) !important;
  border-bottom-width: 2px !important;
}
.button:after {
  content: "";
}
.button.secondary {
  background: transparent !important;
  color: var(--accent-dark) !important;
  border: 1px solid var(--accent) !important;
  border-bottom: 3px solid var(--accent) !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  min-width: auto !important;
  min-height: 50px !important;
  padding: 14px 22px !important;
}


/* v4: livelier Presence Profile-style button motion */
.button:not(.secondary) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  animation: ctaPulse 2.8s ease-in-out infinite;
}
.button:not(.secondary)::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -70%;
  width: 42%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
  transform: skewX(-20deg);
  animation: ctaShine 3.7s ease-in-out infinite;
  z-index: -1;
}
@keyframes ctaPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow:
      0 5px 0 #0f4a2e,
      0 16px 30px rgba(31, 122, 77, 0.28);
  }
  50% {
    transform: translateY(-1px);
    box-shadow:
      0 6px 0 #0f4a2e,
      0 20px 36px rgba(31, 122, 77, 0.34);
  }
}
@keyframes ctaShine {
  0% { left: -70%; opacity: 0; }
  18% { opacity: .9; }
  42% { left: 128%; opacity: 0; }
  100% { left: 128%; opacity: 0; }
}
@media (hover: hover) {
  .button:not(.secondary):hover {
    transform: translateY(-3px) scale(1.015) !important;
    animation: none;
    box-shadow:
      0 8px 0 #0f4a2e,
      0 24px 42px rgba(31, 122, 77, 0.36) !important;
  }
}
.button:not(.secondary):active {
  transform: translateY(4px) scale(.99) !important;
  animation: none;
  box-shadow:
    0 1px 0 #0f4a2e,
    0 9px 18px rgba(31, 122, 77, 0.20) !important;
}
