:root {
  --bg: #07120f;
  --bg-soft: #0b1c17;
  --panel: rgba(14, 34, 28, 0.82);
  --panel-solid: #10261f;
  --line: rgba(232, 255, 242, 0.13);
  --line-strong: rgba(216, 255, 116, 0.42);
  --text: #f4f7ed;
  --muted: #a8b8ae;
  --acid: #d8ff74;
  --acid-strong: #b6f238;
  --coral: #ff8c6b;
  --lavender: #bba7ff;
  --sky: #7ddff3;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(216, 255, 116, 0.08), transparent 28%),
    radial-gradient(circle at 83% 12%, rgba(125, 223, 243, 0.08), transparent 25%),
    linear-gradient(135deg, #06100d 0%, #081711 48%, #06100e 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.ambient { position: fixed; width: 420px; height: 420px; border-radius: 50%; filter: blur(110px); opacity: 0.11; z-index: -2; }
.ambient-one { background: var(--acid); left: -170px; top: 20%; }
.ambient-two { background: var(--lavender); right: -220px; bottom: 8%; }

.site-header, .site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header { min-height: 84px; }
.site-footer { min-height: 64px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.brand { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 750; text-decoration: none; letter-spacing: -0.01em; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; color: #07120f; background: var(--acid); font-weight: 900; box-shadow: 0 0 30px rgba(216,255,116,.18); }
.header-pill { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; background: rgba(255,255,255,.025); }

.app-shell { width: min(1240px, calc(100% - 40px)); min-height: calc(100vh - 148px); margin: 0 auto; display: grid; }
.screen { display: none; width: 100%; animation: screenIn .45s ease both; }
.screen.is-active { display: flex; }
@keyframes screenIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.landing-screen { align-items: center; justify-content: space-between; gap: clamp(40px, 7vw, 96px); padding: 52px 0 84px; }
.landing-copy { max-width: 680px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--acid); font-size: 12px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 6px rgba(216,255,116,.10); }
h1 { margin: 22px 0 24px; font-size: clamp(52px, 7vw, 92px); line-height: .94; letter-spacing: -.068em; max-width: 780px; }
h1 em { color: var(--acid); font-style: normal; }
.hero-copy { max-width: 660px; margin: 0; color: #c1cec5; font-size: clamp(17px, 2vw, 21px); line-height: 1.6; letter-spacing: -.015em; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 36px; flex-wrap: wrap; }
.button { border: 0; border-radius: 14px; padding: 14px 19px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; font-weight: 820; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .38; cursor: not-allowed; transform: none; }
.button-primary { color: #0a160f; background: var(--acid); box-shadow: 0 16px 40px rgba(180, 242, 56, .14); }
.button-primary:hover { background: #e2ff93; box-shadow: 0 20px 48px rgba(180, 242, 56, .19); }
.button-secondary { background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.button-large { padding: 17px 23px; font-size: 15px; }
.button-full { width: 100%; }
.time-note { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; }
.avatar-stack { display: flex; }
.avatar-stack i { margin-left: -7px; width: 29px; height: 29px; display: grid; place-items: center; border-radius: 50%; border: 2px solid var(--bg); background: linear-gradient(135deg, #365249, #162e27); font-size: 10px; font-style: normal; }
.avatar-stack i:first-child { margin-left: 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: #80988d; font-size: 12px; }

.hero-card { position: relative; width: min(100%, 400px); min-height: 535px; padding: 24px; border-radius: var(--radius-xl); background: linear-gradient(155deg, rgba(24,56,46,.96), rgba(8,24,19,.94)); border: 1px solid rgba(216,255,116,.21); box-shadow: var(--shadow); overflow: hidden; }
.hero-card::after { content: ""; position: absolute; inset: auto -20% -35% 10%; height: 280px; background: radial-gradient(circle, rgba(216,255,116,.12), transparent 60%); }
.hero-card-top { display: flex; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.mini-label { color: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.mini-rank { color: #789287; }
.orb-wrap { position: relative; height: 200px; display: grid; place-items: center; margin-top: 10px; }
.orb { width: 112px; height: 112px; border-radius: 50%; background: radial-gradient(circle at 34% 28%, #f0ffc0, var(--acid) 31%, #5d8923 67%, #102612 100%); box-shadow: 0 0 80px rgba(216,255,116,.27), inset -18px -22px 38px rgba(0,0,0,.25); }
.orb-ring { position: absolute; border: 1px solid rgba(216,255,116,.22); border-radius: 50%; transform: rotate(-18deg); }
.ring-one { width: 180px; height: 98px; }
.ring-two { width: 225px; height: 126px; opacity: .48; }
.hero-card h2 { position: relative; margin: 8px 0 10px; font-size: 34px; letter-spacing: -.045em; }
.hero-card p { position: relative; margin: 0; color: #b7c7be; line-height: 1.55; font-size: 14px; }
.trait-grid { position: relative; display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 25px; }
.trait-grid div { padding: 12px 8px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--line); text-align: center; }
.trait-grid strong { display: block; color: var(--acid); font-size: 17px; }
.trait-grid span { display: block; margin-top: 4px; color: #83998e; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.sample-tag { position: relative; margin-top: 16px; display: inline-block; padding: 6px 9px; border-radius: 999px; background: rgba(255,255,255,.045); color: #6f877b; font-size: 10px; }

.survey-screen { flex-direction: column; min-height: calc(100vh - 148px); }
.survey-topbar { display: grid; grid-template-columns: 48px minmax(0, 700px) 48px; align-items: center; justify-content: center; gap: 28px; padding-top: 26px; }
.icon-button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.03); cursor: pointer; font-size: 20px; transition: background .18s, border-color .18s; }
.icon-button:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.22); }
.progress-meta { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--muted); font-size: 11px; }
.progress-track { height: 5px; border-radius: 999px; overflow: hidden; background: rgba(255,255,255,.07); }
.progress-bar { width: 0; height: 100%; background: linear-gradient(90deg, var(--acid-strong), var(--acid)); border-radius: inherit; transition: width .36s ease; box-shadow: 0 0 18px rgba(216,255,116,.28); }
.question-stage { flex: 1; display: grid; place-items: center; padding: 48px 0 36px; }
.question-card { width: min(760px, 100%); animation: questionIn .34s ease both; }
.question-header { width: min(760px, 100%); }
.question-body { width: 100%; }
@keyframes questionIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
.question-number { color: var(--acid); font-size: 11px; letter-spacing: .12em; font-weight: 850; text-transform: uppercase; }
.question-card h2 { margin: 13px 0 10px; font-size: clamp(31px, 4.6vw, 50px); letter-spacing: -.05em; line-height: 1.08; }
.question-description { margin: 0 0 26px; color: var(--muted); font-size: 15px; line-height: 1.55; }
.options-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.option-card { position: relative; min-height: 78px; display: flex; align-items: center; gap: 13px; padding: 16px; text-align: left; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.035); cursor: pointer; transition: border-color .17s, background .17s, transform .17s; }
.option-card:hover { transform: translateY(-1px); border-color: rgba(216,255,116,.28); background: rgba(216,255,116,.055); }
.option-card.is-selected { border-color: var(--acid); background: rgba(216,255,116,.105); box-shadow: inset 0 0 0 1px rgba(216,255,116,.12); }
.option-icon { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.055); font-size: 20px; }
.option-copy strong { display: block; font-size: 14px; }
.option-copy span { display: block; margin-top: 4px; color: #899d92; font-size: 12px; line-height: 1.35; }
.option-check { position: absolute; right: 13px; top: 13px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); color: transparent; font-size: 10px; }
.option-card.is-selected .option-check { color: #06110c; background: var(--acid); border-color: var(--acid); }
.text-response { width: 100%; min-height: 160px; padding: 18px; resize: vertical; border: 1px solid var(--line); border-radius: 18px; outline: none; color: var(--text); background: rgba(255,255,255,.04); line-height: 1.6; }
.text-response:focus { border-color: var(--acid); box-shadow: 0 0 0 4px rgba(216,255,116,.07); }
.text-count { display: block; margin-top: 8px; color: #71877c; font-size: 11px; text-align: right; }
.survey-footer { width: min(760px, 100%); margin: 0 auto 32px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #70857b; font-size: 12px; }

.loading-screen { align-items: center; justify-content: center; min-height: calc(100vh - 148px); }
.loading-card { width: min(610px, 100%); padding: 48px; border-radius: var(--radius-xl); background: var(--panel); border: 1px solid var(--line); box-shadow: var(--shadow); text-align: center; backdrop-filter: blur(18px); }
.loader-orbit { position: relative; width: 120px; height: 120px; margin: 0 auto 26px; }
.loader-orbit span { position: absolute; inset: 50%; width: 16px; height: 16px; margin: -8px; border-radius: 50%; background: var(--acid); animation: orbit 1.8s linear infinite; transform-origin: 8px 8px; }
.loader-orbit span:nth-child(2) { background: var(--sky); animation-delay: -.6s; }
.loader-orbit span:nth-child(3) { background: var(--lavender); animation-delay: -1.2s; }
@keyframes orbit { from { transform: rotate(0deg) translateX(48px); } to { transform: rotate(360deg) translateX(48px); } }
.loading-card h2 { margin: 15px auto 28px; font-size: clamp(28px, 4vw, 38px); letter-spacing: -.04em; }
.loading-steps { display: grid; gap: 10px; text-align: left; }
.loading-step { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 13px; color: #71877c; background: rgba(255,255,255,.025); }
.loading-step i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-size: 10px; font-style: normal; }
.loading-step.is-done { color: var(--text); }
.loading-step.is-done i { color: #07120f; background: var(--acid); border-color: var(--acid); }

.result-screen { padding: 46px 0 76px; }
.result-layout { width: 100%; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); gap: 22px; align-items: start; }
.result-card, .conversion-card { border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); }
.result-card { position: relative; padding: clamp(28px, 5vw, 54px); overflow: hidden; background: linear-gradient(145deg, rgba(22,55,44,.97), rgba(8,26,20,.98)); }
.result-card::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; right: -180px; top: -150px; background: radial-gradient(circle, rgba(216,255,116,.17), transparent 65%); }
.result-kicker { color: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .15em; }
.result-icon { width: 74px; height: 74px; margin: 32px 0 16px; display: grid; place-items: center; border-radius: 22px; color: #07120f; background: var(--acid); font-size: 31px; box-shadow: 0 20px 50px rgba(216,255,116,.13); }
.result-card h1 { margin: 0 0 15px; font-size: clamp(46px, 7vw, 76px); }
.result-tagline { max-width: 660px; margin: 0; color: #c6d2cb; font-size: 18px; line-height: 1.55; }
.result-secondary { max-width: 660px; margin: 12px 0 0; color: #9bada3; font-size: 13px; line-height: 1.55; }
.result-traits { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 25px; }
.result-trait { padding: 8px 11px; border-radius: 999px; border: 1px solid rgba(216,255,116,.18); color: #d9e6dd; background: rgba(216,255,116,.055); font-size: 11px; }
.result-divider { height: 1px; background: var(--line); margin: 32px 0; }
.result-card h3 { margin: 23px 0 7px; font-size: 13px; color: var(--acid); }
.result-card p { color: #acbeb4; line-height: 1.65; }
.signature-plan { margin-top: 28px; padding: 17px; border-radius: 16px; border: 1px solid rgba(216,255,116,.18); background: rgba(216,255,116,.055); color: #d9e8df; font-size: 13px; line-height: 1.55; }
.conversion-card { position: sticky; top: 20px; padding: 27px; background: rgba(11,28,23,.92); backdrop-filter: blur(20px); }
.conversion-card h2 { margin: 12px 0 9px; font-size: 29px; letter-spacing: -.035em; }
.conversion-card > p { margin: 0 0 22px; color: var(--muted); font-size: 13px; line-height: 1.55; }
form { display: grid; gap: 13px; }
label { color: #bdcac2; font-size: 11px; font-weight: 730; }
input, select { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; outline: none; color: var(--text); background: rgba(255,255,255,.045); }
input:focus, select:focus { border-color: var(--acid); box-shadow: 0 0 0 4px rgba(216,255,116,.07); }
select option { color: #111; }
.check-row { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 9px; color: #8fa198; font-weight: 500; line-height: 1.45; }
.check-row input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--acid); }
.form-error { min-height: 16px; color: #ff9b83; font-size: 11px; }
.saved-state { padding: 20px 0 4px; text-align: center; }
.saved-check { width: 45px; height: 45px; margin: 0 auto 10px; display: grid; place-items: center; border-radius: 50%; color: #07120f; background: var(--acid); font-weight: 900; }
.saved-state h3 { margin: 0; }
.saved-state p { color: var(--muted); font-size: 12px; line-height: 1.5; }
.share-panel { display: grid; gap: 8px; margin-top: 18px; }
.share-actions { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 6px; }
.share-chip { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.035); font: 600 11px Arial,sans-serif; cursor: pointer; transition: border-color .17s, background .17s; }
.share-chip:hover { border-color: rgba(216,255,116,.25); background: rgba(216,255,116,.055); color: var(--text); }
.text-button { padding: 6px; border: 0; color: var(--acid); background: transparent; cursor: pointer; font-size: 12px; }
.copy-status { min-height: 14px; text-align: center; color: #80948a; font-size: 10px; }
.privacy-note { margin-top: 18px !important; padding-top: 17px; border-top: 1px solid var(--line); color: #70857b !important; font-size: 10px !important; }

.modal { width: min(520px, calc(100% - 30px)); padding: 30px; border: 1px solid var(--line); border-radius: 24px; color: var(--text); background: #10251f; box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(0,0,0,.65); backdrop-filter: blur(8px); }
.modal h2 { margin: 11px 0 13px; font-size: 31px; letter-spacing: -.04em; }
.modal p { color: var(--muted); line-height: 1.65; }
.modal-close { position: absolute; right: 15px; top: 15px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: transparent; cursor: pointer; }

@media (max-width: 920px) {
  .landing-screen { flex-direction: column; align-items: flex-start; padding-top: 36px; }
  .hero-card { width: 100%; max-width: none; min-height: auto; }
  .orb-wrap { height: 180px; }
  .result-layout { grid-template-columns: 1fr; }
  .conversion-card { position: static; }
}

@media (max-width: 640px) {
  .site-header, .site-footer, .app-shell { width: min(100% - 24px, 1240px); }
  .site-header { min-height: 70px; }
  .header-pill { display: none; }
  .app-shell { min-height: calc(100vh - 128px); }
  .landing-screen { padding: 38px 0 58px; }
  h1 { font-size: 51px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button-large { width: 100%; }
  .trust-row { display: grid; gap: 8px; }
  .survey-screen.is-active { position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; padding: 0 12px; background: var(--bg); }
  .survey-topbar { grid-template-columns: 40px 1fr 40px; gap: 10px; padding-top: 14px; flex: 0 0 auto; }
  .icon-button { width: 38px; height: 38px; }
  .question-stage { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 12px 0 10px; min-height: 0; overflow: hidden; }
  .question-card { width: 100%; max-width: 760px; max-height: 100%; display: flex; flex-direction: column; }
  .question-header { flex: 0 0 auto; width: 100%; }
  .question-body { flex: 1; overflow-y: auto; min-height: 0; padding-right: 2px; display: flex; flex-direction: column; }
  .options-grid { grid-template-columns: 1fr; }
  .option-card { min-height: 70px; }
  .text-response { flex: 1; min-height: 140px; }
  .survey-footer { position: static; flex: 0 0 auto; margin-bottom: 0; padding: 13px 0 18px; background: linear-gradient(180deg, transparent, var(--bg) 28%); }
  #keyboardHint { display: none; }
  .survey-footer .button { width: 100%; }
  .loading-card { padding: 34px 22px; }
  .result-screen { padding-top: 24px; }
  .result-card, .conversion-card { border-radius: 24px; }
  .site-footer { font-size: 10px; }
}

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

/* Result-gated quiz experience */
.shared-result-banner {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 20px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(187, 167, 255, .28);
  border-radius: 15px;
  background: rgba(187, 167, 255, .08);
}
.shared-result-banner > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #0a1512;
  background: var(--lavender);
  font-weight: 900;
}
.shared-result-banner div { display: grid; gap: 2px; }
.shared-result-banner strong { font-size: 10px; color: #c8baff; text-transform: uppercase; letter-spacing: .1em; }
.shared-result-banner small { color: var(--text); font-size: 13px; font-weight: 760; }

.what-you-get {
  max-width: 700px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.benefit-card {
  min-height: 126px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}
.benefit-card > span { color: var(--acid); font-size: 10px; font-weight: 850; letter-spacing: .1em; }
.benefit-card strong { margin-top: auto; font-size: 13px; }
.benefit-card small { margin-top: 5px; color: #84978e; font-size: 10px; line-height: 1.45; }
.report-mini {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #07120f;
  background: var(--sky);
  font-weight: 900;
}
.expectation-note {
  max-width: 700px;
  margin-top: 22px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-left: 2px solid var(--acid);
  color: #9bada3;
  background: rgba(216,255,116,.035);
  font-size: 11px;
  line-height: 1.55;
}
.expectation-note strong { color: var(--text); white-space: nowrap; }
.sample-insight {
  margin-top: 18px;
  padding: 13px;
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}
.sample-insight span { color: var(--coral); font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.sample-insight strong { color: #d5dfd8; font-size: 11px; line-height: 1.5; }

.unlock-screen { min-height: calc(100vh - 148px); align-items: center; padding: 36px 0 72px; }
.unlock-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: 24px;
  align-items: stretch;
}
.locked-report,
.unlock-card {
  position: relative;
  min-height: 650px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.locked-report {
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(145deg, rgba(20,53,42,.98), rgba(7,23,18,.98));
}
.locked-report::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(8,21,17,.22);
  backdrop-filter: blur(7px);
}
.locked-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216,255,116,.2), transparent 65%);
}
.locked-topline { display: flex; justify-content: space-between; color: var(--acid); font-size: 9px; font-weight: 850; letter-spacing: .13em; }
.locked-icon { width: 78px; height: 78px; margin: 66px 0 24px; display: grid; place-items: center; border-radius: 24px; color: #06110c; background: var(--acid); font-size: 32px; }
.locked-title-line { width: 72%; height: 56px; border-radius: 14px; background: rgba(255,255,255,.13); }
.locked-title-line.short { width: 44%; height: 32px; margin-top: 10px; }
.locked-pills { display: flex; gap: 9px; margin-top: 34px; }
.locked-pills i { width: 112px; height: 31px; border-radius: 999px; background: rgba(216,255,116,.11); border: 1px solid rgba(216,255,116,.15); }
.locked-content-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 50px; }
.locked-content-row span { height: 180px; border-radius: 19px; background: rgba(255,255,255,.055); border: 1px solid var(--line); }
.lock-badge {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 25px;
  color: #07120f;
  background: var(--acid);
  font-size: 26px;
  box-shadow: 0 20px 70px rgba(0,0,0,.5), 0 0 0 12px rgba(216,255,116,.08);
}
.unlock-card {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(11,28,23,.95);
  backdrop-filter: blur(20px);
}
.unlock-card h1 { margin: 15px 0 13px; font-size: clamp(44px, 5vw, 62px); line-height: .98; }
.unlock-card > p { color: #9fb0a7; font-size: 14px; line-height: 1.6; }
.unlock-list { margin: 26px 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.unlock-list li { padding: 12px; display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: center; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.025); }
.unlock-list li > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #07120f; background: var(--acid); font-weight: 900; }
.unlock-list li div { display: grid; gap: 3px; }
.unlock-list strong { font-size: 12px; }
.unlock-list small { color: #7f9388; font-size: 10px; line-height: 1.4; }
.optional-label { color: #74877d; font-weight: 550; }
.email-purpose { margin: 12px 0 0 !important; color: #71857b !important; font-size: 9px !important; line-height: 1.5 !important; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none !important; }

.result-screen {
  display: none;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 76px;
}
.result-screen.is-active { display: flex; }
.result-hero-grid { width: 100%; display: grid; grid-template-columns: minmax(0,1.18fr) minmax(360px,.82fr); gap: 22px; align-items: stretch; }
.result-share-bar { width: 100%; padding: 18px 22px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; border: 1px solid rgba(216,255,116,.2); border-radius: var(--radius-lg); background: rgba(216,255,116,.05); }
.result-share-bar p { margin: 7px 0 0; color: #a5b7ac; font-size: 12px; line-height: 1.5; }
.share-bar-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.share-bar-actions .share-actions { margin-top: 0; }
.result-side-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(11,28,23,.92);
  box-shadow: var(--shadow);
}
.score-list { display: grid; gap: 18px; margin-top: 26px; }
.score-row { display: grid; gap: 7px; }
.score-meta { display: flex; align-items: center; justify-content: space-between; color: #aebdb4; font-size: 11px; }
.score-meta strong { color: var(--text); font-size: 12px; }
.score-track { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.06); }
.score-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--acid), var(--sky)); box-shadow: 0 0 16px rgba(216,255,116,.16); }
.result-email-status { margin-top: 34px; padding: 15px; display: grid; grid-template-columns: 38px 1fr; gap: 11px; align-items: center; border: 1px solid rgba(125,223,243,.17); border-radius: 15px; background: rgba(125,223,243,.05); }
.result-email-status > span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #07120f; background: var(--sky); }
.result-email-status div { display: grid; gap: 4px; }
.result-email-status strong { font-size: 11px; }
.result-email-status small { color: #83988d; font-size: 9px; line-height: 1.45; }
.report-section { padding: clamp(25px, 4vw, 42px); border: 1px solid var(--line); border-radius: var(--radius-xl); background: rgba(10,27,22,.72); }
.section-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.section-heading > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: #07120f; background: var(--acid); font-size: 11px; font-weight: 900; }
.section-heading div { display: grid; gap: 2px; }
.section-heading small { color: #7f9388; font-size: 9px; font-weight: 850; letter-spacing: .12em; }
.section-heading h2 { margin: 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.045em; }
.characteristic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; }
.characteristic-card { min-height: 215px; padding: 19px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); }
.characteristic-card > span { color: var(--acid); font-size: 9px; font-weight: 850; }
.characteristic-card h3 { margin: auto 0 8px; color: var(--text); font-size: 15px; }
.characteristic-card p { margin: 0; color: #889b91; font-size: 11px; line-height: 1.55; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; }
.insight-card { min-height: 275px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 24px; box-shadow: var(--shadow); }
.insight-card h3 { margin: auto 0 0; color: #0a1512; font-size: clamp(20px, 2.5vw, 28px); line-height: 1.2; letter-spacing: -.035em; }
.insight-label { color: rgba(6,17,13,.65); font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.coral-card { background: var(--coral); }
.sky-card { background: var(--sky); }
.lavender-card { background: var(--lavender); }
.snapshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.snapshot-card { min-height: 138px; padding: 17px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.025); }
.snapshot-card > span { color: #788d82; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.snapshot-card strong { margin-top: auto; color: #eef4ef; font-size: 13px; line-height: 1.4; }
.snapshot-card small { margin-top: 6px; color: #71857b; font-size: 9px; line-height: 1.45; }
.result-action-card { padding: clamp(25px, 4vw, 40px); display: grid; grid-template-columns: 1fr minmax(280px, 360px); gap: 34px; align-items: center; border: 1px solid rgba(216,255,116,.2); border-radius: var(--radius-xl); background: linear-gradient(135deg, rgba(216,255,116,.085), rgba(125,223,243,.05)); }
.result-action-card h2 { margin: 10px 0 8px; font-size: clamp(29px, 4vw, 44px); letter-spacing: -.045em; }
.result-action-card p { max-width: 700px; margin: 0; color: #96a99f; font-size: 12px; line-height: 1.6; }
.result-privacy { margin: 0 !important; padding: 0 !important; border: 0 !important; text-align: center; }

.section-lead { margin: -8px 0 22px; max-width: 640px; color: #93a79c; font-size: 12px; line-height: 1.6; }

.rules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; }
.rule-card { display: flex; flex-direction: column; gap: 7px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.022); }
.rule-index { color: var(--acid); font-size: 9px; font-weight: 850; letter-spacing: .1em; }
.rule-label { color: #788d82; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.rule-card strong { color: #eef4ef; font-size: 14px; line-height: 1.35; }
.rule-card small { color: #74887d; font-size: 10px; line-height: 1.5; }

.research-invite,
.research-done {
  display: grid; grid-template-columns: 1fr minmax(240px, 320px); gap: 30px; align-items: center;
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(125,223,243,.22); border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(125,223,243,.07), rgba(216,255,116,.035));
}
.research-invite h2,
.research-done h2 { margin: 10px 0 8px; font-size: clamp(24px, 3vw, 34px); letter-spacing: -.03em; }
.research-invite p,
.research-done p { margin: 0; max-width: 640px; color: #9db0a6; font-size: 12px; line-height: 1.65; }
.research-invite-actions { display: grid; gap: 8px; }
.research-invite-note { color: #6f8479; font-size: 9px; line-height: 1.5; text-align: center; }
.research-done { grid-template-columns: 54px 1fr; }
.research-done-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px; background: var(--acid); color: #07120f; font-size: 22px; font-weight: 900; }

.research-footer-actions { display: flex; gap: 8px; align-items: center; }

/* Approval-boundary matrix */
.matrix { margin-top: 18px; display: grid; gap: 6px; }
.matrix-head,
.matrix-row { display: grid; grid-template-columns: minmax(120px, 1.6fr) repeat(4, minmax(44px, .6fr)); gap: 6px; align-items: center; }
.matrix-head span { color: #788d82; font-size: 9px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; text-align: center; line-height: 1.3; }
.matrix-label { color: #dbe6df; font-size: 12px; line-height: 1.35; }
.matrix-cell { height: 38px; border: 1px solid var(--line); border-radius: 11px; background: rgba(255,255,255,.025); cursor: pointer; transition: background .16s, border-color .16s; }
.matrix-cell:hover { border-color: rgba(216,255,116,.3); background: rgba(216,255,116,.06); }
.matrix-cell.is-selected { border-color: var(--acid); background: var(--acid); }
.matrix-cell.is-selected::after { content: "✓"; color: #07120f; font-weight: 900; font-size: 13px; }

@media (max-width: 700px) {
  .matrix-head { display: none; }
  .matrix-row { grid-template-columns: 1fr; gap: 5px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; }
  .matrix-row .matrix-cell { height: 34px; }
  .matrix-row > .matrix-cell { display: flex; align-items: center; justify-content: center; }
  .matrix-cell::before { content: attr(aria-label); color: #9db0a6; font-size: 10px; }
  .matrix-cell.is-selected::before { color: #07120f; font-weight: 700; }
  .matrix-cell.is-selected::after { content: ""; }
}

@media (max-width: 1050px) {
  .what-you-get { grid-template-columns: 1fr; }
  .benefit-card { min-height: 90px; }
  .unlock-layout, .result-hero-grid { grid-template-columns: 1fr; }
  .locked-report { min-height: 470px; }
  .unlock-card { min-height: auto; }
  .characteristic-grid { grid-template-columns: repeat(2, 1fr); }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card { min-height: 210px; }
}

@media (max-width: 720px) {
  .expectation-note { grid-template-columns: 1fr; gap: 5px; }
  .expectation-note strong { white-space: normal; }
  .locked-report { display: none; }
  .unlock-layout { display: block; }
  .unlock-card h1 { font-size: 46px; }
  .characteristic-grid, .snapshot-grid { grid-template-columns: 1fr; }
  .characteristic-card { min-height: 175px; }
  .result-action-card { grid-template-columns: 1fr; }
  .result-card h1 { font-size: 48px; }
  .research-invite { grid-template-columns: 1fr; }
}

[hidden] { display: none !important; }
