:root {
  --ink: #181713;
  --muted: #67625b;
  --line: #ded8ce;
  --paper: #fbfaf7;
  --soft: #f3f0ea;
  --clay: #c8775c;
  --clay-dark: #8d4a37;
  --olive: #6c7358;
  --gold: #b99a61;
  --charcoal: #22211f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(44, 37, 29, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

.announcement-bar {
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 8px 52px;
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 23, 19, 0.06);
  text-align: center;
}

.announcement-bar span {
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 64px;
  padding: 0 44px;
  background: rgba(32, 32, 32, 0.96);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(17px, 1.65vw, 22px);
  font-weight: 400;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand-mark {
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

.application-grid h3 a,
.platform-row h3 a,
.section-heading .eyebrow a,
.landing-grid h3 a,
.landing-split h3 a,
.about-copy a,
.landing-prose a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(141, 74, 55, 0.28);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

.application-grid h3 a:hover,
.platform-row h3 a:hover,
.section-heading .eyebrow a:hover,
.landing-grid h3 a:hover,
.landing-split h3 a:hover,
.about-copy a:hover,
.landing-prose a:hover {
  color: var(--clay-dark);
  text-decoration-color: currentColor;
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
}

.header-action {
  color: var(--charcoal);
  background: var(--white);
}

.header-action:hover {
  color: var(--white);
  background: var(--clay-dark);
}

.button.primary {
  color: var(--white);
  background: var(--charcoal);
}

.button.primary:hover {
  background: var(--clay-dark);
}

.button.secondary {
  border-color: rgba(24, 23, 19, 0.14);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  display: grid;
  align-items: stretch;
  background: linear-gradient(90deg, var(--paper) 0%, #f4f1ec 54%, #e6ded3 100%);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 7vh 3vw 7vh 50vw;
  opacity: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: -8vh -4vw;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 1) 0%, rgba(251, 250, 247, 0.92) 22%, rgba(251, 250, 247, 0.1) 62%),
    linear-gradient(0deg, rgba(251, 250, 247, 0.1), rgba(251, 250, 247, 0.1));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: none;
  transform-origin: center center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  margin-right: auto;
  padding: 118px 0 84px 8vw;
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 28px;
  max-width: 680px;
  font-size: clamp(48px, 6.4vw, 90px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 400;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 400;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 500;
}

.hero-copy {
  max-width: 610px;
  color: #4d4943;
  font-size: clamp(17px, 1.32vw, 20px);
  line-height: 1.75;
  font-weight: 350;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 520px;
  margin: 0;
}

.hero-stats div {
  padding: 0 16px 0 0;
  background: transparent;
  border: 0;
}

.hero-stats dt {
  font-size: 23px;
  font-weight: 500;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: clamp(96px, 11vw, 156px) 72px;
}

.faq-section {
  background: var(--white);
}

.faq-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.faq-wrap h2 {
  margin-bottom: 54px;
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 400;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid rgba(24, 23, 19, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(24, 23, 19, 0.1);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  color: #202020;
  font-size: clamp(20px, 2.55vw, 29px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.35;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  max-width: 820px;
  margin: -8px 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: 72px;
  align-items: start;
  max-width: 1240px;
  margin: 0 auto 72px;
}

.expertise-grid,
.application-grid,
.platform-list,
.comparison-wrap,
.timeline,
.about-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.expertise-section,
.applications-section,
.about-section {
  background: var(--white);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 34px;
  background: transparent;
  border: 0;
}

.expertise-grid article {
  min-height: 245px;
  padding: 8px 22px 34px 0;
  background: var(--white);
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.expertise-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  border: 1px solid rgba(24, 23, 19, 0.12);
  border-radius: 50%;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.expertise-grid p,
.application-grid p,
.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-weight: 350;
}

.experience-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 68vh;
  background: var(--charcoal);
  overflow: hidden;
}

.landing-page main {
  background: var(--paper);
}

.product-page main {
  background: var(--paper);
}

.product-hero,
.product-section,
.product-cta {
  padding: clamp(82px, 9vw, 132px) 72px;
}

.product-hero {
  padding-top: clamp(48px, 6vw, 82px);
  background: linear-gradient(135deg, var(--paper) 0%, #f3efe8 100%);
}

.product-hero-grid,
.product-section-inner,
.product-assessment,
.product-related,
.product-cta-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
}

.product-hero h1 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: 0.98;
}

.product-model {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-intro {
  max-width: 600px;
  color: #4d4943;
  font-size: clamp(17px, 1.32vw, 20px);
  line-height: 1.75;
  font-weight: 350;
}

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

.product-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 620px;
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.product-hero-facts div {
  min-width: 0;
}

.product-hero-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-hero-facts dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.product-hero-note {
  max-width: 540px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.product-hero-image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e3db;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section {
  background: var(--white);
}

.product-section.soft {
  background: var(--soft);
}

.product-section-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(46px, 7vw, 96px);
}

.product-section h2,
.product-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.application-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.application-list li {
  min-height: 96px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(24, 23, 19, 0.12);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.application-content .product-note {
  max-width: 760px;
  margin-top: 24px;
}

.product-consideration {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(46px, 7vw, 96px);
  max-width: 1240px;
  margin: 46px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.product-consideration h3 {
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.product-consideration > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 350;
}

.product-assessment {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 68px);
}

.product-assessment article {
  padding-top: 24px;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.product-assessment h3 {
  margin-bottom: 18px;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-assessment p,
.product-note,
.customization-copy p,
.documentation-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 350;
}

.facts-list {
  margin: 0;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.facts-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(24, 23, 19, 0.1);
}

.facts-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.4;
}

.facts-list dd small {
  color: var(--muted);
  font-size: 13px;
}

.customization-copy,
.documentation-copy {
  max-width: 740px;
}

.customization-copy p + p,
.documentation-copy p + p {
  margin-top: 20px;
}

.product-status {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(24, 23, 19, 0.14);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-related a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(24, 23, 19, 0.12);
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-related a:hover {
  border-color: rgba(141, 74, 55, 0.55);
  transform: translateY(-2px);
}

.product-related span {
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-related strong {
  max-width: 280px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 450;
}

.product-cta {
  background: var(--charcoal);
  color: var(--white);
}

.product-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 50px;
  align-items: end;
}

.product-cta p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d1ccc3;
  font-size: 18px;
  line-height: 1.7;
}

.product-cta .button {
  color: var(--charcoal);
  background: var(--white);
}

.landing-hero,
.landing-section,
.landing-cta {
  padding: clamp(82px, 10vw, 138px) 72px;
}

.landing-hero {
  background: var(--paper);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1240px;
  margin: 0 auto 46px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--clay-dark);
}

.landing-hero-grid,
.landing-section-heading,
.landing-split,
.landing-grid,
.landing-section.editorial {
  max-width: 1240px;
  margin: 0 auto;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.landing-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 5.2vw, 74px);
}

.landing-hero p:not(.eyebrow),
.landing-prose p,
.landing-cta p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 1.22vw, 20px);
  line-height: 1.75;
  font-weight: 350;
}

