@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #f3efe6;
  --surface: rgba(255, 255, 255, 0.75);
  --surface-strong: #ffffff;
  --ink: #16213b;
  --muted: #5f6882;
  --line: rgba(22, 33, 59, 0.12);
  --accent: #ff7a59;
  --accent-soft: #ffd2ba;
  --accent-deep: #f2532f;
  --mint: #d9efe5;
  --gold: #f5be65;
  --shadow: 0 24px 70px rgba(34, 40, 73, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 89, 0.18), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(245, 190, 101, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f3eb 0%, #f2eee6 100%);
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

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

.site-header,
.quiz-header,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header,
.quiz-header {
  padding: 24px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(255, 122, 89, 0.12);
  border: 1px solid rgba(255, 122, 89, 0.22);
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  box-shadow: 0 16px 30px rgba(22, 33, 59, 0.16);
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.button-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button-accent {
  background: linear-gradient(135deg, #ff8a65 0%, #ff6f91 45%, #ffb26b 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(242, 83, 47, 0.28);
}

.button-accent:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 46px rgba(242, 83, 47, 0.32);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-section,
.stats-section,
.info-section,
.result-shell,
.quiz-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 72px;
}

.hero-copy h1,
.transition-shell h1,
.quiz-sidebar h1,
.section-heading h2,
.result-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 720px;
}

.hero-text,
.hero-badges,
.section-heading,
.feature-card p,
.step-card p,
.faq-list p,
.quiz-sidebar p,
.result-copy p,
.metric-card p,
.extended-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 640px;
  font-size: 18px;
  line-height: 1.7;
  margin: 24px 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}

.hero-badges li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero-panel {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  width: min(100%, 420px);
  padding: 28px;
  border-radius: var(--radius-xl);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card-primary {
  top: 24px;
  right: 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.hero-card-primary strong {
  font-size: 14px;
  color: var(--accent-deep);
  letter-spacing: 0.14em;
}

.hero-card-primary h2 {
  margin: 14px 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
}

.hero-card-secondary {
  left: 0;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(180deg, rgba(22, 33, 59, 0.95), rgba(35, 52, 91, 0.95));
  color: #fff;
}

.hero-card-secondary div,
.metric-card,
.feature-card,
.step-card,
.faq-list article,
.quiz-panel,
.quiz-sidebar,
.transition-shell,
.result-section,
.match-card,
.extended-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-card-secondary span,
.metric-card span,
.question-head span,
.match-card span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.hero-card-secondary strong,
.metric-card strong,
.match-card strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 84px;
}

.stats-section article {
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}

.stats-section strong {
  display: block;
  font-size: 40px;
  font-family: "Fraunces", Georgia, serif;
}

.info-section {
  padding: 18px 0 84px;
}

.alt-section {
  border-top: 1px solid rgba(22, 33, 59, 0.1);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.steps-grid,
.report-grid,
.faq-list,
.match-grid,
.extended-grid,
.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card,
.feature-card,
.faq-list article,
.match-card,
.extended-card {
  padding: 24px;
}

.step-card span {
  color: var(--accent-deep);
  font-weight: 700;
}

.step-card h3,
.feature-card h3,
.faq-list h3,
.question-head h3,
.result-section h2,
.match-card h3,
.extended-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
}

.faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.site-footer {
  padding: 0 0 38px;
}

.transition-body,
.quiz-body,
.result-body {
  min-height: 100vh;
}

.transition-shell {
  width: min(720px, calc(100% - 32px));
  margin: 12vh auto 0;
  padding: 48px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
}

.transition-shell h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.pulse-orbit {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 28px;
}

.pulse-orbit span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(22, 33, 59, 0.16);
  animation: pulse 2.4s infinite ease-out;
}

.pulse-orbit span:nth-child(2) {
  animation-delay: 0.4s;
}

.pulse-orbit span:nth-child(3) {
  animation-delay: 0.8s;
}

.pulse-orbit::after {
  content: "";
  position: absolute;
  inset: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 12px 28px rgba(242, 83, 47, 0.34);
}

.quiz-shell {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 22px;
  padding: 20px 0 40px;
}

