:root {
  --paper: #ffffff;
  --ink: #0d0d0d;
  --muted: #5c5f62;
  --line: #d8d8d8;
  --soft: #f5f5f2;
  --accent: #e44b1a;
  --accent-dark: #b83211;
  --teal: #00a892;
  --night: #111820;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--ink);
  color: var(--paper);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-strong {
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 14px;
}

.site-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--ink);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--ink);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 48px;
  align-items: start;
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 48px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: 66px;
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 46px;
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 22px;
  font-weight: 730;
  line-height: 1.18;
  letter-spacing: 0;
}

.lead {
  max-width: 700px;
  margin-top: 28px;
  color: #2f3233;
  font-size: 23px;
  line-height: 1.34;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-size: 15px;
  font-weight: 720;
  line-height: 1.15;
}

.button-primary {
  background: var(--ink);
  color: var(--paper);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  outline: none;
}

.button-secondary {
  background: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft);
  outline: none;
}

.button-secondary.light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.72);
}

.button-secondary.light:hover,
.button-secondary.light:focus-visible {
  background: var(--paper);
  color: var(--ink);
}

.hero-panel {
  position: relative;
  padding: 0;
}

.hero-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.hero-fact {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  font-size: 13px;
  border-top: 3px solid var(--accent);
}

.hero-fact span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.3;
}

.hero-fact strong {
  font-size: 28px;
  line-height: 1.05;
}

.intro-band {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.intro-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px;
}

.intro-line span {
  color: var(--accent);
  font-weight: 780;
}

.intro-line p {
  max-width: 920px;
  font-size: 26px;
  line-height: 1.22;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading.compact p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
}

.problem-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.problem-grid article,
.service-card {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.problem-grid p,
.service-card p,
.resource-list p,
.faq p,
.split-copy p {
  color: var(--muted);
  font-size: 17px;
}

.problem-grid p,
.service-card p {
  margin-top: 18px;
}

.metric,
.service-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.visual-break {
  max-width: none;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.visual-break img {
  width: 100%;
  height: 42svh;
  min-height: 320px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
  align-items: start;
}

.split-copy p + p {
  margin-top: 18px;
}

.method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border-top: 1px solid var(--ink);
}

.method-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: steps;
}

.method-list li::before {
  content: "0" counter(steps);
  color: var(--accent);
  font-weight: 760;
}

.method-list span {
  font-size: 24px;
  font-weight: 740;
}

.method-list p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.services > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.service-grid {
  margin-top: 42px;
  background: var(--paper);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--ink);
  font-weight: 740;
  border-bottom: 2px solid var(--accent);
}

.service-card.accent {
  background: var(--accent);
  color: var(--paper);
}

.service-card.accent span,
.service-card.accent p,
.service-card.accent a {
  color: var(--paper);
}

.service-card.accent a {
  border-bottom-color: var(--paper);
}

.service-card.dark {
  background: var(--night);
  color: var(--paper);
}

.service-card.dark span,
.service-card.dark p,
.service-card.dark a {
  color: var(--paper);
}

.service-card.dark a {
  border-bottom-color: var(--teal);
}

.microtools {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
}

.micro-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
}

.micro-list {
  border-top: 1px solid var(--ink);
}

.micro-list a {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.micro-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.micro-list strong {
  font-size: 28px;
  line-height: 1.08;
}

.micro-list a:hover strong,
.micro-list a:focus-visible strong {
  color: var(--accent);
}

.profile {
  max-width: none;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.8fr);
  gap: 56px;
  background: var(--ink);
  color: var(--paper);
}

.profile > * {
  max-width: 680px;
}

.profile-media {
  justify-self: end;
  width: 100%;
  max-width: 760px;
}

.profile-media img {
  width: 100%;
  height: clamp(320px, 44vw, 620px);
  object-fit: cover;
  object-position: center;
  filter: contrast(1.08);
}

.profile .split-copy {
  padding-right: 28px;
}

.profile .split-copy p {
  color: #c8ced0;
}

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

.proof-list li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  color: #eef2f1;
}

