:root {
  --green: #04954e;
  --green-light: #24bd70;
  --green-soft: rgba(4, 149, 78, 0.14);
  --black: #050706;
  --panel: #101712;
  --panel-deep: #080c09;
  --white: #f6f8f7;
  --muted: #b3beb8;
  --soft: #dce3df;
  --line: rgba(255, 255, 255, 0.1);
  --paper: #ffffff;
  --paper-text: #1b1d1c;
  --paper-muted: #555b57;
  --paper-line: #d8ddd9;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
  --radius-large: 24px;
  --radius-medium: 16px;
  --radius-small: 10px;
  --content-width: 980px;
  --reading-width: 760px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(
      circle at 14% 8%,
      rgba(4, 149, 78, 0.16),
      transparent 31rem
    ),
    radial-gradient(
      circle at 88% 88%,
      rgba(4, 149, 78, 0.1),
      transparent 28rem
    ),
    linear-gradient(180deg, #050706, #0a0f0c 58%, #050706);
  color: var(--white);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--green-light);
  outline-offset: 4px;
}

::selection {
  background: var(--green);
  color: #ffffff;
}

.page-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 30px;
}

.site-card {
  position: relative;
  width: min(var(--content-width), 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: linear-gradient(
    145deg,
    rgba(18, 25, 20, 0.96),
    rgba(7, 10, 8, 0.99)
  );
  box-shadow: var(--shadow);
}

.content {
  padding: clamp(30px, 6vw, 72px);
  text-align: center;
}

.logo-link {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  text-decoration: none;
}

.logo {
  display: block;
  width: min(760px, 100%);
  margin: 0 auto 28px;
}

.internal .logo {
  width: min(610px, 100%);
  margin-bottom: 24px;
}

.nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(720px, 100%);
  margin: 0 auto 38px;
}

.nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-small);
  background: rgba(255, 255, 255, 0.025);
  color: #dfe5e1;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.active,
.nav a[aria-current="page"] {
  border-color: var(--green);
  background: var(--green-soft);
  color: #ffffff;
  transform: translateY(-1px);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.internal h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.green-h1 {
  color: var(--green);
}

.lead {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.divider {
  width: 90px;
  height: 3px;
  margin: 32px auto;
  border-radius: 999px;
  background: var(--green);
}

.tagline {
  font-size: clamp(0.92rem, 1.8vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.missouri {
  margin-top: 12px;
  color: var(--soft);
  font-weight: 650;
}

.contact-button,
.primary-link {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: linear-gradient(
    180deg,
    rgba(42, 46, 44, 0.98),
    rgba(20, 23, 22, 0.99) 52%,
    rgba(8, 10, 9, 0.99)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9),
    0 10px 24px rgba(0, 0, 0, 0.42);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.contact-button::before,
.primary-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 10px;
  bottom: 7px;
  left: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green) 10%,
    var(--green) 90%,
    transparent
  );
  box-shadow: 0 0 10px rgba(4, 149, 78, 0.28);
}

.contact-button::after,
.primary-link::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -10px 18px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.contact-button:hover,
.primary-link:hover {
  border-color: rgba(4, 149, 78, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 14px 28px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(4, 149, 78, 0.12);
  transform: translateY(-2px);
}

.contact-button:active,
.primary-link:active {
  box-shadow:
    inset 0 2px 4px rgba(0, 0, 0, 0.45),
    0 6px 14px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.page-copy {
  max-width: var(--reading-width);
  margin: 30px auto 0;
  text-align: left;
}

.page-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.content-section {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.025);
}

.content-section h2 {
  margin: 0 0 10px;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.content-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.standard-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  text-align: left;
}

.standard-item {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.standard-item strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 1.02rem;
}

.standard-item span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 840px;
  margin: 42px auto 0;
  text-align: left;
}

.standard-card {
  position: relative;
  min-height: 170px;
  padding: 30px 28px 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(4, 149, 78, 0.035)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.2);
}

.standard-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--green);
}

.standard-number {
  display: block;
  margin-bottom: 14px;
  color: var(--green-light);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.standard-card h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.34rem;
  line-height: 1.2;
}

.standard-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.standard-card:last-child {
  grid-column: 1 / -1;
  min-height: 150px;
  text-align: center;
}