.quiz-sidebar,
.quiz-panel,
.result-section,
.metric-card {
  padding: 28px;
}

.quiz-progress-meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

.progress-bar {
  width: 100%;
  height: 10px;
  margin: 28px 0;
  border-radius: 999px;
  background: rgba(22, 33, 59, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 999px;
  transition: width 200ms ease;
}

.scale-tip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.scale-tip-list li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
}

.question-list {
  display: grid;
  gap: 18px;
}

.question-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 33, 59, 0.08);
}

.question-head {
  display: flex;
  gap: 16px;
  margin-bottom: 18px;
}

.question-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  font-weight: 700;
  flex-shrink: 0;
}

.answer-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.scale-option {
  padding: 14px 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  text-align: center;
  transition: transform 120ms ease, border-color 120ms ease, background 120ms ease;
}

.scale-option strong {
  display: block;
  font-size: 22px;
}

.scale-option span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.scale-option.selected {
  border-color: rgba(242, 83, 47, 0.5);
  background: rgba(255, 122, 89, 0.12);
  transform: translateY(-1px);
}

.quiz-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.result-shell {
  display: grid;
  gap: 20px;
  padding: 10px 0 48px;
}

.result-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.result-top-profile {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 33, 59, 0.1);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(22, 33, 59, 0.08);
}

.result-top-profile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 10px;
}

.result-top-profile h2 {
  margin: 0;
  font-size: 22px;
}

.result-cover-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background:
    repeating-linear-gradient(
      -12deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 12px,
      rgba(255, 255, 255, 0) 12px,
      rgba(255, 255, 255, 0) 28px
    ),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 245, 240, 0.9));
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.result-cover-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.result-cover-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
}

.result-cover-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.result-cover-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-cover-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 33, 59, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.result-cover-stripe {
  position: absolute;
  inset: 0 0 auto 0;
  height: 10px;
  background: linear-gradient(90deg, #ff8a65 0%, #ff6f91 50%, #ffb26b 100%);
}

.result-cover-foil {
  position: absolute;
  inset: 12px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  pointer-events: none;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.62), transparent 40%);
}

.result-cover-watermark {
  position: absolute;
  inset: auto -40px 20px auto;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: rgba(255, 122, 89, 0.16);
  transform: rotate(-12deg);
  pointer-events: none;
}

.result-cover-seal {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 2px dashed rgba(242, 83, 47, 0.6);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.result-cover-footer {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.result-cover-code {
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 33, 59, 0.12);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.result-cover-code strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.12em;
}

.result-cover-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.result-cover-signature-line {
  flex: 1;
  height: 1px;
  background: rgba(22, 33, 59, 0.18);
}

.result-copy,
.result-metrics,
.match-grid,
.extended-grid {
  margin-top: 18px;
}

.result-copy h1 {
  font-size: clamp(38px, 6vw, 68px);
}

.result-code {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 89, 0.12);
  color: var(--accent-deep);
  font-weight: 700;
  letter-spacing: 0.12em;
}

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

.metric-card h3 {
  margin: 10px 0 6px;
}

.metric-bar {
  width: 100%;
  height: 10px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(22, 33, 59, 0.08);
  overflow: hidden;
}

.metric-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ink), var(--accent));
}

.match-grid,
.extended-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.result-section h2 {
  margin-top: 0;
}

.section-subtitle {
  margin: -2px 0 20px;
  color: var(--muted);
}

.result-detailed-content {
  display: grid;
  gap: 10px;
}

.result-detailed-content h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.result-detailed-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.persona-detail-card {
  display: grid;
  gap: 16px;
}

.persona-detail-head h1 {
  margin: 0;
  font-size: clamp(30px, 4.6vw, 46px);
}

.persona-detail-head p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.persona-detail-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.persona-detail-image-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 33, 59, 0.1);
}

.persona-detail-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.persona-detail-tags-wrap {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 33, 59, 0.1);
  padding: 16px;
}

.persona-detail-tags-wrap h3 {
  margin: 0 0 10px;
}

.persona-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.persona-detail-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
}

