:root {
  color-scheme: dark;
  --ink: #101114;
  --muted: #72747b;
  --paper: #f6f4ef;
  --porcelain: #fbfaf6;
  --cream: #eee9df;
  --night: #07080a;
  --night-2: #111318;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(16, 17, 20, 0.12);
  --blue: #0a84ff;
  --amber: #d7a35b;
  --celadon: #9fc6bf;
  --graphite: #43494d;
  --max: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: #f5f5f7;
  background: var(--night);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: 0 max(18px, env(safe-area-inset-left)) 0 max(18px, env(safe-area-inset-right));
  color: rgba(255, 255, 255, 0.88);
  background: rgba(7, 8, 10, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(160%);
  transition: background 240ms var(--ease), border-color 240ms var(--ease), color 240ms var(--ease);
}

.site-header.is-scrolled {
  background: rgba(7, 8, 10, 0.82);
  border-color: rgba(255, 255, 255, 0.13);
}

.brand,
.site-nav,
.nav-action {
  font-size: 13px;
  line-height: 1;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.brand-orbit {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid currentColor;
  border-radius: inherit;
  opacity: 0.38;
}

.site-nav {
  display: flex;
  gap: 28px;
  color: rgba(255, 255, 255, 0.68);
}

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

.site-nav a:hover,
.nav-action:hover {
  color: #fff;
}

.nav-action {
  justify-self: end;
  color: #8fc7ff;
  font-weight: 600;
}

.side-anchor-nav {
  position: fixed;
  top: 50%;
  right: max(14px, calc((100vw - var(--max)) / 2 - 72px));
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(7, 8, 10, 0.46);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px) saturate(160%);
  transform: translateY(-50%);
}

.side-anchor-nav a {
  position: relative;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.58);
}

.side-anchor-nav a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  transition: width 180ms var(--ease), height 180ms var(--ease), background 180ms var(--ease), opacity 180ms var(--ease);
}

.side-anchor-nav a span {
  position: absolute;
  top: 50%;
  right: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 8, 10, 0.72);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(8px, -50%);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.side-anchor-nav a:hover,
.side-anchor-nav a:focus-visible,
.side-anchor-nav a.is-active {
  color: #fff;
}

.side-anchor-nav a:hover span {
  opacity: 1;
  transform: translate(0, -50%);
}

.side-anchor-nav a.is-active::before {
  width: 16px;
  height: 16px;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(10, 132, 255, 0.16), 0 0 24px rgba(10, 132, 255, 0.46);
}

.hero {
  position: relative;
  min-height: 96svh;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 110px 24px 56px;
  background:
    radial-gradient(circle at 50% 28%, rgba(91, 105, 117, 0.32), transparent 36%),
    radial-gradient(circle at 74% 64%, rgba(159, 198, 191, 0.18), transparent 28%),
    linear-gradient(180deg, #090a0c 0%, #050608 100%);
}

.hero-canvas,
.hero-light {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-light {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.18) 46%, transparent 76%),
    radial-gradient(circle at 64% 54%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: min(46vw, 520px);
  text-align: left;
  transform: translateY(-7svh);
}

.eyebrow {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.36;
}

.light .eyebrow,
.cream .eyebrow {
  color: #7a6f61;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(62px, 8.4vw, 118px);
  line-height: 0.9;
  font-weight: 760;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 5.4vw, 86px);
  line-height: 1.02;
  font-weight: 760;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
}

p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 19px;
  line-height: 1.62;
}

.light p,
.cream p {
  color: #68645f;
}

.hero-kicker {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease);
}

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

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 40px rgba(10, 132, 255, 0.32);
}

.button.subtle {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button.light-mode {
  color: var(--ink);
  background: rgba(16, 17, 20, 0.06);
  border-color: rgba(16, 17, 20, 0.1);
}

.hero-product {
  position: absolute;
  left: 72%;
  bottom: -4svh;
  z-index: -1;
  width: min(42vw, 640px);
  min-width: 420px;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-product img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: drop-shadow(0 46px 70px rgba(0, 0, 0, 0.55));
  animation: floatRing 7s var(--ease) infinite alternate;
}

.product-shadow {
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 3%;
  height: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.22), transparent 68%);
  filter: blur(18px);
}