.landing-hero-image {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.landing-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.landing-section.soft {
  background: var(--soft);
}

.landing-section-heading {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: 72px;
  align-items: start;
  margin-bottom: 54px;
}

.landing-section-heading h2,
.landing-section.editorial h2,
.landing-cta h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.landing-grid {
  display: grid;
  gap: 28px;
}

.landing-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.landing-grid article,
.landing-split article {
  padding-top: 26px;
  border-top: 1px solid rgba(24, 23, 19, 0.12);
}

.landing-grid h3,
.landing-split h3 {
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.18;
}

.landing-grid p,
.landing-split p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 350;
}

.landing-grid.compact p {
  font-size: 15px;
}

.landing-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(36px, 6vw, 82px);
}

.landing-section.editorial {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 7vw, 96px);
}

.landing-prose p:last-child {
  margin-bottom: 0;
}

.landing-cta {
  max-width: none;
  margin: 0;
  background: var(--charcoal);
  color: var(--white);
}

.landing-cta h2,
.landing-cta p,
.landing-cta .button {
  margin-left: auto;
  margin-right: auto;
}

.landing-cta h2,
.landing-cta p {
  max-width: 840px;
  text-align: center;
}

.landing-cta p {
  color: #d1ccc3;
}

.landing-cta .button {
  margin-top: 12px;
  background: var(--white);
  color: var(--charcoal);
}