.tag-color-1 { background: rgba(255, 122, 89, 0.16); color: #b94a2c; border-color: rgba(185, 74, 44, 0.24); }
.tag-color-2 { background: rgba(98, 129, 245, 0.16); color: #3550b2; border-color: rgba(53, 80, 178, 0.24); }
.tag-color-3 { background: rgba(95, 189, 155, 0.18); color: #1f7d5b; border-color: rgba(31, 125, 91, 0.24); }
.tag-color-4 { background: rgba(177, 127, 245, 0.16); color: #6d3eb6; border-color: rgba(109, 62, 182, 0.24); }

.persona-detail-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.persona-unlock-list {
  margin: 0 0 16px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.75;
}

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

.match-card li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.match-card li small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.empty-state {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
}

@keyframes pulse {
  from {
    transform: scale(0.55);
    opacity: 0.9;
  }
  to {
    transform: scale(1.18);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .hero-section,
  .quiz-shell,
  .result-hero,
  .stats-section,
  .steps-grid,
  .report-grid,
  .faq-list,
  .match-grid,
  .extended-grid,
  .result-metrics,
  .persona-detail-main {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hero-card {
    position: static;
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header,
  .quiz-header,
  .site-footer,
  .hero-section,
  .stats-section,
  .info-section,
  .result-shell,
  .quiz-shell {
    width: min(100% - 20px, 1180px);
  }

  .hero-copy h1,
  .transition-shell h1,
  .section-heading h2,
  .result-copy h1 {
    word-break: break-word;
  }

  .answer-scale {
    grid-template-columns: 1fr;
  }

  .quiz-actions {
    flex-direction: column;
  }
}

.landing-header {
  padding-top: 28px;
}

.landing-main {
  padding-bottom: 96px;
}

.lp-hero,
.lp-section,
.lp-cta-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.lp-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 28px;
  align-items: center;
  padding: 42px 0 52px;
}

.lp-hero-copy {
  max-width: 640px;
}

.lp-hero-copy h1 {
  font-size: clamp(44px, 6vw, 78px);
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 0.98;
}

.lp-subheadline {
  margin: 22px 0 26px;
  font-size: 20px;
  line-height: 1.75;
  color: var(--muted);
}

.brand-line {
  margin: -6px 0 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.lp-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-conversion-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.lp-proof-row span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(22, 33, 59, 0.06);
}

.lp-hero-visual {
  display: flex;
  justify-content: center;
}

.home-carousel {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 44px rgba(30, 40, 72, 0.16);
  background: rgba(255, 255, 255, 0.66);
}

.home-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.42s ease;
}

.home-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-carousel-slide.is-active {
  opacity: 1;
}

.home-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.home-carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.home-carousel-dots span.is-active {
  background: #ffffff;
}

.lp-illustration-card {
  position: relative;
  width: min(100%, 520px);
  min-height: 620px;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.95), transparent 26%),
    linear-gradient(180deg, #fff7fb 0%, #f7ecff 47%, #fff4e9 100%);
  box-shadow: 0 28px 80px rgba(74, 47, 111, 0.14);
}

.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.72;
}

.lp-orb-one {
  top: 42px;
  right: 34px;
  width: 152px;
  height: 152px;
  background: radial-gradient(circle, rgba(255, 174, 210, 0.9), rgba(255, 174, 210, 0.22));
}

.lp-orb-two {
  left: 18px;
  bottom: 48px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 208, 156, 0.8), rgba(255, 208, 156, 0.18));
}

.lp-heart-cluster {
  position: absolute;
  top: 72px;
  left: 66px;
  display: flex;
  gap: 12px;
}

.lp-heart-cluster span {
  position: relative;
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
  background: rgba(255, 118, 155, 0.9);
  border-radius: 4px 4px 0 0;
}

.lp-heart-cluster span::before,
.lp-heart-cluster span::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: inherit;
}

.lp-heart-cluster span::before {
  top: -9px;
  left: 0;
}

.lp-heart-cluster span::after {
  top: 0;
  left: 9px;
}

.lp-heart-cluster span:nth-child(2) {
  margin-top: 14px;
  transform: rotate(-45deg) scale(0.78);
  background: rgba(180, 129, 255, 0.84);
}

.lp-heart-cluster span:nth-child(3) {
  margin-top: 5px;
  transform: rotate(-45deg) scale(0.56);
  background: rgba(255, 174, 116, 0.92);
}

