:root {
  color-scheme: light;
  --ink: #111827;
  --ink-soft: #374151;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --surface: #f7f8fa;
  --orange: #bd4c00;
  --orange-dark: #bd4c00;
  --orange-pale: #fff1e8;
  --green: #18794e;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 84% 4%, rgba(234, 101, 10, 0.11), transparent 26rem),
    var(--paper);
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.015em;
}

.brand img {
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 650;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--orange-dark);
}

.header-cta {
  padding: 10px 15px;
  color: white;
  background: var(--ink);
  border-radius: 9px;
}

nav .header-cta:hover,
nav .header-cta:focus-visible {
  color: white;
  background: var(--orange-dark);
}

main {
  overflow: hidden;
}

.hero,
.problem-section,
.steps-section,
.feature,
.boundary-section,
.final-cta,
footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  min-height: 660px;
  padding: 82px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.75rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.hero-lede {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 760;
  text-decoration: none;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 3px white,
    0 0 0 6px #7a2f00;
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(189, 76, 0, 0.19);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 13px 30px rgba(189, 76, 0, 0.26);
}

.button-secondary {
  border-color: #d1d5db;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover {
  border-color: #9ca3af;
  background: white;
}

.quiet-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.hero-visual img,
.feature-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 17px;
  box-shadow:
    0 34px 80px rgba(17, 24, 39, 0.16),
    0 4px 14px rgba(17, 24, 39, 0.08);
}

.visual-glow {
  position: absolute;
  inset: 10% -8%;
  background: linear-gradient(135deg, rgba(234, 101, 10, 0.22), rgba(24, 121, 78, 0.11));
  filter: blur(45px);
}

.proof-strip {
  margin-block: 0;
  list-style: none;
  padding: 22px max(20px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  color: #d1d5db;
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 650;
  text-align: center;
}

.proof-strip li {
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-strip li:last-child {
  border-right: 0;
}

.problem-section,
.boundary-section {
  padding: 112px 0;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: 90px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.65rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.problem-section > p,
.boundary-section > p,
.feature-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.72;
}

.steps-section {
  padding: 92px 72px;
  border-radius: 24px;
  background: var(--surface);
}

.section-heading {
  max-width: 730px;
}

.steps {
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  list-style: none;
}

.steps li {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.step-number {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange-dark);
  background: var(--orange-pale);
  font-size: 0.88rem;
  font-weight: 850;
}

h3 {
  margin: 34px 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.025em;
}

.steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.feature {
  padding: 125px 0;
  display: grid;
  grid-template-columns: 0.98fr 0.82fr;
  align-items: center;
  gap: 90px;
}

.feature-copy h2 {
  margin-bottom: 26px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.text-link {
  margin-top: 28px;
  display: inline-block;
  color: var(--orange-dark);
  font-weight: 780;
  text-underline-offset: 4px;
}

.phone-media {
  max-width: 600px;
  justify-self: end;
}

.boundary-section {
  width: 100%;
  padding: 100px max(20px, calc((100vw - 1120px) / 2));
  color: white;
  background: var(--ink);
}

.boundary-section .eyebrow {
  color: #ffab73;
}

.boundary-section > p {
  color: #d1d5db;
}

.final-cta {
  margin-top: 110px;
  padding: 76px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 90% 0, rgba(234, 101, 10, 0.55), transparent 20rem),
    var(--ink);
}

.final-cta .eyebrow {
  color: #ffab73;
}

.final-cta h2 {
  max-width: 820px;
}

.button-on-dark {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.button-on-dark:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
}

footer {
  padding: 74px 0 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 50px;
  color: var(--muted);
  font-size: 0.88rem;
}

footer strong {
  color: var(--ink);
}

footer p {
  margin: 8px 0 0;
}

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

.footer-links a {
  text-underline-offset: 3px;
}

.trademark {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  nav > a:not(.header-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .problem-section,
  .boundary-section {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .steps-section {
    padding: 72px 38px;
  }

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

  .steps li {
    min-height: auto;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .phone-media {
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .site-header,
  .hero,
  .problem-section,
  .steps-section,
  .feature,
  .final-cta,
  footer {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 66px;
  }

  .brand span {
    max-width: 130px;
    line-height: 1.08;
  }

  .header-cta {
    min-height: 44px;
    padding: 11px 12px;
    white-space: nowrap;
  }

  .hero {
    padding: 60px 0 64px;
  }

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

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

  .button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
    padding: 24px 16px;
    text-align: left;
  }

  .proof-strip li {
    padding: 8px;
    border-right: 0;
  }

  .problem-section,
  .feature {
    padding: 82px 0;
  }

  .steps-section {
    padding: 62px 20px;
    border-radius: 18px;
  }

  .steps {
    margin-top: 40px;
  }

  .steps li {
    padding: 24px;
  }

  .boundary-section {
    padding-block: 76px;
  }

  .final-cta {
    margin-top: 76px;
    padding: 54px 24px;
    border-radius: 18px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-top: 58px;
  }

  .footer-links {
    gap: 14px 20px;
  }
}

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

  .button {
    transition: none;
  }
}
