:root {
  --ink: #0b1721;
  --muted: #53616d;
  --paper: #f7f9f6;
  --card: #ffffff;
  --line: #dce4df;
  --green: #0d6b57;
  --green-dark: #084c40;
  --mint: #dff5ea;
  --lime: #bbf15f;
  --amber: #f2bc57;
  --shadow: 0 24px 60px rgba(19, 45, 37, 0.12);
}

* {
  box-sizing: border-box;
}

.pixel-fallback {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 5;
  padding: 22px 0;
}

.header-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  background: var(--green);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.brand-mark::before {
  width: 15px;
  height: 11px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  transform: skewY(-24deg) rotate(-5deg);
}

.header-note {
  color: var(--muted);
  font-size: 13px;
}

.hero {
  overflow: hidden;
  padding: 62px 0 88px;
  background:
    radial-gradient(circle at 82% 15%, rgba(187, 241, 95, 0.24), transparent 28%),
    linear-gradient(180deg, #f7f9f6 0%, #eef5f0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, 0.97fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(187, 241, 95, 0.22);
  content: "";
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.primary-button {
  padding: 16px 23px;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(13, 107, 87, 0.2);
  color: #fff;
}

.primary-button::after {
  content: "→";
  font-size: 20px;
  line-height: 1;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 16px 30px rgba(13, 107, 87, 0.28);
  transform: translateY(-2px);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.secondary-button {
  padding: 15px 18px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.micro-copy {
  margin: 16px 0 0;
  color: #68766f;
  font-size: 12px;
  line-height: 1.5;
}

.brief-card {
  position: relative;
  max-width: 520px;
  padding: 20px;
  border: 1px solid rgba(13, 107, 87, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1.2deg);
}

.brief-card::before {
  position: absolute;
  z-index: -1;
  top: 26px;
  right: -28px;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: var(--lime);
  content: "";
  opacity: 0.5;
  transform: rotate(13deg);
}

.brief-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 3px 16px;
}

.brief-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brief-date {
  color: var(--muted);
  font-size: 12px;
}

.brief-screen {
  overflow: hidden;
  border-radius: 20px;
  background: #0d211d;
  color: #fff;
}

.chart-zone {
  position: relative;
  height: 220px;
  padding: 22px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, #16362f, #091914);
  background-size: 100% 44px, 56px 100%, auto;
}

.chart-label {
  position: relative;
  z-index: 2;
  max-width: 230px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.08;
}

.chart-line {
  position: absolute;
  right: -10px;
  bottom: 39px;
  left: 20px;
  height: 80px;
  border-top: 4px solid var(--lime);
  border-radius: 50% 40% 20% 10%;
  filter: drop-shadow(0 8px 10px rgba(187, 241, 95, 0.2));
  transform: skewY(-11deg);
}

.chart-line::before,
.chart-line::after {
  position: absolute;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.chart-line::before {
  top: -7px;
  left: 36%;
  width: 10px;
  height: 10px;
}

.chart-line::after {
  top: -8px;
  right: 10%;
  width: 12px;
  height: 12px;
}

.brief-list {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.brief-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 17px;
  background: #102a24;
}

.brief-number {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 10px;
  background: rgba(187, 241, 95, 0.13);
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.brief-item strong {
  display: block;
  font-size: 13px;
}

.brief-item span {
  color: #a9beb7;
  font-size: 11px;
}

.brief-arrow {
  color: var(--lime) !important;
  font-size: 18px !important;
}

.trust-strip {
  padding: 25px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check {
  display: grid;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.section {
  padding: 88px 0;
}

.section-title {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-title h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-title p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--card);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.community-section {
  background: var(--ink);
  color: #fff;
}

.community-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.community-grid h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.community-grid p {
  color: #b9c6c2;
  line-height: 1.7;
}

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

.expectation-item {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.expectation-item .check {
  background: rgba(187, 241, 95, 0.12);
  color: var(--lime);
}

.expectation-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.expectation-item span {
  color: #aebdb8;
  font-size: 12px;
  line-height: 1.5;
}

.final-cta {
  padding: 88px 0;
  text-align: center;
}

.final-cta-card {
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid rgba(13, 107, 87, 0.15);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 20%, rgba(187, 241, 95, 0.2), transparent 22%),
    #fff;
  box-shadow: var(--shadow);
}

.final-cta h2 {
  max-width: 680px;
  margin: 0 auto 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.final-cta p {
  max-width: 600px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta .button-row {
  justify-content: center;
}

.site-footer {
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-copy,
.footer-links {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--green);
}

.assessment-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 0%, rgba(187, 241, 95, 0.18), transparent 28%),
    var(--paper);
}

.assessment-wrap {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 80px;
}

.assessment-intro {
  margin-bottom: 26px;
}

.assessment-intro h1 {
  margin-bottom: 12px;
  font-size: clamp(37px, 6vw, 58px);
}

.assessment-intro p {
  color: var(--muted);
  line-height: 1.6;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.progress-track {
  display: block;
  width: 100%;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #dfe8e2;
  color: var(--green);
  appearance: none;
  -webkit-appearance: none;
}

.progress-track::-webkit-progress-bar {
  border-radius: inherit;
  background: #dfe8e2;
}

.progress-track::-webkit-progress-value {
  border-radius: inherit;
  background: var(--green);
  transition: width 250ms ease;
}

.progress-track::-moz-progress-bar {
  border-radius: inherit;
  background: var(--green);
  transition: width 250ms ease;
}

.assessment-card {
  margin-top: 24px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.question-step legend {
  width: 100%;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 4vw, 35px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.question-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.answer-grid {
  display: grid;
  gap: 11px;
}

.answer-option {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: 13px;
  min-height: 62px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 15px;
  cursor: pointer;
  transition: border 150ms ease, background 150ms ease, transform 150ms ease;
}

.answer-option:hover {
  border-color: #96baaa;
  background: #f8fbf9;
  transform: translateY(-1px);
}

.answer-option:has(input:checked) {
  border-color: var(--green);
  background: var(--mint);
}

.answer-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

.answer-option strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.answer-option span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.assessment-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
}

.assessment-actions .primary-button {
  margin-left: auto;
}

[hidden] {
  display: none !important;
}

.report-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -10%, rgba(187, 241, 95, 0.22), transparent 30%),
    var(--paper);
}

.report-wrap {
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0 90px;
}

.analysis-card,
.result-card {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.analysis-orb {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border: 1px solid rgba(13, 107, 87, 0.2);
  border-radius: 50%;
  background: var(--mint);
}

.analysis-orb::before,
.analysis-orb::after {
  position: absolute;
  inset: 14px;
  border: 2px solid var(--green);
  border-radius: 50%;
  content: "";
  animation: pulse 1.7s infinite ease-out;
}

.analysis-orb::after {
  inset: 25px;
  animation-delay: 0.35s;
}

@keyframes pulse {
  0% { opacity: 0.85; transform: scale(0.75); }
  70%, 100% { opacity: 0; transform: scale(1.2); }
}

.analysis-card h1,
.result-card h1 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 60px);
}

.analysis-card > p,
.result-lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.analysis-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.analysis-line {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border-radius: 13px;
  background: #f2f5f3;
  color: #7b8882;
  font-size: 13px;
  font-weight: 700;
}

.analysis-line::before {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 2px solid #b9c8c1;
  border-top-color: var(--green);
  border-radius: 50%;
  content: "";
  animation: spin 0.9s linear infinite;
}

.analysis-line.is-complete {
  background: var(--mint);
  color: var(--green-dark);
}

.analysis-line.is-complete::before {
  border: 0;
  background: var(--green);
  color: #fff;
  content: "✓";
  animation: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.profile-badge {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  margin: 30px 0;
}

.result-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fbfa;
}

.result-panel h2 {
  margin-bottom: 17px;
  font-size: 16px;
}

.focus-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: focus;
}

.focus-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  counter-increment: focus;
}

.focus-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green);
  content: counter(focus);
  font-size: 11px;
  font-weight: 900;
}

.fit-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.community-invite {
  padding: 25px;
  border-radius: 19px;
  background: var(--ink);
  color: #fff;
}

.community-invite h2 {
  margin-bottom: 9px;
  font-size: 20px;
}

.community-invite p {
  margin-bottom: 18px;
  color: #b9c6c2;
  font-size: 13px;
  line-height: 1.6;
}

.community-invite .primary-button {
  background: var(--lime);
  box-shadow: none;
  color: var(--ink);
}

.disclosure {
  margin: 17px 0 0;
  color: #78857f;
  font-size: 11px;
  line-height: 1.55;
}

.legal-wrap {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 90px;
}

.legal-wrap h1 {
  font-size: clamp(40px, 6vw, 62px);
}

.legal-wrap h2 {
  margin-top: 34px;
  font-size: 20px;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.legal-wrap a {
  color: var(--green);
}

.sticky-mobile {
  display: none;
}

@media (max-width: 860px) {
  .hero-grid,
  .community-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 54px;
  }

  .brief-card {
    margin: 0 auto;
  }

  .feature-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-index {
    margin-bottom: 28px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .header-note {
    display: none;
  }

  .hero {
    padding: 38px 0 62px;
  }

  h1 {
    font-size: 47px;
  }

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

  .button-row,
  .button-row .primary-button,
  .button-row .secondary-button {
    width: 100%;
  }

  .brief-card {
    padding: 12px;
    border-radius: 22px;
    transform: none;
  }

  .chart-zone {
    height: 190px;
  }

  .section {
    padding: 66px 0;
  }

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

  .assessment-wrap,
  .report-wrap {
    padding-top: 28px;
  }

  .assessment-card,
  .analysis-card,
  .result-card {
    border-radius: 20px;
  }

  .assessment-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .assessment-actions .primary-button,
  .assessment-actions .secondary-button {
    width: 100%;
  }

  .sticky-mobile {
    position: fixed;
    z-index: 20;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
  }

  .sticky-mobile .primary-button {
    width: 100%;
  }

  body:has(.sticky-mobile) .site-footer {
    padding-bottom: 95px;
  }
}

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