.lp-figure-group {
  position: absolute;
  left: 50%;
  bottom: 108px;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.lp-figure {
  position: relative;
  width: 132px;
  height: 258px;
}

.lp-face {
  position: absolute;
  top: 0;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #ffdfd0;
  box-shadow: inset 0 -10px 0 rgba(255, 194, 174, 0.46);
}

.lp-body {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 112px;
  height: 196px;
  transform: translateX(-50%);
  border-radius: 56px 56px 32px 32px;
}

.lp-figure-left .lp-body {
  background: linear-gradient(180deg, #f9a7c1 0%, #c77dff 100%);
}

.lp-figure-right .lp-body {
  background: linear-gradient(180deg, #ffcf92 0%, #ff8b71 100%);
}

.lp-figure-left {
  transform: rotate(-4deg);
}

.lp-figure-right {
  transform: rotate(4deg) translateY(8px);
}

.lp-visual-note {
  position: absolute;
  max-width: 210px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 36px rgba(61, 40, 87, 0.08);
}

.lp-visual-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.lp-visual-note span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lp-note-top {
  top: 162px;
  right: 24px;
}

.lp-note-bottom {
  left: 28px;
  bottom: 22px;
}

.lp-section {
  padding: 34px 0 74px;
}

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

.lp-features-title {
  white-space: nowrap;
}

.lp-soft-section {
  padding: 56px 0 80px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255, 245, 251, 0.7), rgba(255, 249, 240, 0.68));
}

.persona-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.persona-gallery-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(43, 55, 89, 0.08);
}

.persona-gallery-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(245, 247, 252, 0.8);
}

.persona-gallery-image-wrap picture,
.persona-gallery-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.persona-gallery-image-wrap img {
  object-fit: cover;
}

.persona-gallery-content {
  padding: 12px 14px 14px;
  display: grid;
  gap: 6px;
}

.persona-gallery-code {
  margin: 0;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.persona-gallery-content h3 {
  margin: 0;
  font-size: 18px;
}

.persona-gallery-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.persona-more-btn {
  margin-top: 8px;
  width: fit-content;
}

.lp-feature-grid,
.lp-accuracy-grid,
.lp-testimonial-grid,
.lp-faq-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lp-accuracy-grid,
.lp-testimonial-grid,
.lp-faq-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-feature-card,
.lp-accuracy-card,
.lp-type-card,
.lp-testimonial-card,
.lp-faq-item {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 44px rgba(53, 44, 83, 0.08);
}

.lp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 168, 197, 0.35), rgba(196, 138, 255, 0.24));
  color: var(--accent-deep);
  font-weight: 700;
}

.lp-feature-card h3,
.lp-accuracy-card h3,
.lp-faq-item h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.lp-feature-card p,
.lp-accuracy-card p,
.lp-testimonial-card p,
.lp-faq-item p,
.lp-type-card span {
  color: var(--muted);
  line-height: 1.7;
}

.lp-accuracy-card strong {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  color: var(--accent-deep);
}

.lp-types-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lp-type-card {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.lp-type-card strong {
  font-size: 26px;
  letter-spacing: 0.08em;
}

.lp-testimonial-card p {
  margin-top: 0;
  font-size: 17px;
}

.lp-testimonial-card strong {
  display: inline-block;
  margin-top: 16px;
}

.lp-faq-list {
  gap: 18px;
}

.lp-cta-band {
  margin-top: 8px;
  margin-bottom: 56px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 242, 249, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(53, 44, 83, 0.1);
}

.lp-cta-band h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 24px));
  padding: 10px 12px 10px 14px;
  border-radius: 16px;
  background: rgba(20, 24, 38, 0.92);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(10, 12, 20, 0.34);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 60;
}

.floating-cta strong {
  display: block;
  font-size: 14px;
}

.floating-cta span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.floating-cta .button {
  min-height: 40px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.landing-footer {
  padding-top: 4px;
}

.landing-footer-apple {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 12px 0 28px;
}

.landing-footer-line {
  width: 100%;
  height: 1px;
  background: rgba(22, 33, 59, 0.16);
  margin-bottom: 12px;
}

.landing-footer-right-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: right;
}

