@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --petrol: #102A2C;
  --teal: #163B3D;
  --deep-teal: #1B3C38;
  --cream: #F5F1E8;
  --soft-cream: #FAF7F0;
  --sand: #D8C9B1;
  --copper: #C46A3A;
  --text: #1A1A1A;
  --muted: #5F625D;
  --green: #378A7D;
  --green-hover: #2F7B70;
  --mint: #55A195;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream);
}

::selection {
  background: var(--copper);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

svg {
  display: block;
}

.page {
  min-height: 100vh;
  background: var(--cream);
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.container-narrow {
  max-width: 1024px;
}

.text-column {
  width: 80%;
}

.section {
  padding: 128px 20px;
}

.section-cream {
  background: var(--cream);
}

.section-soft {
  background: var(--soft-cream);
}

.section-white {
  background: #ffffff;
}

.section-dark {
  background: var(--petrol);
  color: var(--cream);
}

.section h2 {
  font-size: 48px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section-dark h2 {
  color: var(--cream);
}

.section-text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
}

.section-text-light {
  color: rgba(245, 241, 232, 0.72);
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--copper);
}

.highlight-copper {
  font-weight: 800;
  color: var(--copper);
}

.strong-dark {
  font-weight: 800;
  color: var(--petrol);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #ffffff;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 42, 44, 0.18);
}

.button-header {
  border-radius: 999px;
  padding: 10px 20px;
  background: var(--green);
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.button-header:hover {
  background: var(--green-hover);
}

.button-submit {
  width: 100%;
  margin-top: 8px;
  border-radius: 999px;
  padding: 20px 32px;
  background: var(--green);
  font-size: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
}

.button-submit:hover {
  background: var(--green-hover);
}

.button-submit:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.button-submit:disabled:hover {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--petrol);
  backdrop-filter: blur(20px);
  transition:
    background-color 300ms ease,
    box-shadow 300ms ease;
}

.site-header.is-scrolled {
  background: rgba(245, 241, 232, 0.92);
  box-shadow: 0 12px 30px rgba(16, 42, 44, 0.06);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  transition: color 300ms ease;
}

.site-header.is-scrolled .site-logo {
  color: var(--petrol);
}

.site-logo span {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.logo-mark {
  flex: 0 0 auto;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 128px 20px;
  background: var(--petrol);
  color: var(--cream);
}

.hero-blob {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 999px;
  filter: blur(64px);
  pointer-events: none;
}

.hero-blob-left {
  left: -10%;
  top: 15%;
  width: 420px;
  height: 420px;
  background: rgba(196, 106, 58, 0.10);
}

.hero-blob-right {
  right: -8%;
  bottom: -14%;
  background: rgba(216, 201, 177, 0.10);
}

.hero-container {
  position: relative;
  text-align: center;
}

.hero-eyebrow {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--mint);
}

.hero-section h1 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 72px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.055em;
  color: var(--cream);
}

.hero-section h1 span {
  color: var(--mint);
}

.hero-text {
  max-width: 672px;
  margin: 32px auto 0;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(245, 241, 232, 0.76);
}

.relevance-strip {
  padding: 28px 20px;
  background: var(--deep-teal);
}

.relevance-container {
  text-align: center;
}

.relevance-mobile {
  display: none;
}

.relevance-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 800;
  color: rgba(245, 241, 232, 0.80);
}

.relevance-label {
  color: var(--copper);
}

.relevance-dot {
  color: rgba(196, 106, 58, 0.70);
}

.desktop-line {
  display: block;
}

.journey-wrapper {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  padding: 4px 0;
}

