:root {
  color-scheme: light;
  --navy: #073763;
  --navy-deep: #052846;
  --orange: #ff6500;
  --ink: #10273a;
  --muted: #596b78;
  --paper: #f7f9fb;
  --white: #ffffff;
  --line: #dce3e8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: linear-gradient(90deg, var(--orange) 0 10px, transparent 10px), var(--paper);
}

a {
  color: inherit;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 254px;
  height: auto;
}

.header-contact,
.text-link {
  color: var(--navy);
  font-size: 0.93rem;
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 8vw, 108px);
  align-items: center;
  padding: clamp(72px, 10vw, 132px) 0 clamp(76px, 9vw, 116px);
}

.eyebrow,
.card-kicker,
.tool-label {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 830px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 6.4vw, 6.2rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.lede {
  max-width: 720px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

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

.contact-link,
.founding-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 20px;
  border-radius: 12px;
  color: var(--white);
  background: var(--orange);
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(255, 101, 0, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.contact-link:hover,
.founding-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 101, 0, 0.28);
}

.contact-link:focus-visible,
.founding-link:focus-visible,
.text-link:focus-visible,
.header-contact:focus-visible,
.brand:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 4px;
}

.quick-benefits,
.business-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.quick-benefits li,
.business-types li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 780;
}

.process-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 48px);
  border-radius: 28px;
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 28px 70px rgba(7, 55, 99, 0.18);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border: 22px solid rgba(255, 101, 0, 0.95);
  border-radius: 36px;
  transform: rotate(18deg);
}

.process-card .card-kicker,
.founding .card-kicker {
  color: #ffab73;
}

.process-card h2 {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.process-card ol {
  position: relative;
  z-index: 1;
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.process-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-card li > span {
  color: #ffab73;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-card strong {
  font-size: 1.03rem;
}

.process-card li p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.tools {
  padding: clamp(76px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  column-gap: clamp(50px, 9vw, 130px);
  align-items: end;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.promise h2,
.founding h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tool-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 16px 50px rgba(7, 55, 99, 0.07);
}

.haul-card {
  border-color: #ffb380;
  box-shadow: 0 16px 50px rgba(255, 101, 0, 0.1);
}

.tool-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.tool-number {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.haul-card .tool-number,
.order-card .tool-number {
  background: var(--orange);
}

.price {
  color: var(--muted);
  font-size: 0.88rem;
}

.price strong {
  color: var(--navy);
  font-size: 1.45rem;
}

.tool-label {
  margin-bottom: 14px;
  font-size: 0.72rem;
}

.tool-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.25vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.tool-card > p:not(.tool-label) {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.business-types {
  gap: 8px;
}

.business-types li {
  padding: 7px 10px;
  background: var(--paper);
  font-size: 0.78rem;
}

.promise {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(400px, 1fr);
  gap: clamp(48px, 9vw, 128px);
  padding: clamp(76px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.promise h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.promise-list {
  display: grid;
}

.promise-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.promise-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.promise-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 11px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.promise-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.16rem;
  letter-spacing: -0.02em;
}

.promise-list p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq {
  padding: clamp(76px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
}

.faq-heading {
  margin-bottom: 34px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 52px 24px 0;
  color: var(--navy);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 850;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 20px;
  color: var(--orange);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.faq-list details p {
  max-width: 820px;
  margin: -2px 0 24px;
  color: var(--muted);
  line-height: 1.65;
}

.founding {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  margin-bottom: clamp(70px, 9vw, 112px);
  padding: clamp(38px, 6vw, 68px);
  border-radius: 28px;
  color: var(--white);
  background: var(--navy-deep);
  box-shadow: 0 28px 70px rgba(7, 55, 99, 0.16);
}

.founding h2 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.5vw, 4.6rem);
}

.founding p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.founding-link {
  min-width: 225px;
  text-align: center;
}

footer {
  padding: 34px 0 48px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

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

@media (max-width: 980px) {
  .tool-grid {
    grid-template-columns: 1fr 1fr;
  }

  .order-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  body {
    background: linear-gradient(90deg, var(--orange) 0 7px, transparent 7px), var(--paper);
  }

  .site-header,
  main,
  footer {
    width: min(100% - 38px, 680px);
  }

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

  .brand img {
    width: 205px;
  }

  .header-contact {
    display: none;
  }

  .hero,
  .promise,
  .section-heading,
  .founding {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 52px;
    padding: 60px 0 72px;
  }

  h1 {
    font-size: clamp(3.15rem, 13vw, 5.3rem);
  }

  .section-heading {
    gap: 22px;
  }

  .section-heading .eyebrow {
    grid-column: auto;
    margin-bottom: -2px;
  }

  .promise {
    gap: 42px;
  }

  .founding {
    gap: 30px;
  }

  .founding-link {
    width: 100%;
  }

  footer {
    flex-direction: column;
    padding-bottom: 36px;
  }
}

@media (max-width: 620px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    grid-column: auto;
  }

  .tool-card {
    padding: 26px;
  }

  .process-card,
  .founding {
    border-radius: 22px;
  }

  .founding {
    padding: 30px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