.landing-footer-right-links a {
  color: var(--muted);
  font-size: 13px;
}

.landing-footer-right-links a:hover {
  color: var(--ink);
}

.footer-email-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(22, 33, 59, 0.16);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
}

.footer-email-copy {
  border: 1px solid rgba(22, 33, 59, 0.2);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
}

.footer-email-copy:hover {
  background: rgba(22, 33, 59, 0.06);
}

@media (max-width: 1100px) {
  .lp-feature-grid,
  .lp-types-grid,
  .persona-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .lp-hero,
  .lp-feature-grid,
  .lp-accuracy-grid,
  .lp-types-grid,
  .lp-testimonial-grid,
  .lp-faq-list,
  .persona-gallery-grid {
    grid-template-columns: 1fr;
  }

  .lp-features-title {
    white-space: normal;
  }

  .lp-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-illustration-card {
    min-height: 560px;
  }

  .floating-cta {
    width: min(100% - 20px, 760px);
  }
}

@media (max-width: 720px) {
  .lp-hero,
  .lp-section,
  .lp-cta-band {
    width: min(100% - 20px, 1180px);
  }

  .lp-illustration-card {
    min-height: 500px;
  }

  .lp-figure-group {
    bottom: 118px;
    gap: 10px;
  }

  .lp-figure {
    width: 116px;
    height: 228px;
  }

  .lp-body {
    width: 96px;
    height: 172px;
  }

  .lp-note-top,
  .lp-note-bottom {
    position: static;
    margin: 18px;
    max-width: none;
  }

  .lp-proof-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-cta {
    padding: 10px;
    border-radius: 14px;
  }

  .floating-cta strong {
    font-size: 13px;
  }

  .floating-cta span {
    font-size: 11px;
  }

  .floating-cta .button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }
}

