:root {
  --forest-950: #071f17;
  --forest-900: #0b3427;
  --forest-800: #124a37;
  --forest-700: #1d6248;
  --leaf: #6f8f52;
  --yellow: #f2c334;
  --yellow-dark: #c99500;
  --paper: #f5f5ef;
  --white: #ffffff;
  --ink: #16231d;
  --muted: #607068;
  --line: #d8ded8;
  --wood: #a67643;
  --danger: #b83a2e;
  --shadow: 0 18px 45px rgba(7, 31, 23, 0.12);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

button {
  color: inherit;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--yellow);
  color: var(--forest-950);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.page-loader {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  background: var(--forest-950);
  color: var(--white);
  transition: opacity 280ms ease, visibility 280ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader .icon {
  width: 34px;
  height: 34px;
  color: var(--yellow);
}

.spin {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 68px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  background: rgba(7, 31, 23, 0.96);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--yellow);
  color: var(--forest-950);
  border-radius: 6px;
  font-size: 22px;
  font-weight: 900;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
}

.brand-name small {
  margin-top: 5px;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  font-size: 14px;
  font-weight: 600;
}

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

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--yellow);
  transition: right 180ms ease;
}

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

.site-nav .nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--yellow);
  color: var(--yellow);
  border-radius: 4px;
}

.site-nav .nav-cta::after {
  display: none;
}

.site-header .menu-toggle {
  display: none;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.icon-button:hover {
  background: var(--forest-900);
  color: var(--white);
}

.icon-button:active,
.button:active,
.state-button:active,
.module-tab:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  height: min(88svh, 840px);
  min-height: 640px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-900) url("/hero-cooking.png") center 42% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(5, 30, 22, 0.58);
}

.hero-content {
  width: min(760px, 90%);
  margin-left: clamp(24px, 8vw, 132px);
  padding-top: var(--header-height);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.98;
  font-weight: 900;
}

.hero-product {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(26px, 3.4vw, 46px);
  line-height: 1.2;
  font-weight: 800;
}

.hero-slogan {
  margin: 22px 0 0;
  color: var(--yellow);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
}

.hero-offer {
  width: fit-content;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
  padding: 2px 0 2px 12px;
  border-left: 3px solid var(--yellow);
  color: var(--white);
}

.hero-offer span,
.hero-offer small {
  font-size: 12px;
  font-weight: 700;
}

.hero-offer strong {
  color: var(--yellow);
  font-size: 25px;
  line-height: 1;
}

.hero-offer small {
  color: rgba(255, 255, 255, 0.68);
}

.hero-copy {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 120ms ease;
}

.button-primary {
  background: var(--yellow);
  color: var(--forest-950);
}

.button-primary:hover {
  background: #ffd957;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 31, 23, 0.34);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(7, 31, 23, 0.72);
}

.hero-facts {
  position: absolute;
  left: clamp(24px, 8vw, 132px);
  right: clamp(24px, 8vw, 132px);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero-facts span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 9px;
  background: var(--yellow);
  border-radius: 50%;
}

.section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.section-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  padding: clamp(52px, 7vw, 92px) 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

h2 {
  margin: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.15;
  font-weight: 900;
}

.intro-grid > p,
.heading-copy,
.specs-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.heading-copy {
  max-width: 470px;
}

.segmented-control {
  display: inline-flex;
  flex: 0 0 auto;
  padding: 4px;
  border: 1px solid #cbd3cd;
  background: var(--white);
  border-radius: 6px;
}

.state-button {
  min-width: 112px;
  min-height: 42px;
  padding: 8px 16px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
}

.state-button.is-active {
  background: var(--forest-900);
  color: var(--white);
}

.product-explorer {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.75fr);
  min-height: 610px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #efefed;
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 4%;
  height: 1px;
  background: #cbd0cc;
}

.product-visual > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 220ms ease, transform 260ms ease;
}

.product-visual > img.is-changing {
  opacity: 0;
  transform: scale(0.985);
}

.image-shell {
  position: relative;
}

.image-loading {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #e7ebe7;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.image-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px;
  border: 3px solid #c7d0ca;
  border-top-color: var(--forest-700);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
}

.image-shell.is-loaded > .image-loading {
  opacity: 0;
  visibility: hidden;
}

.image-shell.is-error {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: #ecefea;
}

.image-shell.is-error::after {
  content: "图片暂时无法加载";
  color: var(--muted);
  font-weight: 700;
}

.image-shell.is-error > img,
.image-shell.is-error > .image-loading {
  display: none;
}

