@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #182124;
  --ink-soft: #4e5958;
  --paper: #f6f5f1;
  --white: #ffffff;
  --line: #dde1dc;
  --green: #58b416;
  --green-dark: #2f8e08;
  --green-bright: #8bdc34;
  --orange: #f4a900;
  --radius-lg: 34px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

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

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

.skip-link {
  position: fixed;
  left: 20px;
  top: -80px;
  z-index: 100;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 20px;
}

.content-grid {
  width: min(1240px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(24, 33, 36, 0.08);
  background: rgba(246, 245, 241, 0.88);
  box-shadow: 0 8px 30px rgba(24, 33, 36, 0.035);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1360px, calc(100% - 48px));
  min-height: 80px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 24px;
}

.brand img,
.footer-brand img {
  width: 154px;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 1px;
  height: 2px;
  background: var(--green);
  transition: right 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.css-arrow {
  position: relative;
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  flex: 0 0 0.9em;
  color: inherit;
  transform-origin: center;
}

.css-arrow::before,
.css-arrow::after {
  content: "";
  position: absolute;
  display: block;
}

.css-arrow::before {
  left: 0.06em;
  top: calc(50% - 0.055em);
  width: 0.72em;
  height: 0.11em;
  border-radius: 999px;
  background: currentColor;
}

.css-arrow::after {
  right: 0.05em;
  top: 50%;
  width: 0.38em;
  height: 0.38em;
  border-top: 0.11em solid currentColor;
  border-right: 0.11em solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.css-arrow--right {
  transform: rotate(0deg);
}

.css-arrow--up-right {
  transform: rotate(-45deg);
}

.css-arrow--down {
  transform: rotate(90deg);
}

.css-arrow--up {
  transform: rotate(-90deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 74px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: fade-up 0.8s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(58px, 6.7vw, 100px);
  font-weight: 590;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.hero h1 span {
  display: block;
  color: var(--green);
}

.hero-lead {
  max-width: 580px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(110deg, var(--green-bright), var(--green-dark));
  color: white;
  box-shadow: 0 14px 34px rgba(67, 156, 16, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(67, 156, 16, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.play-dot {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 8px;
  padding-left: 1px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 32px;
  color: #65706e;
  font-size: 12px;
  font-weight: 650;
}

.hero-proof span::before {
  content: "✓";
  color: var(--green-dark);
  margin-right: 8px;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  z-index: 1;
  padding: 30px 10px 38px 0;
  animation: fade-in 1s 0.14s ease both;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 46px 8px 46px 46px;
  box-shadow: 0 34px 80px rgba(34, 54, 43, 0.18);
}

.hero-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(43, 134, 2, 0.12));
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.025);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(24, 33, 36, 0.13);
  backdrop-filter: blur(18px);
}

.eco-card {
  left: -48px;
  bottom: 6px;
  max-width: 270px;
  padding: 14px 18px;
  animation: float 5s ease-in-out infinite;
}

.floating-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #e9f7df;
  color: var(--green-dark);
  font-size: 22px;
}

.floating-card p {
  margin: 0;
  color: #62706a;
  font-size: 11px;
  line-height: 1.4;
}

.floating-card strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}

.format-card {
  right: -16px;
  top: 0;
  display: block;
  padding: 14px 18px;
}

.format-card strong {
  font-size: 21px;
}

.format-card span {
  display: block;
  color: #65706e;
  font-size: 10px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb-one {
  width: 560px;
  height: 560px;
  right: -210px;
  top: -260px;
  background: radial-gradient(circle at 40% 40%, rgba(139, 220, 52, 0.24), rgba(47, 142, 8, 0));
}

.hero-orb-two {
  width: 380px;
  height: 380px;
  left: -230px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(244, 169, 0, 0.13), transparent 68%);
}

.trust-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: white;
  padding: 22px 0;
}

.trust-track {
  width: min(1420px, calc(100% - 48px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: #46504e;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.section {
  padding: clamp(92px, 10vw, 150px) 0;
}

.section-heading h2,
.story-copy h2,
.ergonomics-copy h2,
.eco-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.split-heading,
.video-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.split-heading > p,
.video-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

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

.benefit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(33, 52, 41, 0.1);
}

.benefit-image {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #edf0eb);
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.benefit-card:hover .benefit-image img {
  transform: scale(1.025);
}

.benefit-copy {
  padding: 28px;
}

.benefit-card h3 {
  max-width: 290px;
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.benefit-card p {
  max-width: 320px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.product-story {
  background: white;
}

.product-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.story-visual {
  position: relative;
  padding: 0 70px 70px 0;
}

.story-image-main,
.story-image-detail {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #eef0ec;
}

.story-image-main img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.story-image-main:hover img {
  transform: scale(1.035);
}

.story-image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 47%;
  border: 8px solid white;
  box-shadow: 0 24px 60px rgba(23, 39, 28, 0.15);
}

.story-image-detail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.story-copy > p:not(.eyebrow),
.ergonomics-copy > p:not(.eyebrow),
.eco-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.feature-list {
  margin: 36px 0 30px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 14px;
  font-weight: 620;
}

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

.feature-list span {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 7px;
  font-size: 14px;
  font-weight: 750;
}

.ergonomics-section {
  overflow: hidden;
  background: var(--ink);
  color: white;
}

.ergonomics-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

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

.ergonomics-copy > p:not(.eyebrow),
.eco-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.metric-grid {
  margin-top: 46px;
}

.metric {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 20px 0;
}

.metric:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.metric strong {
  color: var(--green-bright);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.metric span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.ergonomics-image {
  position: relative;
}

.ergonomics-image::before {
  content: "";
  position: absolute;
  inset: -24px 34px 28px -30px;
  border: 1px solid rgba(139, 220, 52, 0.4);
  border-radius: 38px;
}

.ergonomics-image img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
}

.posture-label {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: min(310px, 64%);
  border-radius: 20px;
  background: linear-gradient(120deg, var(--green-bright), var(--green-dark));
  padding: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.posture-label span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 850;
}

.posture-label p {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.video-section {
  background: #eef0ec;
}

.video-shell {
  position: relative;
  overflow: hidden;
  margin-top: 62px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  box-shadow: 0 32px 80px rgba(31, 48, 39, 0.14);
}

.video-shell::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.eco-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(122deg, #8bdd34 0%, #52ad12 52%, #287f05 100%);
  color: white;
}

.eco-section::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  right: -320px;
  top: -340px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.eco-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 80px;
}

.eco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.eco-tags span {
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  padding: 9px 13px;
  font-size: 11px;
  font-weight: 700;
}

.button-light {
  margin-top: 34px;
  background: white;
  color: var(--ink);
}

.eco-product {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.eco-product img {
  position: relative;
  z-index: 2;
  width: min(650px, 95%);
  border-radius: 24px;
  filter: drop-shadow(0 42px 38px rgba(21, 66, 5, 0.25));
  transform: rotate(-3deg);
  transition: transform 0.7s ease;
}

.eco-product:hover img {
  transform: rotate(0deg) translateY(-8px);
}

.eco-halo {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.055), 0 0 0 84px rgba(255, 255, 255, 0.03);
}

.made-badge {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 14%;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 760;
  box-shadow: 0 12px 30px rgba(27, 74, 8, 0.16);
}

.final-cta {
  background: white;
}

.final-cta-inner {
  max-width: 960px;
  text-align: center;
}

.final-cta h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(50px, 6.5vw, 88px);
}

.final-actions {
  justify-content: center;
}

.final-actions > span {
  color: var(--ink-soft);
  font-size: 12px;
}

.site-footer {
  background: var(--ink);
  color: white;
  padding: 74px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.58);
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.footer-youtube svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.footer-youtube:hover,
.footer-youtube:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: var(--green-bright);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 70px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 180px 1fr 190px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(56px, 8vw, 78px);
  }

  .eco-card {
    left: -10px;
  }

  .split-heading,
  .video-heading {
    gap: 45px;
  }
}

@media (max-width: 860px) {
  .content-grid,
  .header-inner,
  .trust-track {
    width: min(100% - 32px, 680px);
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
    position: relative;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 54px;
    width: 230px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    padding: 12px;
    box-shadow: 0 22px 60px rgba(24, 33, 36, 0.16);
  }

  .mobile-menu nav a {
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 13px;
    font-weight: 650;
  }

  .mobile-menu nav a:hover {
    background: #f0f4ed;
  }

  .hero {
    min-height: auto;
    padding: 66px 0 84px;
  }

  .hero-grid,
  .product-story-grid,
  .ergonomics-grid,
  .eco-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-visual {
    margin-top: 12px;
    padding-left: 42px;
  }

  .hero-image-wrap img {
    aspect-ratio: 1.3;
  }

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

  .benefit-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .benefit-image {
    min-height: 280px;
    aspect-ratio: auto;
  }

  .split-heading,
  .video-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .story-visual {
    order: 2;
  }

  .story-copy {
    order: 1;
  }

  .ergonomics-image {
    margin-top: 24px;
  }

  .eco-copy {
    text-align: center;
  }

  .eco-tags,
  .eco-copy .button {
    justify-content: center;
  }

  .eco-product {
    min-height: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
}

@media (max-width: 560px) {
  .content-grid,
  .header-inner,
  .trust-track {
    width: calc(100% - 28px);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    padding-left: 0;
    padding-bottom: 80px;
  }

  .hero-image-wrap {
    border-radius: 28px 6px 28px 28px;
  }

  .hero-image-wrap img {
    aspect-ratio: 0.95;
  }

  .eco-card {
    left: 12px;
    bottom: 22px;
    max-width: calc(100% - 32px);
  }

  .format-card {
    right: -4px;
    top: -14px;
  }

  .trust-track {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .trust-track::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading h2,
  .story-copy h2,
  .ergonomics-copy h2,
  .eco-copy h2 {
    font-size: 42px;
  }

  .benefit-grid {
    margin-top: 44px;
  }

  .benefit-card {
    display: block;
  }

  .benefit-image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .story-visual {
    padding: 0 30px 44px 0;
  }

  .metric {
    grid-template-columns: 110px 1fr;
  }

  .posture-label {
    right: 8px;
    bottom: -54px;
    width: 80%;
  }

  .video-heading {
    margin-bottom: 38px;
  }

  .video-shell {
    margin-top: 0;
    border-radius: 20px;
  }

  .eco-product {
    min-height: 280px;
  }

  .eco-halo {
    width: 260px;
    height: 260px;
  }

  .made-badge {
    right: 0;
    bottom: 12%;
  }

  .final-cta h2 {
    font-size: 48px;
  }

  .final-actions {
    display: grid;
  }

  .footer-links {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@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;
  }
}

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

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 64px;
}

.model-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.model-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(33, 52, 41, 0.11);
}

.model-image {
  position: relative;
  height: 290px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #ffffff, #edf0eb);
  padding: 34px 26px;
}

.model-image > span {
  position: absolute;
  left: 20px;
  top: 18px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s ease;
}

.model-card:hover .model-image img {
  transform: scale(1.035);
}

.model-copy {
  padding: 27px;
}

.model-kicker {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.model-copy h3 {
  min-height: 58px;
  margin: 0 0 26px;
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.model-copy dl {
  margin: 0;
}

.model-copy dl div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding: 11px 0;
  font-size: 11px;
  line-height: 1.45;
}

.model-copy dt {
  color: #7a8481;
}

.model-copy dd {
  margin: 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(132deg, #f6f5f1 10%, #eef4e9 100%);
  padding: clamp(90px, 11vw, 150px) 0 clamp(78px, 9vw, 126px);
}

.page-hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -310px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 50%, rgba(139, 220, 52, 0.28), transparent 67%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(58px, 7vw, 98px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.page-hero-inner > p:last-child {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.7;
}

.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: clamp(55px, 8vw, 110px);
}

.contact-details h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 580;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.contact-details > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.75;
}

.contact-details address {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
}

.contact-details address strong {
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-details address a {
  color: var(--green-dark);
  font-weight: 700;
}

.contact-form,
.form-success {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: 0 28px 70px rgba(31, 48, 39, 0.08);
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 720;
}

.contact-form label > span {
  color: var(--green-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d4d9d2;
  border-radius: 12px;
  background: white;
  color: var(--ink);
  padding: 14px 15px;
  font: inherit;
  font-size: 15px;
  font-weight: 450;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(88, 180, 22, 0.13);
}

.privacy-check {
  display: grid !important;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px !important;
  color: var(--ink-soft);
  font-weight: 500 !important;
  line-height: 1.55;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--green-dark);
}

.privacy-check span {
  color: inherit !important;
}

.privacy-check a {
  color: var(--green-dark);
  text-decoration: underline;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
}

.form-success {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #e5f6d9;
  color: var(--green-dark);
  font-size: 28px;
  font-weight: 800;
}

.form-success h2 {
  margin: 24px 0 8px;
  font-size: 30px;
}

.form-success p {
  margin: 0;
  color: var(--ink-soft);
}

.form-success button {
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  margin-top: 28px;
  padding: 0 0 5px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.legal-section {
  background: white;
}

.legal-content {
  max-width: 900px;
}

.legal-note {
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
  background: #fff8e8;
  margin-bottom: 50px;
  padding: 18px 20px;
  color: #6d5830;
  font-size: 13px;
  line-height: 1.6;
}

.legal-content h2 {
  margin: 48px 0 14px;
  font-size: 28px;
  letter-spacing: -0.035em;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 650;
}

.application-section {
  background: white;
}

.application-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(55px, 8vw, 120px);
}

.application-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #eef0ec;
  box-shadow: 0 28px 70px rgba(31, 48, 39, 0.1);
}

.application-image img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.application-image:hover img {
  transform: scale(1.03);
}

.application-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.application-steps {
  margin-top: 40px;
}

.application-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.application-step:last-child {
  border-bottom: 1px solid var(--line);
}

.application-step > span {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.application-step h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.application-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.application-video-section {
  background: #eef0ec;
}

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

  .model-card {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
  }

  .model-image {
    height: auto;
    min-height: 310px;
  }

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

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

@media (max-width: 650px) {
  .model-card {
    display: block;
  }

  .model-image {
    min-height: 250px;
    height: 250px;
  }

  .model-copy h3 {
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 52px;
  }

  .page-hero-inner > p:last-child {
    font-size: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.scroll-top {
  position: fixed;
  right: clamp(16px, 2.4vw, 34px);
  bottom: clamp(16px, 2.4vw, 34px);
  z-index: 45;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font: inherit;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  box-shadow: 0 14px 34px rgba(24, 33, 36, 0.24);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  background: var(--green-dark);
}

.video-consent {
  position: relative;
  min-height: 0;
  overflow: hidden;
  margin-top: 62px;
  border-radius: var(--radius-lg);
  background-color: var(--ink);
  background-image: linear-gradient(rgba(17, 27, 29, 0.58), rgba(17, 27, 29, 0.72)), var(--video-poster);
  background-position: center;
  background-size: cover;
  box-shadow: 0 32px 80px rgba(31, 48, 39, 0.14);
  aspect-ratio: 16 / 9;
}

.video-consent-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
}

.video-load {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 15px 21px;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease;
}

.video-load:hover,
.video-load:focus-visible {
  transform: translateY(-2px);
  background: var(--green-bright);
}

.video-load span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 9px;
}

.video-consent-content p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  line-height: 1.55;
}

.video-consent iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-consent.is-loaded {
  background: var(--ink);
}

.manual-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 30px;
}

.manual-download-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.manual-download-badge {
  flex: 0 0 auto;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(67, 156, 16, 0.26);
  border-radius: 16px;
  background: rgba(139, 221, 52, 0.14);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.manual-download .eyebrow {
  margin-bottom: 7px;
}

.manual-download h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.035em;
}

.manual-download-copy p:last-child {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.manual-download .button {
  flex: 0 0 auto;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  display: none;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.55;
}

.form-status.is-error {
  display: block;
  border: 1px solid #e7b8b8;
  background: #fff0f0;
  color: #802323;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.legal-updated {
  border-top: 1px solid var(--line);
  margin-top: 54px !important;
  padding-top: 20px;
  font-size: 12px !important;
}

@media (max-width: 560px) {
  .video-consent {
    margin-top: 0;
    border-radius: 20px;
  }

  .manual-download {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .manual-download-copy {
    align-items: flex-start;
  }

  .manual-download .button {
    width: 100%;
  }

  .scroll-top {
    width: 44px;
    height: 44px;
  }
}