.survey-flow-body {
  background:
    radial-gradient(circle at top left, rgba(110, 149, 247, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffdfa 24%, #fff9ef 100%);
  color: #171412;
}

.survey-topbar {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255, 255, 255, 0.92);
  min-height: 82px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(29, 47, 98, 0.06);
  backdrop-filter: blur(14px);
}

.survey-topbar-inner {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
}

.survey-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.survey-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.survey-logo-image {
  width: 112px;
  height: auto;
  display: block;
}

.survey-logo-domain {
  color: #1f2433;
  font-weight: 700;
  font-size: 1rem;
}

.survey-start-main,
.survey-main,
.report-page-shell {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.survey-start-main {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: 18px 0 42px;
}

.survey-start-panel {
  width: min(620px, calc(100% - 40px));
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.survey-start-wordmark {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  -webkit-text-stroke: 3px #2f58c2;
  letter-spacing: 0.08em;
  text-shadow: 0 6px 0 rgba(47, 88, 194, 0.08);
}

.survey-start-panel h1 {
  margin: 0;
  color: #2f58c2;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
}

.survey-start-status-text {
  margin: 0;
  min-height: 1.8em;
  color: #4f5f93;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.radar-loader {
  position: relative;
  width: min(430px, 94vw);
  padding: 6px;
  filter: drop-shadow(0 20px 32px rgba(95, 128, 218, 0.16));
}

.radar-loader-scan {
  position: absolute;
  inset: 46px 54px 34px;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg, rgba(110, 149, 247, 0) 0deg, rgba(110, 149, 247, 0) 300deg, rgba(110, 149, 247, 0.28) 340deg, rgba(110, 149, 247, 0) 360deg);
  filter: blur(4px);
  mix-blend-mode: screen;
  animation: radarSweep 3.2s linear infinite;
  pointer-events: none;
}

.radar-loader-svg {
  width: 100%;
  height: auto;
}

.radar-grid polygon,
.radar-grid line {
  fill: none;
  stroke: rgba(47, 88, 194, 0.16);
  stroke-width: 1.4;
  stroke-dasharray: 4 5;
}

.radar-labels text {
  fill: rgba(62, 84, 153, 0.78);
  font-size: 15px;
  font-weight: 700;
  text-anchor: middle;
}

.radar-shape {
  transform-origin: center;
  opacity: 0.72;
  animation: radarPulse 2.8s ease-in-out infinite;
}

.radar-shape-blue {
  fill: rgba(83, 124, 240, 0.35);
  stroke: rgba(83, 124, 240, 0.88);
  stroke-width: 2;
}

.radar-shape-purple {
  fill: rgba(183, 143, 242, 0.35);
  stroke: rgba(183, 143, 242, 0.88);
  stroke-width: 2;
  animation-delay: 0.25s;
}

.radar-shape-orange {
  fill: rgba(250, 201, 116, 0.32);
  stroke: rgba(240, 176, 55, 0.88);
  stroke-width: 2;
  animation-delay: 0.45s;
}

.radar-sweep {
  animation: radarSweep 3s linear infinite;
  transform-origin: center;
}

.radar-sweep line {
  stroke: rgba(109, 146, 247, 0.45);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(109, 146, 247, 0.25));
}

.survey-start-status {
  width: min(360px, 100%);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #6a78a4;
  font-size: 0.92rem;
  font-weight: 700;
}

.survey-start-progress {
  width: 100%;
  max-width: 360px;
  height: 14px;
  background: linear-gradient(90deg, #d7e5ff 0%, #e5eefc 100%);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(70, 89, 149, 0.08);
}

.survey-start-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5b80eb 0%, #6f94fb 72%, #8dafec 100%);
  box-shadow: 0 8px 18px rgba(91, 128, 235, 0.26);
}

.survey-start-note {
  width: min(470px, 100%);
  margin: 2px 0 0;
  color: #6b6770;
  font-size: 0.96rem;
  line-height: 1.8;
}

.survey-main {
  padding: 18px 0 52px;
}

.survey-shell-card {
  width: min(980px, calc(100% - 18px));
  margin: 0 auto;
  padding: 26px 26px 28px;
  border-radius: 36px;
  background: linear-gradient(180deg, #fff8eb 0%, #fcf2db 100%);
  border: 1px solid rgba(226, 207, 148, 0.52);
  box-shadow: 0 24px 48px rgba(197, 160, 82, 0.12);
}

.survey-shell-header {
  display: grid;
  gap: 14px;
}

.survey-progress-wrap {
  width: min(720px, 100%);
  margin: 0 auto;
}

.survey-progress-bar {
  height: 12px;
  background: linear-gradient(90deg, #d4e1fb 0%, #dce7ff 100%);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(70, 89, 149, 0.08);
}

.survey-progress-fill {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5b80eb 0%, #5b80eb 72%, #7fa0f6 100%);
  box-shadow: 0 8px 18px rgba(91, 128, 235, 0.24);
}

.survey-progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #746f68;
  font-size: 0.88rem;
  font-weight: 700;
}

.survey-scale-summary {
  width: min(720px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.survey-scale-summary span {
  color: #7d756d;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.survey-scale-summary strong {
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.5;
}

.shape-scale-guide {
  width: min(700px, 100%);
  margin: 18px auto 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.shape-guide-item {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #2d2925;
  font-weight: 800;
  text-align: center;
}

.shape-guide-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.shape-guide-icon svg,
.survey-shape-visual svg {
  width: 38px;
  height: 38px;
  overflow: visible;
}

.shape-guide-icon path,
.shape-guide-icon circle,
.survey-shape-visual path,
.survey-shape-visual circle {
  fill: transparent;
  stroke: var(--shape-color);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shape-guide-item span:last-child {
  font-size: 0.78rem;
  line-height: 1.3;
  color: #6e665f;
}

.survey-guide-caption {
  width: min(700px, 100%);
  margin: 0 auto 18px;
  text-align: center;
  color: #8b847d;
  font-size: 0.8rem;
  font-weight: 700;
}

.survey-page {
  display: grid;
  gap: 14px;
  width: min(720px, 100%);
  margin: 0 auto;
  animation: surveyPageIn 0.28s ease;
}

.survey-question-row {
  padding: 18px 20px 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 221, 211, 0.95);
  box-shadow: 0 10px 20px rgba(202, 183, 130, 0.08);
}

.survey-question-row.is-answered {
  border-color: rgba(91, 128, 235, 0.22);
  box-shadow: 0 14px 24px rgba(91, 128, 235, 0.11);
}

.survey-question-badge {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(91, 128, 235, 0.1);
  color: #4664bf;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.survey-question-title {
  text-align: center;
  max-width: 30em;
  margin: 0 auto;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  font-weight: 900;
  line-height: 1.55;
}

.survey-shape-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.survey-shape-option {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 72px;
  border: none;
  background: transparent;
  padding: 0;
  border-radius: 18px;
  cursor: pointer;
}

.survey-shape-option::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.64) 100%);
  border: 1px solid rgba(232, 227, 217, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.survey-shape-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  transform: translateY(0) scale(1);
  transition: transform 0.18s ease;
}

.survey-shape-option:hover::before {
  transform: translateY(-2px);
  border-color: rgba(177, 194, 235, 0.76);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 18px rgba(208, 216, 236, 0.2);
}

.survey-shape-option:hover .survey-shape-visual {
  transform: translateY(-2px) scale(1.05);
}

.survey-shape-option.is-selected::before {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, color-mix(in srgb, var(--shape-color) 16%, white) 100%);
  border-color: color-mix(in srgb, var(--shape-color) 42%, rgba(91, 128, 235, 0.28));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 14px 24px color-mix(in srgb, var(--shape-color) 18%, transparent);
}

.survey-shape-option.is-selected .survey-shape-visual {
  animation: shapePop 0.28s ease;
}

.survey-shape-option.is-selected .survey-shape-visual path,
.survey-shape-option.is-selected .survey-shape-visual circle {
  fill: color-mix(in srgb, var(--shape-color) 88%, white);
  stroke-width: 2.2;
  filter: drop-shadow(0 10px 14px color-mix(in srgb, var(--shape-color) 36%, transparent));
}

.survey-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 2px;
  flex-wrap: wrap;
}

.survey-footer-note {
  color: #7a736b;
  width: 100%;
  order: 3;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.report-page-shell {
  width: min(1180px, calc(100% - 24px));
  padding: 26px 0 56px;
}

.report-hero-layout,
.report-section-grid,
.report-card-grid,
.report-communication-grid {
  display: grid;
  gap: 22px;
}

.report-hero-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;
}

.report-hero-main-card,
.report-stat-card,
.report-story-card,
.report-list-card,
.report-communication-card,
.report-summary-banner {
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.report-hero-main-card,
.report-stat-card,
.report-story-card,
.report-list-card,
.report-communication-card,
.panel.white {
  background: var(--card);
}

.report-hero-main-card,
.report-stat-card,
.report-story-card,
.report-list-card,
.report-communication-card,
.report-summary-banner,
.panel.white,
.panel.accent {
  padding: 24px;
}

.report-hero-main-card h1 {
  margin: 12px 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.report-hero-tagline {
  margin: 0;
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.report-hero-summary {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}

.report-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.report-hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 20, 18, 0.08);
  font-size: 0.94rem;
  font-weight: 700;
}

.report-hero-quote {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  line-height: 1.84;
  color: #2a241f;
}

.report-hero-side-stack {
  display: grid;
  gap: 18px;
}

.report-stat-card span {
  color: var(--brand-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.report-stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.22rem;
}

.report-stat-card p,
.report-story-card p,
.report-list-card p,
.report-communication-card p,
.report-summary-banner p {
  color: var(--muted);
  line-height: 1.8;
}

.report-section-grid,
.report-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.report-stack-list {
  display: grid;
  gap: 14px;
}

.report-stack-item {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(23, 20, 18, 0.08);
}

.report-stack-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.report-stack-item p {
  margin: 0;
}

.report-stack-tip {
  margin-top: 10px !important;
  color: var(--brand-deep) !important;
  font-weight: 700;
}

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

.preview-single-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.preview-left,
.preview-right {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(22, 33, 59, 0.1);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(22, 33, 59, 0.08);
}

.preview-left-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  margin-bottom: 12px;
}

.preview-left h2,
.preview-right h2 {
  margin: 0 0 8px;
}

.preview-left-score {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--accent-deep);
}

@media (max-width: 980px) {
  .preview-single-card {
    grid-template-columns: 1fr;
  }
}