.hotspot-layer {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.hotspot {
  position: absolute;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
  color: var(--forest-950);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 7px rgba(242, 195, 52, 0.28);
  cursor: pointer;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.hotspot:hover,
.hotspot:focus-visible,
.hotspot.is-active {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--forest-900);
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(18, 74, 55, 0.22);
}

.visual-hint {
  position: absolute;
  z-index: 6;
  left: 20px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-900);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(242, 195, 52, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 9px rgba(242, 195, 52, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 195, 52, 0); }
}

.detail-panel {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.detail-number {
  margin-bottom: 18px;
  color: var(--yellow-dark);
  font-size: 14px;
  font-weight: 900;
}

.detail-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #ececea;
  border-radius: 4px;
}

.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-label {
  margin: 28px 0 8px;
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
}

.detail-panel h3,
.module-copy h3,
.scene-caption h3,
.benefit-list h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.detail-panel > p:last-of-type {
  margin: 14px 0 24px;
  color: var(--muted);
}

.detail-progress {
  height: 3px;
  margin-top: auto;
  background: #e0e4e0;
}

.detail-progress span {
  display: block;
  width: 16.66%;
  height: 100%;
  background: var(--yellow-dark);
  transition: width 220ms ease;
}

.modules {
  background: var(--forest-950);
  color: var(--white);
}

.modules .section-kicker {
  color: var(--yellow);
}

.modules .heading-copy {
  color: rgba(255, 255, 255, 0.68);
}

.module-layout {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.module-tab {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.module-tab:last-child {
  border-right: 0;
}

.module-tab > span {
  color: var(--yellow);
  font-size: 11px;
}

.module-tab.is-active {
  background: var(--yellow);
  color: var(--forest-950);
}

.module-tab.is-active > span {
  color: var(--forest-700);
}

.module-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  min-height: 550px;
  background: #0d2d22;
}

.module-image {
  min-height: 550px;
  background: #e7e7e5;
}

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

.module-copy {
  align-self: center;
  padding: clamp(30px, 5vw, 70px);
}

.module-index {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.module-copy h3 {
  font-size: clamp(27px, 3vw, 38px);
}

.module-copy > p:not(.module-index) {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.68);
}

.module-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.module-copy li {
  position: relative;
  padding: 13px 0 13px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.module-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
}

.benefits {
  background: var(--white);
}

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

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

.benefit-list article {
  min-height: 300px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.benefit-list article:last-child {
  border-right: 0;
}

.benefit-list .icon {
  width: 34px;
  height: 34px;
  color: var(--forest-700);
}

.benefit-list article > span {
  display: block;
  margin: 48px 0 10px;
  color: var(--yellow-dark);
  font-size: 12px;
  font-weight: 900;
}

.benefit-list p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.scenes {
  overflow: hidden;
  background: #e9eee8;
}

.carousel-actions {
  display: flex;
  gap: 10px;
}

.carousel-actions .play-icon {
  display: none;
}

.carousel-actions #carousel-toggle.is-paused .pause-icon {
  display: none;
}

.carousel-actions #carousel-toggle.is-paused .play-icon {
  display: block;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  touch-action: pan-y;
}

.carousel-track {
  display: flex;
  transition: transform 420ms cubic-bezier(.22, .61, .36, 1);
}

.scene-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  background: var(--forest-900);
}

.scene-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 23, 0.24);
  pointer-events: none;
}

.scene-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-caption {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 5vw, 68px);
  bottom: clamp(22px, 5vw, 60px);
  max-width: 520px;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.scene-caption span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.scene-caption h3 {
  margin-top: 10px;
  font-size: clamp(26px, 3.3vw, 44px);
}

.scene-caption p {
  margin: 10px 0 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.carousel-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  background: #b9c2bb;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.carousel-dot.is-active {
  width: 56px;
  background: var(--forest-800);
}

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

.specs-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(440px, 1.15fr);
  gap: clamp(48px, 9vw, 130px);
}

.specs-intro > p {
  margin-top: 24px;
}

.audience {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.audience .icon {
  width: 30px;
  height: 30px;
  color: var(--forest-700);
}

.audience div {
  display: flex;
  flex-direction: column;
}

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

.audience strong {
  font-size: 15px;
}

.spec-table {
  margin: 0;
  border-top: 2px solid var(--forest-900);
}

.spec-table div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.spec-table dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(50px, 8vw, 120px);
}

.faq-list {
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary .icon {
  transition: transform 180ms ease;
}

.faq-list details[open] summary .icon {
  transform: rotate(180deg);
}

.faq-list details p {
  margin: -6px 0 24px;
  color: var(--muted);
}

.preorder {
  background: var(--forest-900);
  color: var(--white);
}

.preorder .section-kicker {
  color: var(--yellow);
}

.preorder-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: start;
}

.preorder-offer > p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.7);
}

.price-lockup {
  display: grid;
  justify-items: start;
  margin: 36px 0 32px;
  padding: 10px 0 10px 20px;
  border-left: 4px solid var(--yellow);
}