.journey-flow {
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.journey-step {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 0;
}

.journey-icon {
  display: flex;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #DDEFE6;
  color: var(--deep-teal);
  box-shadow: inset 0 0 0 1px rgba(27, 60, 56, 0.08);
}

.journey-icon svg {
  width: 16px;
  height: 16px;
}

.journey-label {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 700;
  color: var(--petrol);
}

.journey-arrow {
  color: var(--copper);
  font-size: 16px;
}

.mobile-arrow {
  display: none;
}

.statement-box {
  margin-top: 40px;
  padding-left: 32px;
  border-left: 2px solid rgba(196, 106, 58, 0.55);
}

.statement-box p {
  font-size: 30px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.035em;
  color: var(--petrol);
}

.problem-layout {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.35fr;
  gap: 32px;
  align-items: start;
}

.problem-list {
  display: grid;
  gap: 32px;
  padding-top: 24px;
}

.problem-card {
  display: flex;
  gap: 20px;
}

.problem-number {
  margin-top: 6px;
  display: flex;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 106, 58, 0.35);
  border-radius: 999px;
  background: rgba(196, 106, 58, 0.10);
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
}

.problem-card h3 {
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.problem-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 241, 232, 0.72);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background:
    radial-gradient(circle at 25% 20%, rgba(196, 106, 58, 0.22), transparent 34%),
    linear-gradient(135deg, var(--petrol), var(--teal));
  box-shadow: 0 25px 60px rgba(16, 42, 44, 0.25);
  aspect-ratio: 16 / 9;
}

.video-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(to right, #F5F1E8 1px, transparent 1px),
    linear-gradient(to bottom, #F5F1E8 1px, transparent 1px);
  background-size: 56px 56px;
}

.video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px;
  text-align: center;
}

.play-button {
  display: flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(196, 106, 58, 0.60);
  border-radius: 999px;
  background: var(--copper);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.play-button svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.video-label {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.video-content h3 {
  max-width: 768px;
  margin-top: 16px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.video-content p:last-child {
  max-width: 672px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.68);
}

.pulse-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--cream);
  animation: claratumPulseLink 2.4s ease-in-out infinite;
  transition: color 200ms ease;
}

.pulse-link:hover {
  color: var(--copper);
}

@keyframes claratumPulseLink {
  0%,
  100% {
    color: var(--cream);
  }

  50% {
    color: var(--copper);
  }
}

.emphasis-pill {
  display: inline-flex;
  margin-top: 28px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(196, 106, 58, 0.10);
}

.emphasis-pill p {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--copper);
}

.consequence-grid {
  max-width: 1024px;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.consequence-card {
  padding: 0 40px;
}

.consequence-card:first-child {
  padding-left: 0;
}

.consequence-card:last-child {
  padding-right: 0;
}

.consequence-card + .consequence-card {
  border-left: 1px solid rgba(16, 42, 44, 0.10);
}

.consequence-icon {
  color: var(--copper);
}

.consequence-icon svg {
  width: 48px;
  height: 48px;
}

.desktop-small-line {
  width: 40px;
  height: 1px;
  margin-top: 28px;
  background: var(--copper);
}

.consequence-card h3 {
  margin-top: 28px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--petrol);
}

.consequence-card p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.mobile-divider {
  display: none;
}

.analysis-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: start;
}

.analysis-bullet-list {
  margin-top: 36px;
  display: grid;
  gap: 20px;
}

.analysis-bullet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.analysis-bullet span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--copper);
}

.analysis-bullet p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.76);
}

.analysis-visual {
  position: relative;
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  background: var(--teal);
  padding: 32px;
  box-shadow: 0 25px 60px rgba(16, 42, 44, 0.20);
  overflow: hidden;
}

.analysis-circle {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.analysis-circle-top {
  right: -32px;
  top: -32px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(196, 106, 58, 0.30);
}

.analysis-circle-bottom {
  left: -40px;
  bottom: -40px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(216, 201, 177, 0.20);
}

.analysis-visual-inner {
  position: relative;
}

.analysis-header {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.analysis-kicker {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}

.analysis-header h3 {
  margin-top: 12px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--cream);
}

.analysis-header p:not(.analysis-kicker) {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(245, 241, 232, 0.62);
}

.analysis-basis {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  text-align: right;
}

.analysis-basis p {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.55);
}