.experience-image {
  position: absolute;
  inset: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--charcoal);
}

.experience-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.68) 0%, rgba(18, 17, 15, 0.34) 42%, rgba(18, 17, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(18, 17, 15, 0.2), rgba(18, 17, 15, 0.06));
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.experience-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(820px, calc(100% - 44px));
  margin-left: 8vw;
  padding: 12vh 0;
}

.experience-copy h2 {
  max-width: 760px;
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(48px, 6.8vw, 96px);
  line-height: 0.96;
}

.experience-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.32vw, 21px);
  line-height: 1.75;
  font-weight: 350;
}

.experience-copy .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.application-grid article {
  min-height: 310px;
  padding: 34px 0 0;
  border-top: 1px solid rgba(24, 23, 19, 0.13);
  background: transparent;
}

.application-grid h3 {
  margin-bottom: 34px;
  font-size: clamp(25px, 2.3vw, 36px);
}

.application-grid p {
  margin-bottom: 16px;
}

.application-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-copy p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.products-section {
  background: linear-gradient(180deg, var(--soft) 0%, var(--paper) 100%);
}

.platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 5vw, 72px) clamp(34px, 4vw, 56px);
  margin-bottom: clamp(86px, 9vw, 132px);
}

.platform-row {
  display: block;
}

.platform-image {
  margin: 0 0 26px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.platform-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.platform-row h3 {
  margin-bottom: 10px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  font-weight: 400;
}

.platform-row p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  font-weight: 350;
}

.platform-row .platform-best {
  margin-bottom: 12px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.platform-resource-link,
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 18px;
  color: var(--clay-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(141, 74, 55, 0.32);
  text-underline-offset: 0.26em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.platform-resource-link:hover,
.resource-link:hover {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.resource-index-hero,
.resource-platform-section,
.resource-platform-overview {
  padding: clamp(82px, 9vw, 132px) 72px;
}

.resource-index-hero {
  padding-top: clamp(48px, 6vw, 82px);
  background: linear-gradient(135deg, var(--paper) 0%, #f3efe8 100%);
}

.resource-index-heading,
.resource-platform-heading,
.resource-product-card,
.resource-platform-overview-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.resource-index-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
}

.resource-index-heading h1 {
  max-width: 720px;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.98;
}

.resource-index-intro p,
.resource-platform-heading > p,
.resource-platform-list p,
.resource-product-body > p:not(.resource-product-platform):not(.resource-product-model) {
  color: var(--muted);
  font-weight: 350;
  line-height: 1.72;
}

.resource-index-intro p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(17px, 1.22vw, 20px);
}

.resource-index-intro p + p {
  margin-top: 18px;
}

.resource-platform-section {
  background: var(--white);
}

.resource-platform-section.soft,
.selected-product-section {
  background: var(--soft);
}

.resource-platform-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
  margin-bottom: 52px;
}

.resource-platform-heading h2,
.resource-platform-overview h2 {
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.04;
}

.resource-platform-heading h2 a {
  text-decoration: underline;
  text-decoration-color: rgba(141, 74, 55, 0.25);
  text-underline-offset: 0.12em;
  text-decoration-thickness: 1px;
}

.resource-platform-heading h2 a:hover {
  color: var(--clay-dark);
  text-decoration-color: currentColor;
}

.resource-platform-heading > p {
  max-width: 600px;
  margin: 0;
  font-size: 17px;
}

.resource-product-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  border-top: 1px solid rgba(24, 23, 19, 0.14);
  border-bottom: 1px solid rgba(24, 23, 19, 0.14);
}

.resource-product-card + .resource-product-card {
  margin-top: 48px;
}

.resource-product-image {
  display: block;
  align-self: center;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: #e9e3db;
  overflow: hidden;
}

.resource-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 260ms ease;
}

.resource-product-image:hover img {
  transform: scale(1.012);
}

.resource-product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
  background: rgba(251, 250, 247, 0.72);
}

