:root {
  --ink: #17202f;
  --navy: #0d2440;
  --muted: #5d6978;
  --line: #e5e8ee;
  --surface: #ffffff;
  --soft: #f7f5f1;
  --warm: #b76e45;
  --warm-dark: #8f4d2d;
  --blue: #0f62c8;
  --shadow: 0 24px 70px rgba(15, 32, 52, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.material-symbols-outlined {
  font-variation-settings: "wght" 350, "FILL" 0;
  line-height: 1;
}

.announcement {
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

.announcement a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 232, 238, 0.75);
}

.logo,
.footer strong {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.logo span,
.footer strong span {
  display: inline-block;
  margin-left: 0.15rem;
  padding: 0.18rem 0.42rem;
  color: #fff;
  background: var(--blue);
  border-radius: 0.45rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  white-space: nowrap;
}

.nav a:hover {
  color: var(--navy);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-weight: 750;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.header-cta {
  padding: 0.7rem 1.15rem;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 22px rgba(13, 36, 64, 0.14);
}

.button {
  padding: 0.9rem 1.35rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 16px 34px rgba(13, 36, 64, 0.18);
}

.button.primary:hover {
  background: #07182c;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 4rem;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 6.5rem 1.25rem 5.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--warm-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 1.25rem;
  color: var(--navy);
  font-size: clamp(3rem, 6vw, 5.85rem);
  font-weight: 800;
  line-height: 0.96;
}

.hero-subtitle {
  max-width: 670px;
  color: #3f4b5b;
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  color: #475467;
  font-size: 0.94rem;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-list .material-symbols-outlined {
  color: var(--warm);
  font-size: 1.15rem;
}

.trust-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.report-card {
  position: relative;
  padding: 1.25rem;
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
  border: 1px solid #ebe5dd;
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.report-card:before {
  content: "";
  position: absolute;
  inset: -24px -16px auto auto;
  width: 180px;
  height: 180px;
  background: rgba(183, 110, 69, 0.12);
  border-radius: 999px;
  z-index: -1;
}

.report-card-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem;
  color: #fff;
  background: var(--navy);
  border-radius: 1rem;
}

.report-card-header p,
.priority-list p {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-card-header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
}

.report-card-header span {
  align-self: start;
  padding: 0.25rem 0.55rem;
  color: var(--navy);
  background: #fff;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.85rem;
}

.score,
.issue-panel,
.priority-list {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(15, 32, 52, 0.05);
}

.score {
  padding: 1rem;
}

.score span,
.score small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.score strong {
  display: block;
  margin: 0.2rem 0;
  color: var(--blue);
  font-size: 2.4rem;
  line-height: 1;
}

.score.warm strong {
  color: var(--warm);
}

.issue-panel {
  margin-top: 0.85rem;
  padding: 1rem;
}

.issue-panel-heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.issue-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.priority-list {
  margin-top: 0.85rem;
  padding: 1rem;
}

.priority-list p {
  color: var(--warm-dark);
}

.priority-list ol {
  display: grid;
  gap: 0.6rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}

.priority-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #2f3a49;
  font-size: 0.92rem;
  line-height: 1.4;
}

.priority-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 5.25rem 1.25rem;
}

.problem {
  max-width: none;
  background: var(--soft);
}

.section-copy,
.problem .section-copy {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.08;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

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

.step-card,
.analysis-grid article {
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 16px 36px rgba(15, 32, 52, 0.06);
}

.step-card .material-symbols-outlined,
.analysis-grid .material-symbols-outlined {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 1.1rem;
  color: var(--warm-dark);
  background: #f6ece5;
  border-radius: 0.8rem;
  font-size: 1.45rem;
}

.step-card h3,
.analysis-grid h3 {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.step-card p,
.analysis-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.analysis-section {
  max-width: none;
  background: #f8fafc;
}

.analysis-section .section-heading,
.analysis-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.analysis-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.analysis-grid article {
  grid-column: span 2;
}

.sample {
  max-width: none;
  background: #fff;
}

.sample-intro,
.preview-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.sample-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.sample-intro p {
  max-width: 680px;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.preview-grid img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: top;
  background: #f1f3f6;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 18px 42px rgba(15, 32, 52, 0.12);
}

.value {
  max-width: none;
  background: var(--soft);
}

.value-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  border: 1px solid #ebe5dd;
  border-radius: 1.3rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-card .button {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  max-width: 900px;
  margin: 0 auto;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  box-shadow: 0 10px 26px rgba(15, 32, 52, 0.04);
}

summary {
  cursor: pointer;
  padding: 1.15rem 1.25rem;
  color: var(--navy);
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary:after {
  content: "+";
  float: right;
  color: var(--warm-dark);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary:after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

details a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  padding: 5rem 1.25rem;
  color: #fff;
  background: var(--navy);
  text-align: center;
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.final-cta p {
  max-width: 650px;
  margin: 0 auto 1.65rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.final-cta .button.primary {
  background: #fff;
  color: var(--navy);
}

.final-cta > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.final-cta a:not(.button) {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  color: var(--muted);
}

.footer p {
  max-width: 520px;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 0.9rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 650;
}

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

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    overflow-x: auto;
    padding-top: 0.35rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 4.5rem;
  }

  .report-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .analysis-grid article {
    grid-column: span 3;
  }

  .sample-intro {
    grid-template-columns: 1fr;
  }

  .sample-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 720px) {
  .announcement a {
    font-size: 0.82rem;
  }

  .site-header {
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .nav {
    justify-content: flex-start;
    gap: 0.75rem;
    font-size: 0.78rem;
  }

  .header-cta {
    min-height: 40px;
    padding: 0.55rem 0.85rem;
    font-size: 0.86rem;
  }

  .hero,
  .section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: 3.2rem;
    padding-bottom: 4rem;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-actions,
  .sample-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-list,
  .score-grid,
  .three-grid {
    grid-template-columns: 1fr;
  }

  .report-card {
    padding: 0.75rem;
    border-radius: 1.1rem;
  }

  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section h2 {
    font-size: 2rem;
  }

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

  .analysis-grid article {
    grid-column: auto;
  }

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

  .value-card {
    padding: 2rem 1.25rem;
  }

  .final-cta > span {
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
  }

  .footer nav {
    justify-content: flex-start;
  }
}