.analysis-basis strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  color: var(--cream);
}

.score-list {
  display: grid;
  gap: 16px;
}

.score-card {
  padding: 16px;
  border: 1px solid rgba(245, 241, 232, 0.10);
  border-radius: 16px;
  background: rgba(16, 42, 44, 0.45);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.score-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 106, 58, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 28px rgba(16, 42, 44, 0.14);
}

.score-card-head {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.score-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.score-title span {
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 999px;
  background: var(--copper);
}

.score-title h4 {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.score-card strong {
  flex: 0 0 auto;
  padding: 4px 12px;
  border: 1px solid rgba(216, 201, 177, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 800;
  color: var(--sand);
}

.score-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 241, 232, 0.10);
}

.score-fill {
  height: 100%;
  border-radius: 999px;
  background: var(--copper);
}

.report-panel {
  margin-top: 48px;
  padding: 32px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 32px;
  background: var(--teal);
  box-shadow: 0 20px 48px rgba(16, 42, 44, 0.20);
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.report-panel-left {
  width: 34%;
  flex: 0 0 34%;
}

.report-panel-left > p {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.report-panel-left h3 {
  margin-top: 16px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--cream);
}

.report-panel-left div {
  width: 64px;
  height: 1px;
  margin-top: 24px;
  background: rgba(196, 106, 58, 0.75);
}

.report-panel-right {
  flex: 1;
}

.report-panel-right > p {
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.45);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.option-card {
  padding: 20px;
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 16px;
  background: rgba(16, 42, 44, 0.35);
  text-align: center;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.option-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 106, 58, 0.28);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 14px 28px rgba(16, 42, 44, 0.14);
}

.option-card p {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--copper);
}

.option-card strong {
  display: block;
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream);
}

.request-layout {
  display: grid;
  grid-template-columns: 0.95fr 0.85fr;
  gap: 64px;
  align-items: start;
}

.request-title {
  font-size: 60px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.045em;
  color: var(--petrol);
}

.request-title span {
  display: block;
}

.request-note {
  max-width: 576px;
  margin-top: 24px;
  padding-left: 20px;
  border-left: 2px solid rgba(196, 106, 58, 0.70);
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.form-card {
  padding: 32px;
  border: 1px solid rgba(216, 201, 177, 0.70);
  border-radius: 32px;
  background: var(--soft-cream);
  box-shadow: 0 25px 60px rgba(16, 42, 44, 0.10);
}

.request-form {
  display: grid;
  gap: 20px;
}

.honeypot {
  display: none;
}

.form-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0, 0, 0, 0);
}

.form-field input {
  width: 100%;
  border: 1px solid rgba(16, 42, 44, 0.10);
  border-radius: 16px;
  background: #ffffff;
  padding: 14px 16px;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--petrol);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.form-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(55, 138, 125, 0.10);
}

.form-field input::placeholder {
  color: rgba(95, 98, 93, 0.72);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.privacy-check input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 5px;
  accent-color: var(--green);
}

.privacy-check a {
  font-weight: 800;
  color: var(--petrol);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 200ms ease;
}

.privacy-check a:hover {
  color: var(--copper);
}

.form-message {
  display: none;
  border-radius: 16px;
  border: 1px solid transparent;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--petrol);
}

.form-message.is-visible {
  display: block;
}

.form-message.is-success {
  border-color: rgba(55, 138, 125, 0.25);
  background: rgba(55, 138, 125, 0.10);
}

.form-message.is-error {
  border-color: rgba(196, 106, 58, 0.25);
  background: rgba(196, 106, 58, 0.10);
}

.site-footer {
  padding: 56px 20px 40px;
  background: var(--petrol);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 56px;
}

.footer-logo {
  color: var(--cream);
}

.footer-logo span {
  font-size: 18px;
}

.footer-text {
  max-width: 448px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(245, 241, 232, 0.58);
}

.footer-contact {
  margin-top: 24px;
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 241, 232, 0.66);
}

.footer-contact a {
  transition: color 200ms ease;
}

