:root {
  --ink: #172319;
  --cream: #f3f0e7;
  --paper: #fbfaf6;
  --orange: #f2673a;
  --orange-dark: #d94b20;
  --sage: #dfe8db;
  --green: #284d39;
  --mint: #a9dfbc;
  --line: #d8d5cb;
  --muted: #687069;
  --shadow: 0 24px 60px rgba(23, 35, 25, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: white;
  background: var(--ink);
  border-radius: 0.4rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(23, 35, 25, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(243, 240, 231, 0.94);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font: 800 1.05rem "Manrope", sans-serif;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50% 50% 50% 12%;
}

nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
}

nav a {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

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

.hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 5vw clamp(3.5rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -170px;
  top: -170px;
  border: 1px solid rgba(242, 103, 58, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(242, 103, 58, 0.04), 0 0 0 105px rgba(242, 103, 58, 0.025);
}

.eyebrow {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 {
  max-width: 820px;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(3.4rem, 7vw, 7rem);
}

h1 em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

.lede {
  max-width: 660px;
  margin: 0 0 2.5rem;
  color: #4e5b52;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
}

.route-pill {
  max-width: 690px;
  padding: 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  box-shadow: var(--shadow);
}

.route-pill > div:not(.route-line) {
  display: grid;
}

.route-label {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.route-pill strong {
  font-size: 1rem;
}

.route-pill small {
  color: var(--muted);
}

.route-line {
  height: 1px;
  position: relative;
  border-top: 1px dashed #a8aaa5;
}

.route-line::before,
.route-line::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: -4px;
  border-radius: 50%;
  background: var(--orange);
}

.route-line::before {
  left: 0;
}

.route-line::after {
  right: 0;
}

.route-line span {
  position: absolute;
  left: 50%;
  top: -1.5rem;
  translate: -50% 0;
  color: var(--muted);
  background: var(--paper);
  padding: 0 0.4rem;
  font-size: 0.65rem;
  white-space: nowrap;
}

.route-note {
  margin: 0.75rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.quick-answer {
  padding: clamp(2rem, 4vw, 3rem);
  color: white;
  background: var(--green);
  border-radius: 1.3rem 1.3rem 1.3rem 0.2rem;
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.quick-answer h2 {
  margin: 0.6rem 0 2rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.decision-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  padding: 1rem 0;
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.decision-number {
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 700;
}

.decision-list strong {
  font-size: 0.95rem;
}

.decision-list p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 700;
  text-underline-offset: 0.22rem;
}

.truth-strip {
  padding: 1.2rem 5vw;
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: center;
  color: white;
  background: var(--orange);
}

.truth-strip strong {
  font-family: "Manrope", sans-serif;
}

.truth-strip p {
  margin: 0;
  font-size: 0.88rem;
}

.comparison-section,
.details-section,
.provider-facts {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 8rem) 5vw;
}

.section-heading {
  margin-bottom: 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2,
.quote-plan h2,
.sources-section h2 {
  margin: 0.8rem 0 0;
  font-size: clamp(2.35rem, 4.2vw, 4.25rem);
}

.filter {
  padding: 0.35rem;
  display: flex;
  background: #e6e2d8;
  border-radius: 99px;
}

.filter-button {
  padding: 0.62rem 1rem;
  border: 0;
  color: var(--muted);
  background: transparent;
  border-radius: 99px;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

.filter-button.is-active {
  color: white;
  background: var(--ink);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.option-card {
  min-width: 0;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 12px 40px rgba(23, 35, 25, 0.04);
  transition: opacity 180ms ease, transform 180ms ease;
}

.option-card.is-hidden {
  display: none;
}

.option-card:hover {
  transform: translateY(-3px);
}

.option-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.option-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: #f8e8df;
  border-radius: 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.status {
  padding: 0.35rem 0.55rem;
  border-radius: 0.3rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-verified {
  color: #14623b;
  background: #d9f0e2;
}

.status-live {
  color: #725118;
  background: #f6e9c9;
}

.status-benchmark {
  color: #415878;
  background: #e2e9f5;
}

.option-type {
  margin: 2.1rem 0 0.55rem;
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.option-card h3 {
  margin: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}

.option-summary {
  min-height: 4.5rem;
  margin: 0.9rem 0 1.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-block {
  padding: 1.25rem 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-label {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.price {
  display: block;
  margin-top: 0.3rem;
  font: 800 clamp(2rem, 3.1vw, 3rem) "Manrope", sans-serif;
  letter-spacing: -0.065em;
  line-height: 1;
}

.container-card .price {
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
}

.no-price .price {
  color: var(--orange);
}

.price-context {
  color: var(--muted);
  font-size: 0.68rem;
  text-align: right;
}

.breakdown {
  margin: 1rem 0;
}

.breakdown div {
  padding: 0.4rem 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
}

.breakdown strong {
  color: var(--ink);
}

.quote-chips {
  margin: 1.2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.quote-chips span {
  padding: 0.4rem 0.55rem;
  color: #506054;
  background: var(--sage);
  border-radius: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.benchmark-note {
  margin: 1.2rem 0;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.2rem 1rem;
  background: #edf1e9;
  border-radius: 0.5rem;
}

.benchmark-note span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.benchmark-note strong {
  grid-row: span 2;
  align-self: center;
  font: 800 1.4rem "Manrope", sans-serif;
}

.benchmark-note small {
  color: var(--muted);
  font-size: 0.68rem;
}

.fine-print {
  margin: 0.5rem 0 1.5rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.card-actions {
  margin-top: auto;
}

.primary-button {
  min-height: 48px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: white;
  background: var(--ink);
  border-radius: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--orange);
}

.secondary-link {
  margin-top: 0.85rem;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-underline-offset: 0.2rem;
}

.mini-links {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.mini-links a {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-underline-offset: 0.2rem;
}

.quote-plan {
  padding: clamp(4.5rem, 8vw, 8rem) max(5vw, calc((100vw - 1440px) / 2 + 5vw));
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 8rem);
  color: white;
  background: var(--green);
}

.eyebrow.light {
  color: var(--mint);
}

.quote-plan-intro > p:last-child {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.68);
}

.checklist {
  display: grid;
}

.checklist label {
  padding: 1.1rem 0;
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.checklist input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  accent-color: var(--orange);
}

.checklist span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.checklist strong {
  margin-right: 0.45rem;
  color: white;
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-grid article {
  padding: 2rem 1.5rem 2.5rem 0;
}

.detail-grid article + article {
  padding-left: 1.5rem;
  border-left: 1px solid var(--line);
}

.detail-grid span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 800;
}

.detail-grid h3 {
  margin: 2rem 0 0.6rem;
  font-size: 1.35rem;
}

.detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.79rem;
}

.provider-facts {
  padding-top: 0;
}

.fact-table {
  border-top: 1px solid var(--line);
}

.fact-table article {
  min-height: 110px;
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.8fr) minmax(110px, auto);
  gap: 2rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.fact-provider {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  column-gap: 0.65rem;
  align-items: center;
}

.fact-provider strong {
  font: 700 0.95rem "Manrope", sans-serif;
}

.fact-provider small {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.7rem;
}

.fact-dot {
  width: 0.58rem;
  height: 0.58rem;
  grid-row: span 2;
  border-radius: 50%;
}

.parcel-dot {
  background: var(--orange);
}

.pallet-dot {
  background: #c2912e;
}

.container-dot {
  background: var(--green);
}

.fact-table p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.fact-table a {
  font-size: 0.72rem;
  font-weight: 700;
  text-align: right;
  text-underline-offset: 0.2rem;
}

.fact-links {
  display: flex;
  justify-content: end;
  gap: 0.8rem;
}

.sources-section {
  padding: clamp(4rem, 7vw, 7rem) max(5vw, calc((100vw - 1440px) / 2 + 5vw));
  background: var(--sage);
}

.sources-intro {
  max-width: 680px;
}

.sources-intro > p:last-child {
  color: var(--muted);
}

.source-columns {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
}

.source-columns h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.source-columns a {
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(23, 35, 25, 0.16);
  color: #3e4a40;
  font-size: 0.78rem;
  text-decoration: none;
}

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

.source-footnote {
  margin: 3rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 35, 25, 0.16);
  color: var(--muted);
  font-size: 0.7rem;
}

footer {
  padding: 1.5rem 5vw;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.66);
  background: var(--ink);
  font-size: 0.74rem;
}

footer p {
  margin: 0;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .quick-answer {
    max-width: 700px;
  }

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

  .option-summary {
    min-height: auto;
  }

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

  .detail-grid article:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .detail-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
  }

  nav a:not(:first-child) {
    display: none;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .route-pill {
    grid-template-columns: 1fr;
  }

  .route-line {
    width: 1px;
    height: 36px;
    margin-left: 0.3rem;
    border-top: 0;
    border-left: 1px dashed #a8aaa5;
  }

  .route-line::before {
    left: -4px;
    top: 0;
  }

  .route-line::after {
    left: -4px;
    right: auto;
    top: auto;
    bottom: 0;
  }

  .route-line span {
    left: 1rem;
    top: 50%;
    translate: 0 -50%;
  }

  .truth-strip,
  .quote-plan {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter {
    max-width: 100%;
    overflow-x: auto;
  }

  .detail-grid,
  .source-columns {
    grid-template-columns: 1fr;
  }

  .fact-table article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .fact-table a {
    text-align: left;
  }

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

  .detail-grid article,
  .detail-grid article + article {
    padding: 1.5rem 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .detail-grid article:first-child {
    border-top: 0;
  }

  footer {
    gap: 1rem;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