.resource-product-platform,
.resource-product-model {
  margin: 0;
  color: var(--clay-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.resource-product-body h3 {
  max-width: 640px;
  margin: 15px 0 10px;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 400;
  line-height: 1.06;
}

.resource-product-model {
  margin-bottom: 22px;
  color: var(--muted);
}

.resource-product-body > p:not(.resource-product-platform):not(.resource-product-model) {
  max-width: 570px;
  margin: 0;
  font-size: 17px;
}

.resource-product-card.compact {
  max-width: 1240px;
}

.resource-product-card.compact .resource-product-body {
  padding: clamp(34px, 5vw, 62px);
}

.resource-platform-overview {
  background: var(--paper);
}

.resource-platform-overview-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 7vw, 96px);
}

.resource-platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.resource-platform-list article {
  padding-top: 24px;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.resource-platform-list h3 {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.resource-platform-list p {
  margin: 0;
  font-size: 16px;
}

.platform-row:nth-child(3) .platform-image img {
  object-position: 55% center;
}

.platform-row:nth-child(4) .platform-image img {
  object-position: 58% center;
}

.comparison-section {
  background: var(--white);
}

.comparison-wrap {
  overflow-x: auto;
  border-top: 1px solid rgba(24, 23, 19, 0.16);
  border-bottom: 1px solid rgba(24, 23, 19, 0.16);
}

.comparison-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 30px 30px;
  border-bottom: 1px solid rgba(24, 23, 19, 0.08);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--ink);
  font-weight: 500;
}

.comparison-table thead th {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  font-size: 18px;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.oem-section {
  background: var(--paper);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(24, 23, 19, 0.14);
}

.timeline article {
  position: relative;
  min-height: 300px;
  padding: 42px 26px 0 0;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--clay-dark);
}

.timeline span {
  display: block;
  margin-bottom: 54px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.timeline h3 {
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.2;
}

.timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.readiness-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--soft) 100%);
}