.footer-contact a:hover {
  color: var(--cream);
}

.footer-contact a span {
  color: #25D366;
}

.footer-phone-mobile {
  display: none;
}

.footer-heading {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
}

.footer-links {
  margin-top: 20px;
  display: grid;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(245, 241, 232, 0.66);
}

.footer-links a {
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 232, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(245, 241, 232, 0.42);
}

.claratum-reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.claratum-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 768px) {
  [id] {
    scroll-margin-top: 84px;
  }

  .container,
  .container-narrow {
    max-width: 100%;
  }

  .text-column {
    width: 100%;
  }

  .section {
    padding: 96px 20px;
  }

  .section h2 {
    font-size: 38px;
    line-height: 1.12;
  }

  .section-text {
    font-size: 17px;
    line-height: 1.75;
  }

  .header-inner {
    padding: 16px 20px;
  }

  .site-logo {
    gap: 10px;
  }

  .site-logo span {
    font-size: 20px;
  }

  .button-header {
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero-section {
    padding: 96px 20px;
  }

  .hero-section h1 {
    font-size: 48px;
    line-height: 1.06;
  }

  .hero-eyebrow {
    font-size: 14px;
  }

  .hero-text {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.75;
  }

  .hero-blob-left {
    left: -45%;
    top: 10%;
  }

  .hero-blob-right {
    right: -50%;
    bottom: -20%;
  }

  .relevance-strip {
    padding: 24px 20px;
  }

  .relevance-mobile {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 800;
    color: rgba(245, 241, 232, 0.82);
  }

  .relevance-desktop {
    display: none;
  }

  .desktop-line {
    display: inline;
  }

  .journey-wrapper {
    justify-content: center;
  }

  .journey-flow {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .journey-step {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .journey-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .journey-label {
    text-align: center;
  }

  .desktop-arrow {
    display: none;
  }

  .mobile-arrow {
    display: inline-flex;
  }

  .statement-box {
    padding-left: 24px;
  }

  .statement-box p {
    font-size: 26px;
  }

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .problem-list {
    padding-top: 0;
  }

  .problem-card h3 {
    font-size: 22px;
  }

  .video-card {
    aspect-ratio: auto;
    min-height: 520px;
  }

  .video-content h3 {
    font-size: 26px;
  }

  .video-content p:last-child {
    font-size: 15px;
  }

  .pulse-link {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    text-align: center;
  }

  .emphasis-pill {
    margin-top: 28px;
  }

  .emphasis-pill p {
    font-size: 18px;
  }

  .consequence-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consequence-card,
  .consequence-card:first-child,
  .consequence-card:last-child {
    padding: 0;
  }

  .consequence-card + .consequence-card {
    border-left: 0;
  }

  .desktop-small-line {
    display: none;
  }

  .consequence-card h3 {
    margin-top: 28px;
    font-size: 22px;
  }

  .mobile-divider {
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 40px;
    background: rgba(16, 42, 44, 0.10);
  }

  .analysis-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .analysis-visual {
    padding: 20px;
    border-radius: 28px;
  }

  .analysis-header {
    gap: 18px;
  }

  .analysis-header h3 {
    font-size: 28px;
  }

  .analysis-basis {
    padding: 10px 12px;
  }

  .score-title h4 {
    font-size: 14px;
  }

  .report-panel {
    padding: 24px;
    flex-direction: column;
    gap: 32px;
  }

  .report-panel-left {
    width: 100%;
    flex-basis: auto;
  }

  .report-panel-left h3 {
    font-size: 32px;
  }

  .option-grid {
    grid-template-columns: 1fr;
  }

  .request-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .request-title {
    font-size: 40px;
  }

  .form-card {
    padding: 24px;
    border-radius: 28px;
  }

  .site-footer {
    padding-top: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-phone-mobile {
    display: inline;
  }

  .footer-phone-desktop {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .button:hover,
  .score-card:hover,
  .option-card:hover {
    transform: none;
  }
}