:root {
  --paper: #f3f1ea;
  --white: #fff;
  --ink: #151714;
  --muted: #70746c;
  --line: rgba(21, 23, 20, 0.14);
  --green: #0d7f35;
  --green-bright: #56e579;
  --night: #101310;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(26, 32, 26, 0.11);
  --content: min(1120px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
a,
button {
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
a {
  touch-action: manipulation;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 15px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: none;
}

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

.scroll-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0d7f35 0%, #56e579 72%, #d9ffe3 100%);
  box-shadow: 0 0 16px rgba(86, 229, 121, 0.58);
}

.scroll-progress.is-scrolling span {
  will-change: transform;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(86, 229, 121, 0.16);
  background: #000;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(86, 229, 121, 0.28);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.24);
}

.header-inner {
  width: var(--content);
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  overflow: visible;
  box-shadow: none;
}

.brand img {
  width: auto;
  height: 42px;
  max-width: none;
  object-fit: contain;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.01);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(86, 229, 121, 0.76);
  border-radius: 50%;
  color: var(--green-bright);
  background: rgba(86, 229, 121, 0.06);
  box-shadow: inset 0 0 0 1px rgba(86, 229, 121, 0.04);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.header-phone:hover {
  transform: translateY(-1px);
  border-color: var(--green-bright);
  background: rgba(86, 229, 121, 0.13);
  box-shadow: 0 0 0 4px rgba(86, 229, 121, 0.08);
}

.header-phone svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  color: white;
  background: var(--ink);
  font-size: 14px;
}

.site-header .button-small {
  border: 1px solid rgba(86, 229, 121, 0.76);
  color: white;
  background: rgba(86, 229, 121, 0.06);
  box-shadow: inset 0 0 0 1px rgba(86, 229, 121, 0.04);
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header .button-small:hover {
  border-color: var(--green-bright);
  color: var(--night);
  background: var(--green-bright);
  box-shadow: 0 10px 26px rgba(86, 229, 121, 0.18);
}

.button-primary {
  width: 100%;
  min-height: 58px;
  color: white;
  background: var(--ink);
}

.button-primary svg {
  width: 18px;
  height: 18px;
}

.hero {
  width: var(--content);
  margin: 0 auto;
  padding: 54px 0 0;
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2 {
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(43px, 12vw, 72px);
}

h1 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #555a53;
  font-size: 18px;
  line-height: 1.55;
}

.hero-cta {
  display: grid;
  gap: 18px;
  align-items: center;
}

.text-link {
  justify-self: center;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
  color: var(--green);
}

.allergy-highlight {
  max-width: 560px;
  margin-top: 30px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(13, 127, 53, 0.22);
  border-left: 3px solid var(--green);
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(13, 127, 53, 0.08), rgba(86, 229, 121, 0.025));
  box-shadow: 0 16px 38px rgba(24, 57, 32, 0.07);
}

.allergy-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(13, 127, 53, 0.1);
}

.allergy-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.6;
}

.allergy-highlight h2 {
  margin: 0 0 5px;
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.allergy-highlight p {
  margin: 0;
  color: #626860;
  font-size: 11px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 0;
  margin-top: 44px;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: var(--radius);
  background: #d7d5d0;
  box-shadow: var(--shadow);
}

.hero-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 15, 12, 0.02) 42%, rgba(12, 15, 12, 0.42));
  pointer-events: none;
}

.air-reading {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  width: 112px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 22px;
  color: white;
  background: rgba(8, 12, 8, 0.8);
  box-shadow: inset 0 0 28px rgba(33, 255, 104, 0.09);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.reading-label {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.air-reading strong {
  display: block;
  margin: 4px 0;
  font-family: "Courier New", monospace;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
}

.reading-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
}

.reading-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 13px var(--green-bright);
}

.air-loop {
  position: absolute;
  z-index: 2;
  left: 8%;
  bottom: 20%;
  width: 76%;
  height: 58%;
  border: 1px solid rgba(108, 255, 142, 0.5);
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(78, 255, 124, 0.45));
  opacity: 0.55;
  pointer-events: none;
  animation: breathe 5s ease-in-out infinite;
}

.air-loop-two {
  inset: auto auto 13% -5%;
  width: 98%;
  height: 74%;
  animation-delay: -2.5s;
}

