:root {
  --page: #fafafa;
  --surface: #ffffff;
  --ink: #0a0a0a;
  --muted: #525252;
  --line: #e5e5e5;
  --accent: #1e40af;
  --accent-dark: #1b377f;
  --focus: rgba(30, 64, 175, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.site-header,
.section-shell {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  min-height: 64px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand,
.header-cta {
  min-width: 0;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.measure,
.wide-measure,
.narrow-measure {
  width: 100%;
  margin: 0 auto;
}

.measure {
  max-width: 720px;
}

.wide-measure {
  max-width: 960px;
}

.narrow-measure {
  max-width: 600px;
}

.center {
  text-align: center;
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(85svh - 128px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-pad {
  padding-top: 64px;
  padding-bottom: 64px;
}

.eyebrow,
.step-label {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 24px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

p,
li {
  font-size: 17px;
  line-height: 1.6;
}

.hero-copy,
.section-intro,
.panel p,
.output-list p,
.faq-panel p,
.free-copy p,
.text-page p {
  color: var(--muted);
}

.hero-copy {
  max-width: 680px;
  margin: 0 auto 32px;
}

.trust-line,
.small-copy {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 56px;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: opacity 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.button:hover,
.header-cta:hover {
  opacity: 0.9;
}

.primary {
  background: var(--accent);
  color: #ffffff;
}

.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

.secondary:hover {
  background: var(--accent);
  color: #ffffff;
}

.hero-button {
  margin-bottom: 16px;
}

.fit-grid,
.steps {
  display: grid;
  gap: 24px;
}

.panel {
  border: 1px solid var(--line);
  padding: 24px;
}

.panel-white {
  background: var(--surface);
}

.check-list,
.cross-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  display: flex;
  gap: 12px;
}

.check-list span {
  color: var(--accent);
  font-weight: 700;
}

.cross-list {
  color: var(--muted);
}

.cross-list li {
  font-size: 16px;
}

.output-list {
  display: grid;
  gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.output-list li:last-child {
  border-bottom: 0;
}

.output-list > li > span {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.asset-warning {
  margin-top: 40px;
  padding: 20px;
  border: 1px solid var(--line);
}

.asset-warning p {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-weight: 700;
}

.step-label {
  margin: 24px 0 8px;
}

.emphasis {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--accent);
  color: var(--ink);
  font-weight: 650;
}

.free-copy {
  display: grid;
  gap: 20px;
  margin-bottom: 32px;
}

.free-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.faq-list {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.3;
  text-align: left;
}

.faq-item button span {
  font-size: 24px;
  font-weight: 400;
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
}

.faq-panel p {
  margin: 0;
  padding-bottom: 20px;
}

.site-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer p {
  margin: 0 0 4px;
  font-size: 14px;
}

.site-footer a,
.small-copy a,
.faq-panel a {
  color: var(--accent);
  font-weight: 650;
  text-underline-offset: 4px;
}

.text-page h1 {
  margin-bottom: 16px;
}

.text-page p {
  margin-bottom: 24px;
}

@media (min-width: 720px) {
  .hero {
    min-height: 100svh;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-pad {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .eyebrow {
    font-size: 13px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

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

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

@media (min-width: 900px) {
  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .site-header,
  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-cta {
    padding: 10px 12px;
    letter-spacing: 0;
  }

  h1 {
    font-size: 30px;
  }

  .eyebrow {
    line-height: 1.25;
  }

  .hero-button,
  .narrow-measure .button {
    width: 100%;
  }
}