.product-card {
  max-width: var(--reading-width);
  margin: 30px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.035),
    rgba(4, 149, 78, 0.05)
  );
  text-align: left;
}

.product-card .model {
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card h2 {
  margin: 8px 0 10px;
  font-size: 2rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.feature-grid div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  color: #dfe5e1;
  font-size: 0.9rem;
}

.product-page {
  max-width: 920px;
  margin: 0 auto;
}

.h1-hero {
  position: relative;
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(
      circle at 20% 25%,
      rgba(4, 149, 78, 0.18),
      transparent 22rem
    ),
    linear-gradient(
      145deg,
      rgba(27, 32, 29, 0.98),
      rgba(5, 8, 6, 0.99)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 55px rgba(0, 0, 0, 0.36);
  text-align: left;
}

.h1-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(4, 149, 78, 0.32);
}

.h1-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 1fr);
  align-items: stretch;
}

.h1-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 42px 52px;
}

.h1-series {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 31px;
  margin-bottom: 19px;
  padding: 0 12px;
  border: 1px solid rgba(4, 149, 78, 0.62);
  border-radius: 5px;
  background: rgba(4, 149, 78, 0.12);
  color: var(--green-light);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.h1-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.3rem, 8vw, 6.5rem);
  letter-spacing: -0.075em;
  line-height: 0.84;
}

.h1-copy h2 span {
  color: var(--green);
}

.h1-tagline {
  margin: 22px 0 0;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.45;
}

.h1-description {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.speaker-display {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  padding: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(
      circle at center,
      rgba(4, 149, 78, 0.13),
      transparent 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.4));
}

.speaker-stage {
  width: 100%;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: #f4f4f2;
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.speaker-photo {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border-radius: 8px;
}

.icon-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin: 24px auto 0;
}

.icon-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 22px 15px 20px;
  border: 1px solid rgba(4, 149, 78, 0.56);
  border-radius: 11px;
  background: linear-gradient(
    180deg,
    rgba(19, 24, 21, 0.97),
    rgba(7, 10, 8, 0.99)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 11px 25px rgba(0, 0, 0, 0.22);
  text-align: center;
}

.icon-spec svg {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  color: #ffffff;
}

.icon-spec strong {
  display: block;
  color: #ffffff;
  font-size: 0.87rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.25;
  text-transform: uppercase;
}

.icon-spec span {
  display: block;
  margin-top: 5px;
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.missouri-icon {
  width: 58px !important;
  height: 50px !important;
}

.benefits-heading {
  margin: 62px auto 0;
  text-align: center;
}

.section-label,
.benefits-heading .section-label {
  display: block;
  margin-bottom: 12px;
  color: var(--green-light);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.benefits-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.benefits-heading p {
  max-width: 650px;
  margin: 17px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 35px auto 0;
  text-align: left;
}

.benefit-card {
  position: relative;
  min-height: 220px;
  padding: 31px 29px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045),
    rgba(4, 149, 78, 0.025)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.19);
}

.benefit-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--green);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 21px;
  border: 1px solid rgba(4, 149, 78, 0.65);
  border-radius: 9px;
  background: rgba(4, 149, 78, 0.08);
  color: var(--green-light);
}

.benefit-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
}

.benefit-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.37rem;
  line-height: 1.22;
}

.benefit-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.7;
}

.warranty-panel {
  position: relative;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin: 20px auto 0;
  padding: 35px 38px;
  overflow: hidden;
  border: 1px solid rgba(4, 149, 78, 0.56);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(4, 149, 78, 0.18),
      transparent 14rem
    ),
    linear-gradient(
      145deg,
      rgba(20, 28, 23, 0.98),
      rgba(6, 9, 7, 0.99)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 17px 38px rgba(0, 0, 0, 0.27);
  text-align: left;
}

.warranty-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--green);
}

.warranty-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border: 2px solid var(--green);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.24);
  box-shadow:
    inset 0 0 25px rgba(4, 149, 78, 0.08),
    0 12px 26px rgba(0, 0, 0, 0.29);
  color: #ffffff;
  text-align: center;
}

.warranty-badge strong {
  display: block;
  color: var(--green-light);
  font-size: 3rem;
  line-height: 0.8;
}