.spec-rail {
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-rail div {
  min-height: 108px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.spec-rail strong,
.spec-rail span {
  display: block;
}

.spec-rail strong {
  margin-bottom: 4px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.spec-rail span {
  color: var(--muted);
  font-size: 12px;
}

.section-pad {
  padding: 96px max(20px, calc((100% - 1120px) / 2));
}

.statement {
  overflow: hidden;
  background: white;
}

.statement-inner h2,
.section-heading h2,
.sensor-copy h2,
.quiet-copy h2,
.review-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 12vw, 84px);
}

.statement-inner > p:last-child,
.sensor-copy > p,
.quiet-copy > p,
.review-copy > p {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.process {
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.process-item {
  position: relative;
  padding: 30px 0 32px 70px;
  border-bottom: 1px solid var(--line);
}

.process-number {
  position: absolute;
  top: 34px;
  left: 0;
  color: #a7aaa3;
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.process-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 127, 53, 0.28);
  border-radius: 50%;
  color: var(--green);
}

.process-icon svg {
  width: 29px;
  height: 29px;
}

.process-item h3 {
  margin-bottom: 10px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.filter-story {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--night);
}

.filter-story::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -22%;
  width: 90vw;
  height: 90vw;
  border: 1px solid rgba(82, 255, 126, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(45, 199, 83, 0.08);
}

.eyebrow-light {
  color: #86ed9e;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.filter-figure {
  position: relative;
  z-index: 1;
  margin: 44px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.32);
}

.filter-figure img,
.sensor-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.filter-list {
  position: relative;
  z-index: 1;
  margin-top: 28px;
}

.filter-list div {
  padding: 19px 0;
  display: grid;
  grid-template-columns: 45px 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.filter-list span {
  color: #77d98e;
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.filter-list p,
.filter-list strong {
  display: block;
}

.filter-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.filter-list strong {
  margin-bottom: 4px;
  color: white;
  font-size: 17px;
}

.sensor-story {
  background: #e8ebe4;
}

.check-list {
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.check-list li {
  min-height: 58px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(21, 23, 20, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 650;
}

.check-list span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 10px;
}

.sensor-image {
  margin: 42px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quiet-story {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--night);
}

.quiet-story::before {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: -34vw;
  width: min(78vw, 720px);
  height: min(78vw, 720px);
  border: 1px solid rgba(86, 229, 121, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(86, 229, 121, 0.06);
}

.quiet-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.quiet-copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.sound-scale {
  max-width: 620px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 8px 16px;
}

.sound-scale span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  text-transform: uppercase;
}

.sound-scale strong {
  grid-column: 1 / -1;
  color: #86ed9e;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.sound-scale > div {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.13);
}

.sound-scale i {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green-bright), #dafbe2);
  box-shadow: 0 0 20px rgba(86, 229, 121, 0.5);
}

.features-section {
  background: white;
}

.features-intro {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  margin-top: 42px;
  display: grid;
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 218px;
  padding: 24px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(21, 23, 20, 0.09);
  border-radius: 24px;
  background: #f1f2ed;
}

.feature-card::after {
  content: "";
  position: absolute;
  top: -82px;
  right: -82px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(13, 127, 53, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(13, 127, 53, 0.17);
  border-radius: 18px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.72);
}

.feature-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 1.6;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  margin: 24px 0 7px;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.feature-card-primary {
  min-height: 330px;
  color: white;
  background: radial-gradient(circle at 83% 22%, rgba(86, 229, 121, 0.19), transparent 34%), var(--night);
}

.feature-card-primary::after {
  top: 50%;
  right: -70px;
  width: 260px;
  height: 260px;
  border-color: rgba(86, 229, 121, 0.14);
  transform: translateY(-50%);
}

.feature-card-primary .feature-icon {
  width: 68px;
  height: 68px;
  border-color: rgba(134, 237, 158, 0.24);
  color: #86ed9e;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 48px rgba(86, 229, 121, 0.08);
}

.feature-card-primary .feature-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 2;
}

.feature-card-primary h3 {
  font-size: clamp(28px, 8vw, 42px);
}

.feature-card-primary p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.feature-kicker {
  position: absolute;
  z-index: 1;
  top: 25px;
  right: 25px;
  color: #86ed9e;
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.feature-status {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
}

.feature-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 13px rgba(86, 229, 121, 0.8);
}

.feature-card-light {
  background: linear-gradient(145deg, #edf1e9, #e2e6df);
}

.feature-card-light .feature-icon {
  margin-bottom: 0;
}

.feature-spectrum {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 5px;
  margin: 20px 0 auto;
  flex: 0 0 auto;
  border-radius: 99px;
  background: linear-gradient(90deg, #ff7068, #ffc45b, #e5ef63, #56e579, #67d9e8, #7995ff, #c878ea);
  opacity: 0.78;
}

.feature-languages {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 24px;
  display: flex;
  gap: 6px;
}

.feature-languages span {
  min-width: 36px;
  padding: 7px 8px;
  border: 1px solid rgba(13, 127, 53, 0.16);
  border-radius: 10px;
  color: var(--green);
  background: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
  text-align: center;
}

.review {
  background: var(--paper);
}

.review-card {
  position: relative;
  min-height: 460px;
  margin-top: 40px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9d7d2;
  box-shadow: var(--shadow);
}

.review-card::after {
  display: none;
}

.review-card > iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: white;
  background: rgba(11, 14, 11, 0.7);
  box-shadow: 0 0 0 12px rgba(255, 255, 255, 0.11);
}

.play-button svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
  stroke: none;
}

.review-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.review-label strong {
  display: block;
  margin-bottom: 5px;
  color: white;
  font-size: 18px;
}

.product-offer {
  background: #e8ebe4;
}

.offer-card {
  overflow: hidden;
  border: 2px solid rgba(13, 127, 53, 0.72);
  border-radius: 30px;
  background: white;
  box-shadow: 0 28px 90px rgba(23, 36, 25, 0.13);
}

.offer-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 127, 53, 0.18);
  background: #d8d0c4;
}