.readiness-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(56px, 7vw, 108px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.readiness-copy h2 {
  max-width: 560px;
  margin-bottom: 26px;
  font-size: clamp(34px, 3.7vw, 55px);
  line-height: 1.04;
  font-weight: 400;
}

.readiness-copy > p:last-child {
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(17px, 1.18vw, 19px);
  line-height: 1.7;
  font-weight: 350;
}

.readiness-panel {
  padding-top: clamp(12px, 2vw, 34px);
}

.readiness-matrix {
  display: grid;
  grid-template-columns: repeat(20, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(24, 23, 19, 0.13);
  border-left: 1px solid rgba(24, 23, 19, 0.08);
}

.readiness-matrix li {
  grid-column: span 4;
  min-height: 94px;
  display: flex;
  align-items: center;
  padding: 22px 20px;
  border-right: 1px solid rgba(24, 23, 19, 0.08);
  border-bottom: 1px solid rgba(24, 23, 19, 0.08);
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 25px);
  line-height: 1.15;
  font-weight: 450;
  letter-spacing: 0;
}

.readiness-matrix li:nth-child(n + 6) {
  grid-column: span 5;
}

.readiness-note {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.05fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.about-copy {
  padding-top: clamp(12px, 2.5vw, 42px);
}

.about-copy p {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(20px, 2.05vw, 31px);
  line-height: 1.55;
}

.about-image {
  grid-column: 1 / -1;
  margin: 38px 0 0;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--soft);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  background: var(--soft);
}

.contact-copy {
  align-self: center;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 23, 19, 0.12);
  border-radius: 4px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.full {
  grid-column: 1 / -1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.form-status {
  min-height: 1.5em;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.form-status.is-success {
  color: rgba(54, 93, 73, 0.92);
}

.form-status.is-error {
  color: #8d3f35;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 42px;
  padding: 46px 72px;
  background: #131312;
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin: 16px 0 0;
  color: #bab6ad;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: #dcd8cf;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .readiness-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .readiness-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .readiness-matrix li,
  .readiness-matrix li:nth-child(n + 6) {
    grid-column: auto;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 0 22px;
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
  }

  .site-nav,
  .header-action {
    display: none;
  }

  .site-header.nav-open .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 75px;
    display: grid;
    gap: 0;
    padding: 12px 22px 22px;
    background: #202020;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-header.nav-open .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    position: relative;
    inset: auto;
    height: 48vh;
    min-height: 360px;
    opacity: 1;
  }

  .hero-media::after {
    inset: 0;
    background: linear-gradient(0deg, rgba(251, 250, 247, 1), rgba(251, 250, 247, 0.08));
  }

  .hero-media img {
    object-position: center center;
    transform: none;
    transform-origin: center center;
  }

  .hero-content {
    width: auto;
    margin-left: 0;
    padding: 34px 22px 46px;
  }

  .section {
    padding: 76px 22px;
  }

  .landing-hero,
  .landing-section,
  .landing-cta,
  .product-hero,
  .product-section,
  .product-cta,
  .resource-index-hero,
  .resource-platform-section,
  .resource-platform-overview {
    padding: 76px 22px;
  }

  .section-heading,
  .contact-section,
  .about-wrap,
  .readiness-wrap,
  .experience-section,
  .landing-hero-grid,
  .landing-section-heading,
  .landing-section.editorial {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-hero-grid,
  .product-section-inner,
  .product-consideration,
  .product-cta-inner,
  .resource-index-heading,
  .resource-platform-heading,
  .resource-product-card,
  .resource-platform-overview-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .resource-platform-heading {
    align-items: start;
    margin-bottom: 42px;
  }

  .resource-product-image,
  .resource-product-card.compact .resource-product-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .resource-product-body,
  .resource-product-card.compact .resource-product-body {
    padding: 38px 30px 44px;
  }

  .product-hero-image {
    order: -1;
  }

  .product-assessment,
  .product-related {
    grid-template-columns: 1fr;
  }

  .product-related a {
    min-height: 140px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

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

  .landing-grid.three,
  .landing-split {
    grid-template-columns: 1fr;
  }

  .landing-section-heading {
    margin-bottom: 42px;
  }

  .expertise-grid,
  .application-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .expertise-grid article,
  .application-grid article,
  .timeline article {
    min-height: auto;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .site-footer {
    display: grid;
    padding: 42px 22px;
  }

  .announcement-bar {
    min-height: 42px;
    padding: 10px 22px;
  }

  .announcement-bar span {
    font-size: 11px;
  }

  .timeline {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .timeline article {
    padding: 0 0 32px 28px;
  }

  .timeline article::before {
    top: 4px;
    left: -6px;
  }

  .timeline span {
    margin-bottom: 18px;
  }

  .readiness-panel {
    padding-top: 14px;
  }

  .readiness-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .readiness-matrix li,
  .readiness-matrix li:nth-child(n + 6) {
    grid-column: auto;
  }

  .readiness-matrix li {
    min-height: 82px;
    padding: 18px 16px;
  }

  .experience-image {
    min-height: 100%;
  }

  .experience-image img {
    object-position: 62% center;
  }

  .experience-copy {
    width: auto;
    margin-left: 0;
    padding: 86px 22px;
  }

  .comparison-wrap {
    margin-inline: -22px;
    padding-inline: 22px;
  }

}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .brand {
    font-size: 21px;
  }

  .faq-item summary {
    font-size: 22px;
    letter-spacing: 0.04em;
  }

  .hero-actions,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .landing-hero h1 {
    font-size: 42px;
  }

  .product-hero h1 {
    font-size: 42px;
  }

  .product-actions {
    display: grid;
  }

  .application-list {
    grid-template-columns: 1fr;
  }

  .product-hero-facts {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .facts-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .landing-grid.four,
  .landing-grid.five {
    grid-template-columns: 1fr;
  }

  .resource-platform-list {
    grid-template-columns: 1fr;
  }

  .landing-hero-image {
    aspect-ratio: 4 / 3;
  }

  .experience-image img {
    object-position: 76% center;
  }

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

  .readiness-matrix li,
  .readiness-matrix li:nth-child(n + 6) {
    grid-column: auto;
  }

  .readiness-matrix li {
    min-height: 72px;
    padding: 17px 14px;
    font-size: 18px;
  }

  .readiness-note {
    font-size: 13px;
  }

  .platform-list {
    grid-template-columns: 1fr;
    gap: 46px;
    margin-bottom: 76px;
  }

  .platform-image {
    margin-bottom: 20px;
  }

  .expertise-grid article,
  .application-grid article {
    padding: 26px 22px;
  }

  .expertise-grid article,
  .application-grid article {
    padding-left: 0;
    padding-right: 0;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