.hero-metrics {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 28px;
  width: min(calc(100% - 48px), 680px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.hero-metrics div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 5px;
  font-size: 22px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 124px 24px;
}

.section.light {
  color: var(--ink);
  background: var(--porcelain);
}

.section.cream {
  color: var(--ink);
  background: var(--cream);
}

.section.dark {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 70% 20%, rgba(159, 198, 191, 0.16), transparent 35%),
    linear-gradient(180deg, #0c0e12, #07080a);
}

.section.dark-ink {
  color: #f5f5f7;
  background:
    radial-gradient(circle at 18% 46%, rgba(255, 255, 255, 0.08), transparent 28%),
    #050506;
}

.section-copy {
  width: min(100%, 850px);
  margin: 0 auto 56px;
  text-align: center;
}

.section-copy.narrow {
  width: min(100%, 960px);
}

.section-copy.align-left {
  width: min(100%, var(--max));
  text-align: left;
}

.daily {
  padding-top: 108px;
}

.daily .section-copy {
  width: min(100%, var(--max));
  margin-bottom: 44px;
  text-align: left;
}

.daily .section-copy h2 {
  max-width: 1040px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.2vw, 64px);
  line-height: 1.08;
  text-wrap: balance;
}

.daily .section-copy p:not(.eyebrow) {
  max-width: 620px;
}

.belief-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--dark-line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--dark-line);
}

.belief-grid div {
  min-height: 250px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.62);
}

.belief-grid span {
  display: block;
  margin-bottom: 42px;
  color: #9b958e;
  font-size: 13px;
  font-weight: 700;
}

.belief-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.18;
}

.belief-grid p,
.health-grid p {
  margin-bottom: 0;
  font-size: 16px;
}

.finish-stage {
  width: min(100%, var(--max));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 70px;
  align-items: center;
}

.finish-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.finish-halo {
  position: absolute;
  width: min(72vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 24%),
    conic-gradient(from 120deg, rgba(159, 198, 191, 0.22), rgba(215, 163, 91, 0.18), rgba(255, 255, 255, 0.08), rgba(159, 198, 191, 0.22));
  filter: blur(22px);
  opacity: 0.7;
  animation: rotateSlow 16s linear infinite;
}

.finish-visual img {
  position: relative;
  width: min(78%, 560px);
  filter: drop-shadow(0 42px 80px rgba(0, 0, 0, 0.55));
  transition: opacity 220ms var(--ease), transform 360ms var(--ease);
}

.finish-visual img.is-switching {
  opacity: 0;
  transform: scale(0.97) rotate(-2deg);
}

.finish-copy {
  position: relative;
  z-index: 2;
}

.finish-copy p {
  max-width: 620px;
}

.finish-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 34px 0 30px;
}

.finish-tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

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

.finish-tab.active {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.62);
}

.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.swatch.graphite {
  background: linear-gradient(135deg, #0d0e0f, #697176);
}

.swatch.amber {
  background: linear-gradient(135deg, #9e6227, #edcb8c);
}

.swatch.celadon {
  background: linear-gradient(135deg, #648f88, #c4e0dc);
}

.finish-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--line);
}

.finish-specs div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.finish-specs dt {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.finish-specs dd {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.moment {
  min-height: 820px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 70px;
  align-items: center;
}

.moment-art {
  position: relative;
  width: min(100%, 780px);
  margin-left: auto;
}

.moment-art::before {
  content: "";
  position: absolute;
  inset: 8% -3% -8% 8%;
  border-radius: 44px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 58%);
  filter: blur(34px);
}

.moment-art img {
  position: relative;
  width: 100%;
  border-radius: 36px;
  opacity: 0.9;
  filter: saturate(0.88) contrast(1.08) drop-shadow(0 36px 90px rgba(0, 0, 0, 0.65));
}

.moment-copy {
  width: min(100%, 620px);
}

.health-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.health-grid article {
  min-height: 300px;
  padding: 30px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    #fff;
  border: 1px solid rgba(16, 17, 20, 0.08);
}

.line-icon {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  margin-bottom: 72px;
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--ink);
}

.line-icon.moon::before {
  border-radius: 50%;
  clip-path: inset(0 0 0 34%);
}

.line-icon.moon::after {
  inset: 6px 12px 6px 0;
  border-color: transparent transparent transparent var(--ink);
  border-radius: 50%;
}

.line-icon.pulse::before {
  top: 22px;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, var(--ink) 0 22%, transparent 22% 31%, var(--ink) 31% 39%, transparent 39% 49%, var(--ink) 49% 60%, transparent 60% 67%, var(--ink) 67%);
}

.line-icon.pulse::after {
  inset: 3px 6px;
  border-radius: 50%;
  opacity: 0.18;
}

.line-icon.bell::before {
  inset: 4px 9px 10px;
  border-radius: 22px 22px 14px 14px;
}

.line-icon.bell::after {
  inset: auto 17px 2px;
  height: 8px;
  border-width: 0 0 2px;
  border-radius: 0;
}

.line-icon.pause::before {
  inset: 6px 13px;
  width: 6px;
  border-width: 0;
  background: var(--ink);
  box-shadow: 15px 0 0 var(--ink);
}

.line-icon.pause::after {
  border-radius: 50%;
  opacity: 0.18;
}