.offer-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.offer-card:hover .offer-media img {
  transform: scale(1.015);
}

.offer-badge {
  position: absolute;
  z-index: 2;
  top: 20px;
  min-height: 38px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.offer-badge-primary {
  left: 20px;
  color: white;
  background: rgba(13, 127, 53, 0.94);
  box-shadow: 0 10px 28px rgba(13, 127, 53, 0.2);
}

.offer-badge-secondary {
  top: 66px;
  right: auto;
  left: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
}

.offer-body {
  padding: 34px 24px 26px;
}

.offer-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(40px, 11vw, 62px);
}

.offer-heading > p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.offer-specs {
  margin: 30px 0 0;
  padding: 16px 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.offer-specs li {
  position: relative;
  padding: 10px 0 10px 18px;
  display: grid;
  grid-template-columns: minmax(82px, 0.58fr) minmax(0, 1.42fr);
  gap: 12px;
  align-items: start;
}

.offer-specs li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(13, 127, 53, 0.08);
}

.offer-specs span,
.offer-specs strong {
  font-size: 13px;
  line-height: 1.45;
}

.offer-specs span {
  color: var(--muted);
}

.offer-specs strong {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.offer-capabilities {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.offer-capability {
  min-height: 78px;
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(13, 127, 53, 0.18);
  border-radius: 17px;
  background: #f7faf6;
}

.offer-capability-icon,
.offer-gift-icon,
.offer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.offer-capability-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--green);
  background: rgba(13, 127, 53, 0.1);
}

.offer-capability-icon svg,
.offer-gift-icon svg,
.offer-contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-capability p,
.offer-capability small,
.offer-capability strong,
.offer-gift p,
.offer-gift small,
.offer-gift strong {
  display: block;
  margin: 0;
}

.offer-capability small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-capability strong {
  font-size: 13px;
  line-height: 1.4;
}

.offer-gift {
  margin-top: 18px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #0d7f35 0%, #119a44 100%);
  box-shadow: 0 16px 34px rgba(13, 127, 53, 0.2);
}

.offer-gift-icon {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
}