.price-lockup > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.price-lockup strong {
  color: var(--yellow);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.08;
}

.price-lockup strong small {
  margin-right: 3px;
  font-size: 0.48em;
}

.price-lockup del {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.offer-terms {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.offer-terms div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.offer-terms dt {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 700;
}

.offer-terms dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.package-list {
  margin-top: 30px;
}

.package-list h3 {
  margin: 0 0 14px;
  font-size: 17px;
}

.package-list ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.package-list li .icon {
  width: 17px;
  height: 17px;
  margin-top: 4px;
  color: var(--yellow);
}

.package-list > p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.contact-email {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 2px 14px;
  align-items: center;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-email .icon {
  grid-row: 1 / 3;
  color: var(--yellow);
}

.contact-email span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.contact-email a {
  overflow-wrap: anywhere;
  font-weight: 700;
}

.inquiry-form {
  padding: clamp(26px, 4vw, 48px);
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
}

.form-heading {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.form-heading > span {
  color: var(--forest-700);
  font-size: 12px;
  font-weight: 900;
}

.form-heading h3 {
  margin: 3px 0 6px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.inquiry-form > label:not(.checkbox-label),
.inquiry-form .form-row > label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-form input[type="text"],
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid #c9d1cb;
  border-radius: 4px;
  background: #fbfcfa;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.inquiry-form input[type="text"] {
  height: 48px;
  padding: 0 14px;
}

.inquiry-form select {
  height: 48px;
  padding: 0 40px 0 14px;
}

.inquiry-form textarea {
  min-height: 130px;
  resize: vertical;
  padding: 12px 14px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--forest-700);
  box-shadow: 0 0 0 3px rgba(29, 98, 72, 0.12);
}

.inquiry-form .is-invalid {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 18px;
  color: var(--danger);
  font-size: 12px;
  font-weight: 500;
}

.choice-fieldset {
  margin: 0 0 20px;
  padding: 0;
  border: 0;
}

.choice-fieldset legend,
.quantity-line > div:first-child > span {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

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

.choice-options label {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid #c9d1cb;
  border-radius: 4px;
  background: #fbfcfa;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.choice-options label:has(input:checked) {
  border-color: var(--forest-700);
  background: #edf4ef;
}

.choice-options input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: var(--forest-700);
}

.choice-options input.is-invalid {
  outline: 2px solid rgba(184, 58, 46, 0.26);
}

.quantity-line {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 2px 0 20px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quantity-line > div:first-child {
  display: grid;
}

.quantity-line > div:first-child > span {
  margin: 0;
}

.quantity-line small {
  color: var(--muted);
  font-size: 11px;
}

.quantity-control {
  height: 42px;
  display: grid;
  grid-template-columns: 42px 48px 42px;
  border: 1px solid #bfc9c2;
  border-radius: 4px;
  overflow: hidden;
}

.quantity-control button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #f1f4f1;
  cursor: pointer;
}

.quantity-control button:hover:not(:disabled) {
  background: #e3ebe5;
}

.quantity-control button:disabled {
  color: #a7b0aa;
  cursor: not-allowed;
}

.quantity-control output {
  display: grid;
  place-items: center;
  border-right: 1px solid #bfc9c2;
  border-left: 1px solid #bfc9c2;
  font-weight: 900;
}

.order-summary {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: #f2f5f1;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.order-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13px;
}

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

.order-summary .summary-saving strong {
  color: var(--forest-700);
}

.order-summary .summary-deposit {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.order-summary .summary-total {
  margin-top: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
}

.order-summary .summary-total strong {
  font-size: 22px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--forest-700);
}

.consent-error {
  display: block;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.form-footer p.is-success {
  color: var(--forest-700);
  font-weight: 700;
}

.button-secondary {
  border-color: #b7c4bb;
  background: var(--white);
  color: var(--forest-900);
}

.button-secondary:hover {
  border-color: var(--forest-700);
  background: #edf4ef;
}

.reservation-result {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #bad0c1;
  border-radius: 4px;
  background: #edf4ef;
}

.reservation-result[hidden] {
  display: none;
}

.reservation-result > div:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reservation-result > div:first-child > .icon {
  width: 28px;
  height: 28px;
  color: var(--forest-700);
}

.reservation-result > div:first-child div {
  display: grid;
}

.reservation-result span {
  font-size: 12px;
  font-weight: 700;
}

.reservation-result strong {
  font-size: 20px;
}

.reservation-result > p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 12px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.result-actions .button {
  flex: 1 1 190px;
}

.site-footer {
  padding: 36px 0;
  background: var(--forest-950);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: var(--yellow);
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-links a {
  font-size: 13px;
}

.footer-links a:first-child {
  color: var(--yellow);
}

.noscript {
  position: fixed;
  z-index: 2000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: var(--danger);
  color: var(--white);
  text-align: center;
}

@media (min-width: 681px) {
  .hero {
    padding-bottom: 80px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 20px;
  }

  .site-header .menu-toggle {
    display: inline-grid;
    color: var(--white);
  }

  .menu-toggle .close-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .close-icon {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px 20px;
    background: var(--forest-950);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
  }

  .site-nav .nav-cta {
    margin-top: 20px;
    padding: 14px;
    text-align: center;
  }

  .intro-grid,
  .specs-layout,
  .faq-layout,
  .preorder-layout {
    grid-template-columns: 1fr;
  }

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

  .product-explorer {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 540px;
  }

  .detail-panel {
    display: grid;
    grid-template-columns: 210px 1fr;
    grid-template-rows: auto auto auto 1fr auto;
    gap: 0 24px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .detail-number {
    grid-column: 2;
    margin: 0 0 8px;
  }

  .detail-media {
    grid-column: 1;
    grid-row: 1 / 6;
    align-self: stretch;
    aspect-ratio: auto;
  }

  .detail-label,
  .detail-panel h3,
  .detail-panel > p:last-of-type,
  .detail-progress {
    grid-column: 2;
  }

  .detail-label {
    margin-top: 0;
  }

  .detail-progress {
    margin-top: 6px;
  }

  .module-panel {
    grid-template-columns: 1fr;
  }

  .module-image {
    min-height: 460px;
  }

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

  .benefit-list article:nth-child(2) {
    border-right: 0;
  }

  .benefit-list article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .preorder-layout {
    gap: 40px;
  }
}

@media (max-width: 680px) {
  .section-inner {
    width: min(100% - 28px, 1200px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    height: 88svh;
    min-height: 620px;
    align-items: flex-end;
    background-position: 57% center;
  }

  .hero-shade {
    background: rgba(5, 30, 22, 0.64);
  }

  .hero-content {
    width: auto;
    margin: 0 20px 105px;
    padding-top: 0;
  }

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

  .hero-product {
    max-width: 10em;
    font-size: 28px;
  }

  .hero-copy {
    display: none;
  }

  .hero-offer {
    flex-wrap: wrap;
    row-gap: 2px;
    max-width: 260px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
    padding-inline: 12px;
  }

  .hero-facts {
    left: 20px;
    right: 20px;
    bottom: 16px;
    gap: 8px 18px;
    padding-top: 12px;
    font-size: 11px;
  }

  .section {
    padding: 70px 0;
  }

  .intro {
    padding: 58px 0;
  }

  .intro-grid {
    gap: 24px;
  }

  h2 {
    font-size: 34px;
  }

  .section-heading {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 34px;
  }

  .segmented-control {
    width: 100%;
  }

  .state-button {
    min-width: 0;
    flex: 1;
  }

  .product-explorer,
  .carousel-viewport,
  .inquiry-form {
    border-radius: 6px;
  }

  .product-visual {
    min-height: 390px;
  }

  .hotspot {
    width: 36px;
    height: 36px;
    font-size: 11px;
    box-shadow: 0 0 0 5px rgba(242, 195, 52, 0.28);
  }

  .visual-hint {
    font-size: 11px;
  }

  .detail-panel {
    display: flex;
    padding: 20px;
  }

  .detail-number {
    order: 0;
  }

  .detail-media {
    order: 1;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .detail-label {
    order: 2;
    margin-top: 20px;
  }

  .detail-panel h3 {
    order: 3;
  }

  .detail-panel > p:last-of-type {
    order: 4;
  }

  .detail-progress {
    order: 5;
    width: 100%;
  }

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

  .module-tab {
    min-height: 72px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
  }

  .module-tab:nth-child(2) {
    border-right: 0;
  }

  .module-image {
    min-height: 320px;
  }

  .module-copy {
    padding: 30px 22px;
  }

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

  .benefit-list article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-list article:last-child {
    border-bottom: 0;
  }

  .benefit-list article > span {
    margin-top: 30px;
  }

  .scene-slide {
    aspect-ratio: 4 / 5;
  }

  .scene-slide > img {
    object-position: center;
  }

  .scene-caption {
    right: 22px;
  }

  .carousel-actions {
    align-self: flex-end;
  }

  .spec-table div {
    grid-template-columns: 105px 1fr;
    gap: 10px;
  }

  .spec-table dd {
    font-size: 14px;
  }

  .faq-layout {
    gap: 36px;
  }

  .inquiry-form {
    padding: 22px 18px;
  }

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

  .choice-options {
    grid-template-columns: 1fr;
  }

  .quantity-line {
    align-items: flex-start;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .result-actions {
    flex-direction: column;
  }

  .result-actions .button {
    width: 100%;
    flex-basis: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    order: -1;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

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