.resources {
  padding-bottom: 52px;
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  gap: 42px;
  align-items: stretch;
  margin-top: 42px;
}

.resource-layout img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.resource-list {
  display: grid;
  border-top: 1px solid var(--ink);
}

.resource-list article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.resource-list p {
  margin-top: 12px;
}

.faq {
  padding-top: 52px;
}

.faq-list {
  display: grid;
  max-width: 900px;
  border-top: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  padding: 24px 44px 24px 0;
  font-size: 22px;
  font-weight: 730;
  list-style: none;
  position: relative;
}

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

summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 24px;
  color: var(--accent);
  font-size: 26px;
}

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

details p {
  max-width: 760px;
  padding: 0 44px 24px 0;
}

.credits-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(240px, 0.55fr);
  gap: 42px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
}

.credits-strip p {
  font-size: 28px;
  font-weight: 740;
  line-height: 1.1;
}

.credits-strip img {
  justify-self: end;
  width: min(340px, 100%);
  height: auto;
}

.contact {
  max-width: none;
  background: var(--night);
  color: var(--paper);
}

.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.contact h2 {
  max-width: 820px;
}

.contact p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 22px;
  color: #d9dfe0;
  font-size: 21px;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 14px 18px;
  align-items: center;
  max-width: 760px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.contact-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.contact-card strong {
  grid-column: 1;
  color: var(--paper);
  font-size: 32px;
  line-height: 1.1;
  word-break: break-word;
}

.contact-card .button {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.contact-card .button:hover,
.contact-card .button:focus-visible {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}

.copy-status {
  grid-column: 1 / -1;
}

.contact .copy-status {
  max-width: 620px;
  margin-top: 8px;
  color: #d9dfe0;
  font-size: 16px;
}

.secondary-actions {
  margin-top: 20px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 520px) 1fr;
  gap: 24px;
  align-items: start;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.legal-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 78px 28px 110px;
}

.legal-hero {
  max-width: 820px;
  margin-bottom: 54px;
}

.legal-hero h1 {
  font-size: 64px;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.legal-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.legal-content {
  max-width: 860px;
  border-top: 1px solid var(--ink);
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 27px;
  line-height: 1.15;
}

.legal-section p,
.legal-section li {
  color: #2f3233;
  font-size: 18px;
  line-height: 1.58;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 14px;
}

.legal-section ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-section a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.legal-address {
  white-space: pre-line;
}

.legal-back {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin: 12px 0 0;
    padding: 14px 16px;
    text-align: center;
  }

  .section {
    padding: 74px 22px;
  }

  .hero,
  .section-heading,
  .split,
  .microtools,
  .profile,
  .resource-layout,
  .credits-strip,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding-top: 56px;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .lead {
    font-size: 21px;
  }

  .intro-line {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px;
  }

  .intro-line p {
    font-size: 22px;
  }

  .problem-grid,
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profile-media {
    justify-self: start;
    max-width: none;
  }

  .profile .split-copy {
    padding-right: 0;
  }

  .footer-links {
    justify-content: start;
  }

  .credits-strip img {
    justify-self: start;
    width: min(260px, 100%);
  }

  .legal-main {
    padding: 62px 22px 82px;
  }

  .legal-hero h1 {
    font-size: 48px;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card .button {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: auto;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 20px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-section h2 {
    font-size: 23px;
  }

  .legal-section p,
  .legal-section li {
    font-size: 16px;
  }

  h3 {
    font-size: 20px;
  }

  .lead,
  .contact p:not(.eyebrow) {
    font-size: 18px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .contact-card strong {
    font-size: 26px;
  }

  .contact-card .button {
    width: 100%;
  }

  .hero-panel {
    padding: 12px 0 0 12px;
  }

  .hero-fact,
  .method-list li,
  .micro-list a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .problem-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .problem-grid article,
  .service-card {
    min-height: 240px;
    padding: 22px;
  }

  .visual-break img {
    height: 340px;
  }

  .micro-list strong {
    font-size: 23px;
  }

  .resource-layout img {
    min-height: 300px;
  }

  summary {
    font-size: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