.offer-gift small {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-gift strong {
  font-size: 16px;
  line-height: 1.25;
}

.offer-purchase-row {
  padding: 22px 0 18px;
  display: grid;
  gap: 12px;
}

.offer-price {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.offer-price small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-price strong {
  font-size: clamp(26px, 7.3vw, 36px);
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.offer-price strong span {
  color: var(--green);
}

.offer-price-values {
  display: grid;
  justify-items: end;
  gap: 7px;
}

.offer-monthly {
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.offer-installment {
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(13, 127, 53, 0.24);
  border-radius: 17px;
  color: var(--green);
  background: linear-gradient(135deg, rgba(13, 127, 53, 0.09), rgba(13, 127, 53, 0.035));
}

.offer-installment svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-installment p,
.offer-installment small,
.offer-installment strong {
  display: block;
  margin: 0;
}

.offer-installment small {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-installment strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
}

.offer-assurances {
  display: grid;
  gap: 10px;
}

.offer-delivery,
.offer-warranty {
  padding: 14px 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(13, 127, 53, 0.2);
  border-radius: 17px;
  color: var(--green);
  background: rgba(13, 127, 53, 0.06);
}

.offer-delivery svg,
.offer-warranty svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.offer-delivery p,
.offer-delivery small,
.offer-delivery strong,
.offer-warranty p,
.offer-warranty small,
.offer-warranty strong {
  display: block;
  margin: 0;
}

.offer-delivery small,
.offer-warranty small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offer-delivery strong,
.offer-warranty strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.35;
}

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

.offer-action {
  min-height: 56px;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.offer-action:hover {
  transform: translateY(-2px);
}

.offer-action svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.offer-action > span {
  color: currentColor;
  font-size: 16px;
  line-height: 1;
}

.offer-action-primary {
  color: white;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(13, 127, 53, 0.18);
}

.offer-action-primary:hover {
  background: #0a6f2e;
}

.offer-action-dark {
  color: white;
  background: var(--night);
}

.offer-action-light {
  border-color: rgba(13, 127, 53, 0.22);
  color: var(--green);
  background: rgba(13, 127, 53, 0.055);
}

.offer-action-light:hover {
  border-color: rgba(13, 127, 53, 0.46);
  background: rgba(13, 127, 53, 0.1);
}

.offer-contact-panel {
  margin-top: 22px;
  padding: 30px 22px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 8% 0%, rgba(34, 197, 94, 0.2), transparent 34%),
    #090d0a;
  box-shadow: 0 26px 70px rgba(7, 12, 8, 0.18);
}

.offer-contact-intro {
  padding: 0 3px 24px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.54);
}

.offer-contact-intro h2 {
  max-width: 560px;
  margin: 0 0 10px;
  color: white;
  font-size: clamp(34px, 9vw, 54px);
}

.offer-contact-intro > p:last-child {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.offer-contact-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
}

.offer-contact {
  min-height: 92px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  color: white;
  background: rgba(9, 13, 10, 0.94);
  transition: background-color 180ms ease, color 180ms ease;
}

.offer-contact:hover {
  color: white;
  background: rgba(13, 127, 53, 0.38);
}

.offer-contact small,
.offer-contact strong {
  display: block;
  overflow-wrap: anywhere;
}

.offer-contact > span {
  overflow-wrap: anywhere;
}

.offer-contact small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-contact strong {
  font-size: 14px;
}

.offer-contact > .offer-contact-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 16px;
  color: #57d47e;
  background: rgba(13, 127, 53, 0.18);
}

.offer-contact-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.9;
}

.offer-contact-arrow {
  color: #57d47e;
  font-size: 19px;
}

.site-footer {
  padding: 58px 20px 122px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--night);
}

.site-footer > img {
  width: auto;
  height: 56px;
  margin-left: 0;
  border-radius: 16px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.site-footer p {
  margin: 10px 0 32px;
  max-width: 240px;
}

.footer-nav {
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.footer-documents {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-documents-title {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-document-links {
  display: grid;
  gap: 10px;
}

.footer-document {
  min-height: 66px;
  padding: 11px 13px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(86, 229, 121, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), border-color 180ms ease, background-color 180ms ease;
}

.footer-document:hover {
  transform: translateY(-2px);
  border-color: rgba(86, 229, 121, 0.48);
  background: rgba(86, 229, 121, 0.08);
}

.footer-document-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--green-bright);
  background: rgba(86, 229, 121, 0.09);
}

.footer-document-icon svg {
  width: 22px;
  height: 22px;
}

.footer-document strong,
.footer-document small {
  display: block;
}

.footer-document strong {
  color: white;
  font-size: 13px;
}

.footer-document small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 10px;
}

.site-footer small {
  display: block;
  margin-top: 24px;
  font-size: 10px;
}

.mobile-order {
  position: fixed;
  z-index: 60;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  min-height: 68px;
  padding: 11px 14px 11px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: white;
  background: rgba(16, 19, 16, 0.94);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  font-size: 15px;
  font-weight: 750;
  transition: opacity 180ms ease, transform 180ms ease;
}

body.order-in-view .mobile-order {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}

.mobile-order span {
  display: block;
}

.mobile-order i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--ink);
  background: var(--green-bright);
  font-style: normal;
}