.warranty-badge span {
  display: block;
  margin-top: 10px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.warranty-kicker,
.warranty-copy .warranty-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--green-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.warranty-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.warranty-copy h2 sup {
  color: var(--green-light);
  font-size: 0.47em;
  vertical-align: super;
}

.warranty-copy > p {
  margin: 15px 0 0;
  color: #c0cac4;
  line-height: 1.68;
}

.warranty-note {
  margin-top: 15px !important;
  font-size: 0.76rem;
  line-height: 1.55 !important;
}

.warranty-note a {
  color: #aebdb5;
  text-decoration-color: rgba(4, 149, 78, 0.78);
  text-decoration-line: underline;
  text-underline-offset: 3px;
}

.warranty-note a:hover {
  color: #ffffff;
}

.closing-section {
  max-width: 760px;
  margin: 55px auto 0;
  padding: 15px 0 4px;
  text-align: center;
}

.closing-section h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 3.55rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.closing-section p {
  max-width: 610px;
  margin: 17px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.closing-section .contact-button {
  margin-top: 28px;
}

.policy-page {
  max-width: 880px;
  margin: 0 auto;
}

.policy-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.policy-intro .eyebrow {
  margin-top: 16px;
}

.policy-intro .lead {
  max-width: 720px;
}

.policy-summary {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin: 42px auto 0;
  padding: 38px;
  overflow: hidden;
  border: 1px solid rgba(4, 149, 78, 0.58);
  border-radius: 16px;
  background:
    radial-gradient(
      circle at 12% 50%,
      rgba(4, 149, 78, 0.18),
      transparent 15rem
    ),
    linear-gradient(
      145deg,
      rgba(22, 29, 24, 0.98),
      rgba(6, 9, 7, 0.99)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 42px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.policy-summary::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--green);
}

.policy-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  border: 2px solid var(--green);
  border-radius: 17px;
  background: rgba(0, 0, 0, 0.25);
  box-shadow:
    inset 0 0 28px rgba(4, 149, 78, 0.09),
    0 13px 28px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-align: center;
}

.policy-badge strong {
  display: block;
  color: var(--green-light);
  font-size: 3.4rem;
  line-height: 0.8;
}

.policy-badge span {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.summary-copy > span {
  display: block;
  margin-bottom: 9px;
  color: var(--green-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.summary-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.summary-copy p {
  margin: 17px 0 0;
  color: #c0cac4;
  font-size: 1rem;
  line-height: 1.72;
}

.policy-paper {
  margin: 26px auto 0;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  background: var(--paper);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  color: var(--paper-text);
  text-align: left;
}

.policy-content {
  color-scheme: light;
}

.policy-content h1 {
  margin: 0;
  padding-bottom: 32px;
  border-bottom: 4px solid var(--green);
  color: #111312;
  font-size: clamp(2rem, 5vw, 3.45rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-align: center;
}

.policy-content h2 {
  margin: 0;
  padding-top: 30px;
  color: #161817;
  font-size: 1.28rem;
  line-height: 1.35;
}

.policy-content h2:not(:first-of-type) {
  margin-top: 30px;
  border-top: 1px solid var(--paper-line);
}

.policy-content p {
  margin: 13px 0 0;
  color: #353a37;
  font-size: 0.98rem;
  line-height: 1.76;
}

.policy-content strong {
  color: #171918;
}

.policy-content ul,
.policy-content ol {
  margin: 15px 0 0;
  padding-left: 25px;
  color: #353a37;
}

.policy-content li {
  margin: 9px 0;
  padding-left: 4px;
  color: #353a37;
  font-size: 0.98rem;
  line-height: 1.65;
}

.policy-content a {
  color: #056f3c;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid var(--paper-line);
}

.policy-loading,
.policy-error {
  margin: 0;
  color: var(--paper-muted);
  line-height: 1.7;
  text-align: center;
}

.policy-error {
  color: #8a1f1f;
}

.paper-footer {
  margin-top: 35px;
  padding-top: 24px;
  border-top: 4px solid var(--green);
  text-align: center;
}

.paper-footer strong {
  display: block;
  color: #171918;
  font-size: 1rem;
}

.paper-footer span {
  display: block;
  margin-top: 8px;
  color: #59605c;
  font-size: 0.83rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.paper-footer .paper-slogan {
  margin-top: 18px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

footer {
  padding: 28px clamp(18px, 5vw, 44px) 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #89958e;
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
}

footer::before {
  content: "";
  display: block;
  width: min(300px, 76vw);
  aspect-ratio: 3 / 2;
  margin: 0 auto 8px;
  background: url("footerharpelogo.png") center / contain no-repeat;
}

.footer_inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.footer_links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin: 0 auto;
}

.footer_links a {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #b7c1bb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-decoration: none;
  text-transform: none;
  transition: color 160ms ease;
}

.footer_links a:hover,
.footer_links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: var(--green);
  text-underline-offset: 4px;
}

.footer_tagline {
  margin-top: 20px;
  color: var(--green-light);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer_copyright {
  margin-top: 9px;
  color: #7f8b84;
  font-size: 0.76rem;
}

@media (max-width: 900px) {
  .page-wrap {
    align-items: flex-start;
    padding: 22px;
  }

  .h1-hero-grid {
    grid-template-columns: 1fr;
  }

  .h1-copy {
    padding: 38px 30px 42px;
  }

  .speaker-display {
    min-height: auto;
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .page-wrap {
    padding: 12px;
  }

  .site-card {
    border-radius: 18px;
  }

  .content {
    padding: 24px 18px 38px;
  }

  .logo,
  .internal .logo {
    width: min(100%, 520px);
    margin-bottom: 20px;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 30px;
  }

  .nav a {
    min-height: 44px;
    padding: 8px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  h1,
  .internal h1 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
    line-height: 1;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-button,
  .primary-link {
    min-height: 52px;
    padding: 0 21px;
    font-size: 0.75rem;
  }

  .page-copy {
    margin-top: 24px;
  }

  .content-section,
  .product-card {
    padding: 21px;
  }

  .feature-grid,
  .standards-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .standards-grid {
    gap: 15px;
    margin-top: 30px;
  }

  .standard-card {
    min-height: auto;
    padding: 24px 22px 22px;
  }

  .standard-card:last-child {
    grid-column: auto;
    min-height: auto;
    text-align: left;
  }

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

  .benefit-grid {
    gap: 14px;
  }

  .benefit-card {
    min-height: auto;
    padding: 26px 23px 25px;
  }

  .warranty-panel,
  .policy-summary {
    grid-template-columns: 1fr;
    gap: 23px;
    padding: 31px 24px;
    text-align: center;
  }

  .warranty-badge,
  .policy-badge {
    margin: 0 auto;
  }

  .policy-paper {
    padding: 31px 24px;
  }

  footer {
    padding: 24px 18px 27px;
  }

  footer::before {
    width: min(250px, 72vw);
    margin-bottom: 8px;
  }

  .footer_links {
    gap: 9px 16px;
  }

  .footer_links a {
    font-size: 0.76rem;
  }
}

@media (max-width: 480px) {
  .page-wrap {
    padding: 7px;
  }

  .site-card {
    border-radius: 14px;
  }

  .content {
    padding: 19px 14px 32px;
  }

  .logo,
  .internal .logo {
    width: 100%;
    margin-bottom: 17px;
  }

  .nav {
    gap: 7px;
    margin-bottom: 27px;
  }

  .nav a {
    min-height: 43px;
    padding: 7px 5px;
    font-size: 0.61rem;
    letter-spacing: 0.065em;
  }

  .eyebrow {
    margin-bottom: 11px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .lead {
    margin-top: 18px;
  }

  .divider {
    margin: 27px auto;
  }

  .contact-button,
  .primary-link {
    width: 100%;
    min-height: 52px;
    margin-top: 25px;
    padding: 8px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .content-section,
  .product-card,
  .standard-card {
    padding: 20px 18px;
  }

  .h1-hero {
    margin-top: 30px;
    border-radius: 14px;
  }

  .h1-copy {
    padding: 31px 21px 36px;
  }

  .h1-copy h2 {
    font-size: 4.15rem;
  }

  .h1-tagline {
    font-size: 1.05rem;
  }

  .speaker-display {
    padding: 14px;
  }

  .speaker-stage {
    padding: 8px;
  }

  .icon-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .icon-spec {
    min-height: 142px;
    padding: 18px 8px;
  }

  .icon-spec svg {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .icon-spec strong {
    font-size: 0.73rem;
  }

  .icon-spec span {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .benefits-heading {
    margin-top: 46px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .warranty-panel,
  .policy-summary {
    padding: 28px 20px;
  }

  .closing-section {
    margin-top: 45px;
  }

  .policy-paper {
    padding: 27px 20px;
    border-radius: 12px;
  }

  .policy-content h1 {
    padding-bottom: 25px;
    font-size: 2rem;
  }

  .policy-content h2 {
    font-size: 1.16rem;
  }

  .policy-content p,
  .policy-content li {
    font-size: 0.94rem;
  }

  footer {
    padding: 22px 14px 25px;
  }

  footer::before {
    width: min(220px, 74vw);
    margin-bottom: 8px;
  }

  .footer_links {
    display: flex;
    gap: 8px 14px;
  }

  .footer_links a {
    display: inline;
    width: auto;
    padding: 0;
    border: 0;
    background: none;
    font-size: 0.73rem;
  }

  .footer_tagline {
    margin-top: 18px;
    font-size: 0.67rem;
    letter-spacing: 0.09em;
  }

  .footer_copyright {
    font-size: 0.71rem;
  }
}

@media (max-width: 360px) {
  .content {
    padding-right: 12px;
    padding-left: 12px;
  }

  .nav a {
    font-size: 0.58rem;
    letter-spacing: 0.045em;
  }

  .h1-copy {
    padding-right: 18px;
    padding-left: 18px;
  }

  .icon-spec {
    min-height: 138px;
  }

  .footer_links {
    gap: 8px 12px;
  }
}

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

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

@page {
  margin: 0.65in;
}

@media print {
  html {
    color-scheme: light;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  .page-wrap {
    display: block;
    min-height: 0;
    padding: 0;
  }

  .site-card {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: #ffffff;
    box-shadow: none;
  }

  .content {
    padding: 0;
  }

  .logo-link,
  .nav,
  .policy-intro,
  .policy-summary,
  footer {
    display: none;
  }

  .policy-page {
    max-width: none;
  }

  .policy-paper {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .policy-content h2,
  .policy-content p,
  .policy-content ul,
  .policy-content ol {
    break-inside: avoid;
  }

  .policy-content a {
    color: #000000;
    text-decoration: none;
  }
}

/* H1 ordering */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.hero-actions .primary-link,
.hero-actions .contact-button {
  margin-top: 0;
}

.product-price {
  display: grid;
  gap: 5px;
  align-self: flex-start;
  margin-top: 26px;
  padding: 18px 20px;
  border: 1px solid rgba(4, 149, 78, 0.62);
  border-radius: 11px;
  background: rgba(4, 149, 78, 0.09);
}

.product-price span {
  color: var(--green-light);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-price strong {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.product-price small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.order-page {
  max-width: 850px;
  margin: 0 auto;
}

.order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(4, 149, 78, 0.62);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(20, 28, 23, 0.98), rgba(6, 9, 7, 0.99));
  text-align: left;
}

.order-summary h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.6rem;
}

.order-summary p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.order-price {
  color: var(--green-light);
  font-size: 2.5rem;
  font-weight: 900;
}

.order-form {
  display: grid;
  gap: 19px;
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  text-align: left;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: #0b100d;
  color: #ffffff;
  font: inherit;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 3px solid rgba(4, 149, 78, 0.28);
  border-color: var(--green);
}

.order-notice {
  margin: 0;
  padding: 15px 17px;
  border-left: 4px solid var(--green);
  background: rgba(4, 149, 78, 0.08);
  color: #c8d2cc;
  font-size: 0.9rem;
  line-height: 1.6;
}

.order-form .primary-link {
  border: 0;
  cursor: pointer;
}

.order-fallback {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.order-fallback a {
  color: var(--green-light);
}

@media (max-width: 700px) {
  .hero-actions,
  .form-grid,
  .order-summary {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .order-form {
    padding: 23px 19px;
  }

  .order-price {
    font-size: 2.2rem;
  }
}