.daily-track {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 1fr 1.1fr .96fr;
  gap: 18px;
}

.daily-track figure {
  margin: 0;
  height: clamp(500px, 42vw, 620px);
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  position: relative;
}

.daily-track figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.16) 58%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 34%, transparent 70%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.daily-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.scene-morning img {
  object-position: 24% center;
}

.scene-office img {
  object-position: 66% center;
}

.scene-evening img {
  object-position: 58% center;
}

.scene-sleep img {
  object-position: 55% center;
}

.daily-track figure:hover img {
  transform: scale(1.045);
}

.daily-track figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.charging {
  min-height: 800px;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
  align-items: center;
}

.charging-copy {
  width: min(100%, 580px);
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
}

.charging-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.charging-visual img {
  position: relative;
  z-index: 2;
  width: min(86%, 620px);
  filter: drop-shadow(0 52px 90px rgba(0, 0, 0, 0.68));
}

.charge-pulse {
  position: absolute;
  width: min(58vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(159, 198, 191, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 70px rgba(159, 198, 191, 0.18), inset 0 0 70px rgba(159, 198, 191, 0.12);
  animation: pulse 3s var(--ease) infinite;
}

.spec-wall {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--line);
}

.spec-wall div {
  min-height: 176px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
}

.spec-wall span {
  display: block;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.spec-wall strong {
  display: block;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.reserve {
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
}

.reserve h2 {
  max-width: 780px;
}

.reserve p {
  max-width: 700px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  color: rgba(255, 255, 255, 0.5);
  background: var(--night);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatRing {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(0, -18px, 0) rotate(1.2deg);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.56;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

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

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

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

  .side-anchor-nav {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding-top: 96px;
  }

  .hero-content {
    padding-right: 0;
    text-align: center;
    transform: translateY(-17svh);
  }

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

  .hero-product {
    left: 50%;
    width: min(92vw, 650px);
    bottom: 5svh;
  }

  .hero-metrics {
    left: 50%;
    width: min(calc(100% - 48px), 760px);
    transform: translateX(-50%);
  }

  .finish-stage,
  .moment,
  .charging {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .moment-copy,
  .charging-copy {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 0;
  }

  .moment-art {
    margin: 0 auto;
  }

  .charging-visual,
  .finish-visual {
    min-height: 420px;
  }

  .belief-grid,
  .health-grid,
  .spec-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 0 18px;
  }

  .daily-track figure {
    flex: 0 0 min(78vw, 420px);
    height: 500px;
    scroll-snap-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 52px;
  }

  .brand span:last-child {
    max-width: 122px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 92svh;
    padding: 86px 18px 22px;
  }

  .hero-content {
    text-align: left;
    transform: translateY(-19svh);
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-product {
    left: 56%;
    min-width: 0;
    width: 112vw;
    bottom: -8svh;
  }

  .hero-metrics {
    bottom: 16px;
    width: calc(100% - 28px);
    border-radius: 18px;
  }

  .hero-metrics div {
    padding: 13px 10px;
  }

  .hero-metrics strong {
    font-size: 17px;
  }

  .hero-metrics span {
    font-size: 11px;
  }

  .section {
    padding: 78px 18px;
  }

  .section-copy {
    margin-bottom: 34px;
    text-align: left;
  }

  .daily {
    padding-top: 70px;
  }

  .daily .section-copy {
    margin-bottom: 30px;
  }

  .daily .section-copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .belief-grid,
  .health-grid,
  .finish-specs,
  .spec-wall {
    grid-template-columns: 1fr;
  }

  .belief-grid div {
    min-height: 210px;
    padding: 28px;
  }

  .finish-stage {
    min-height: auto;
  }

  .finish-visual {
    min-height: 330px;
  }

  .finish-visual img {
    width: min(92%, 360px);
  }

  .finish-tabs {
    gap: 8px;
  }

  .finish-tab {
    min-height: 42px;
    padding: 0 14px;
  }

  .moment {
    min-height: auto;
  }

  .moment-art img {
    border-radius: 24px;
  }

  .health-grid article {
    min-height: 230px;
    padding: 26px;
  }

  .line-icon {
    margin-bottom: 46px;
  }

  .daily-track {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .daily-track figure {
    flex-basis: 82vw;
    height: 430px;
    border-radius: 26px;
  }

  .daily-track figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 15px;
  }

  .charging {
    min-height: auto;
  }

  .charging-visual {
    min-height: 340px;
  }

  .spec-wall div {
    min-height: 130px;
  }

  .reserve {
    min-height: 500px;
    text-align: left;
    justify-items: start;
  }

  .reserve .hero-actions {
    justify-content: flex-start;
  }

  .site-footer {
    flex-direction: column;
    padding: 24px 18px;
  }
}