.reveal {
  --reveal-delay: 0ms;
  --reveal-x: 0px;
  --reveal-y: 36px;
  --reveal-scale: 0.985;
  opacity: 0;
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
}

.reveal[data-reveal="scale"] {
  --reveal-y: 24px;
  --reveal-scale: 0.965;
}

.reveal.is-animating {
  will-change: transform, opacity;
}

.reveal.is-initial {
  transition: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.97);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.62;
  }
}

@media (min-width: 960px) {
  :root {
    --content: min(1120px, calc(100% - 80px));
  }

  .header-inner {
    height: 82px;
  }

  .brand img {
    height: 48px;
  }

  .hero {
    padding-top: 72px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
    gap: 38px 54px;
    align-items: center;
  }

  .hero-visual {
    min-height: 680px;
    margin: 0;
    aspect-ratio: auto;
  }

  .hero-picture {
    position: absolute;
    inset: 0;
  }

  .hero-picture > img {
    height: 100%;
    object-fit: cover;
    object-position: 42% center;
  }

  .air-reading {
    right: 18px;
    bottom: 18px;
    width: 132px;
    padding: 16px 18px;
  }

  .air-reading strong {
    font-size: 38px;
  }

  .hero-cta {
    grid-template-columns: auto auto;
    justify-content: start;
  }

  .button-primary {
    width: auto;
    padding: 0 28px;
  }

  .spec-rail {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, 1fr);
  }

  .section-pad {
    padding-top: 132px;
    padding-bottom: 132px;
  }

  .statement {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
  }

  .process {
    margin-top: 0;
  }

  .filter-story {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 24px 70px;
    align-items: start;
  }

  .filter-figure {
    grid-row: span 2;
    margin-top: 0;
  }

  .filter-figure,
  .sensor-image {
    width: 100%;
    max-width: 680px;
    justify-self: center;
  }

  .filter-list {
    margin-top: 10px;
  }

  .sensor-story,
  .review {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 80px;
    align-items: center;
  }

  .sensor-image,
  .review-card {
    margin-top: 0;
  }

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

  .feature-card-primary {
    grid-column: 1 / -1;
  }

  .review-card {
    min-height: 620px;
  }

  .offer-card {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  }

  .offer-media,
  .offer-media img {
    min-height: 760px;
  }

  .offer-media {
    border-right: 1px solid rgba(13, 127, 53, 0.18);
    border-bottom: 0;
  }

  .offer-media img {
    padding: 20px;
  }

  .offer-body {
    padding: 62px 52px 48px;
  }

  .offer-heading h2 {
    font-size: 56px;
  }

  .offer-specs {
    margin-top: 38px;
  }

  .offer-purchase-row {
    align-items: stretch;
  }

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

  .offer-price {
    padding: 14px 0;
  }

  .offer-action {
    min-height: 60px;
    font-size: 14px;
  }

  .offer-contact-panel {
    padding: 42px;
  }

  .offer-contact-intro {
    padding: 0 4px 30px;
  }

  .offer-contact-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    padding-right: max(40px, calc((100% - 1120px) / 2));
    padding-bottom: 70px;
    padding-left: max(40px, calc((100% - 1120px) / 2));
  }

  .footer-document-links {
    max-width: 720px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-order {
    display: none;
  }

  .reveal[data-reveal="left"] {
    --reveal-x: -30px;
    --reveal-y: 10px;
  }

  .reveal[data-reveal="right"] {
    --reveal-x: 30px;
    --reveal-y: 10px;
  }
}

@media (min-width: 1100px) {
  .hero-visual {
    min-height: 720px;
  }

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

  .feature-card-primary {
    grid-column: span 2;
  }

  .process-item {
    padding-right: 60px;
  }

  .filter-story {
    grid-template-columns: 0.62fr 1.38fr;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .reveal.is-animating,
  .scroll-progress.is-scrolling span {
    will-change: auto;
  }
}
