:root {
  --bg: #f5f5f7;
  --surface: #fff;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --dark: #050505;
  --accent-1: #6d3bff;
  --accent-2: #a855f7;
  --accent-3: #d946ef;
  --line: rgba(0, 0, 0, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-top: 88px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
.hidden,
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.campaign-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 22px;
  pointer-events: none;
}
.campaign-nav {
  max-width: 1240px;
  height: 60px;
  margin: auto;
  padding: 0 12px 0 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(110, 69, 190, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 14px 45px rgba(42, 20, 80, 0.1);
  pointer-events: auto;
}
.brand {
  font-weight: 800;
  letter-spacing: 0.075em;
  font-size: 13px;
  background: linear-gradient(
    110deg,
    var(--accent-1),
    var(--accent-2),
    var(--accent-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.campaign-links {
  display: flex;
  gap: 25px;
  margin: auto;
  color: #4f4b59;
  font-size: 13px;
  font-weight: 500;
}
.campaign-links a:hover {
  color: var(--accent-1);
}
.campaign-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.launch-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #f5f1ff;
  color: #6940c8;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.launch-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8b5cf6;
  box-shadow:
    0 0 0 5px rgba(139, 92, 246, 0.12),
    0 0 14px rgba(139, 92, 246, 0.8);
}
.gradient-button,
.wishlist-form button {
  border: 0;
  color: #fff;
  background: linear-gradient(
    115deg,
    var(--accent-1),
    var(--accent-2) 55%,
    var(--accent-3)
  );
  box-shadow: 0 10px 26px rgba(126, 61, 235, 0.28);
  transition: 0.25s ease;
}
.gradient-button:hover,
.wishlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(126, 61, 235, 0.4);
}
.gradient-button.compact {
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(110, 69, 190, 0.16);
  background: rgba(255, 255, 255, 0.6);
  color: #6940c8;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-2px);
}
.theme-icon {
  display: block;
}
.theme-icon-sun {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(
    105deg,
    var(--accent-1),
    var(--accent-2),
    var(--accent-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.eyebrow.light {
  background: linear-gradient(105deg, #c4b5fd, #e879f9, #f0abfc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-dark {
  background: #000;
  color: #f5f5f7;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.hand-off {
  position: relative;
  padding: clamp(40px, 4vw, 64px) 0;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, #1a1424 0%, #0c0910 50%, #060508 80%);
  overflow: hidden;
}
.hand-off::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 300px at 18% 55%, rgba(168, 85, 247, 0.14), transparent 70%),
    radial-gradient(circle 340px at 82% 50%, rgba(109, 59, 255, 0.16), transparent 70%),
    radial-gradient(circle 260px at 50% 50%, rgba(217, 70, 239, 0.16), transparent 75%);
  filter: blur(10px);
  pointer-events: none;
}
.hand-off .section-head {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto clamp(30px, 4vw, 56px);
}
.hand-off .section-head h2 {
  color: #fff;
  margin: 8px auto 0;
}
.hand-off .eyebrow.light {
  color: #c4b5fd;
}
.handoff-ecg {
  width: min(420px, 70vw);
  height: 46px;
  margin: 22px auto 0;
  display: block;
  overflow: visible;
}
.handoff-ecg-line {
  stroke: url(#handoffPulseGradient);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(217, 70, 239, 0.55));
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: handoffEcgDraw 2.6s ease-in-out infinite;
}
@keyframes handoffEcgDraw {
  0% {
    stroke-dashoffset: 620;
  }
  55% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -620;
  }
}
.handoff-stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(430px, 38vw, 610px);
  overflow: hidden;
}
.handoff-image {
  position: absolute;
  top: 53%;
  width: auto;
  height: clamp(300px, 30vw, 520px);
  max-width: none;
  object-fit: contain;
  object-position: center;
  will-change: transform, opacity;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.4));
  transform-origin: center;
  backface-visibility: hidden;
}
.handoff-image.from-left {
  left: -3vw;
  transform: translate(-115%, -50%);
  opacity: 0;
  mask-image: none;
  -webkit-mask-image: none;
}
.handoff-image.from-right {
  right: -3vw;
  transform: translate(115%, -50%);
  opacity: 0;
  mask-image: none;
  -webkit-mask-image: none;
}
.handoff-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 84px;
  margin-left: -42px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.7);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.handoff-center > svg {
  width: 24px;
  height: 24px;
  padding: 20px;
  box-sizing: content-box;
  border-radius: 50%;
  background: linear-gradient(135deg, #6d3bff, #d946ef);
  fill: #fff;
  stroke: none;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.handoff-center span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #e9e2ff;
  white-space: nowrap;
}
.handoff-center:hover > svg {
  animation: handoffHeartBeat 0.9s ease-in-out infinite;
  box-shadow: 0 14px 36px rgba(168, 85, 247, 0.6);
}
@keyframes handoffHeartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.18);
  }
  35% {
    transform: scale(0.96);
  }
  50% {
    transform: scale(1.12);
  }
  65% {
    transform: scale(1);
  }
}
.handoff-center.is-active > svg {
  animation: handoffPulse 2.1s ease-in-out infinite;
}
@keyframes handoffPulse {
  0%,
  100% {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.45), 0 0 0 0 rgba(168, 85, 247, 0.4);
  }
  50% {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.45), 0 0 0 16px rgba(168, 85, 247, 0);
  }
}
@media (max-width: 780px) {
  .handoff-center {
    display: none;
  }
}
@media (max-width: 780px) {
  .handoff-stage {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    min-height: 0;
    overflow: hidden;
  }
  .handoff-image {
    position: relative;
    top: auto;
    width: 108vw;
    height: auto;
    max-width: none;
    opacity: 1 !important;
    transform: none !important;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .handoff-image.from-left,
  .handoff-image.from-right {
    left: auto;
    right: auto;
  }
  .handoff-image.from-left {
    order: 2;
    align-self: flex-start;
    margin-left: -20vw;
  }
  .handoff-image.from-right {
    order: 1;
    align-self: flex-end;
    margin-right: -20vw;
  }
}

.hero {
  background: #fff;
  text-align: center;
  padding: 86px 20px 48px;
  overflow: hidden;
}
.hero-copy {
  max-width: 930px;
  margin: 0 auto 18px;
}
.hero h1,
.section-head h2,
.statement h2,
.pod-copy h2,
.care-copy h2,
.finish-copy h2,
.founder-copy h2,
.wishlist h2 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.97;
}
.hero h1 {
  font-size: clamp(58px, 7.5vw, 108px);
}
.hero-sub {
  max-width: 760px;
  margin: 22px auto 14px;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 500;
}
.text-link {
  font-size: 20px;
  font-weight: 600;
  background: linear-gradient(105deg, var(--accent-1), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stage {
  width: min(1180px, 100%);
  height: clamp(350px, 43vw, 555px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-image {
  width: min(900px, 84vw);
  max-height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.15));
  transform: scale(1.04);
}
.hero-glow {
  position: absolute;
  bottom: 3%;
  width: 62%;
  height: 90px;
  background: radial-gradient(
    ellipse,
    rgba(139, 92, 246, 0.34),
    rgba(217, 70, 239, 0.1) 42%,
    transparent 72%
  );
  filter: blur(18px);
}

.highlights {
  padding: 104px 20px 116px;
}
.section-head {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto 46px;
}
.section-head h2 {
  max-width: 880px;
  font-size: clamp(48px, 5.6vw, 78px);
}
.highlight-grid {
  width: min(1100px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}
.feature-card {
  min-height: 430px;
  padding: 38px;
  border-radius: 30px;
  background: #161617;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.feature-card.large {
  grid-row: span 2;
  min-height: 878px;
}
.feature-card h3 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 10px 0;
}
.card-kicker {
  color: #a1a1a6;
  font-weight: 600;
}
.highlight-image-wrap {
  height: 58%;
  border-radius: 22px;
  overflow: hidden;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.highlight-image-wrap.tall {
  height: 62%;
}
.highlight-image-wrap.compact {
  height: 200px;
}
.highlight-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.highlight-image.contain {
  object-fit: contain;
  padding: 10px;
}

.design-story {
  position: relative;
  height: 650vh;
  background: #050505;
  color: #fff;
}
.design-sticky {
  position: sticky;
  top: 0;
  width: min(1380px, 100%);
  height: 100vh;
  margin: 0 auto;
  padding: 92px clamp(28px, 5vw, 74px) 34px;
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(34px, 4vw, 70px);
  overflow: hidden;
}
.sticky-copy {
  max-width: 430px;
}
.sticky-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(54px, 5.8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.052em;
}
.sticky-copy > p:last-child {
  margin: 0;
  max-width: 410px;
  color: #a3a3ac;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.48;
}
.design-visual {
  width: 100%;
  height: min(74vh, 740px);
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-product-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #050505;
  transform: scale(1.12);
  transform-origin: center;
}

.statement {
  width: 100%;
  padding: clamp(86px, 9vw, 132px) 24px clamp(92px, 10vw, 146px);
  background: #f5f5f7;
  text-align: center;
}
.statement > p {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  background: linear-gradient(
    105deg,
    var(--accent-1),
    var(--accent-2),
    var(--accent-3)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.statement h2 {
  max-width: 1080px;
  margin: 0 auto;
  font-size: clamp(48px, 6vw, 88px);
  text-wrap: balance;
}

.pods {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  padding: clamp(88px, 8vw, 128px) max(24px, calc((100vw - 1180px) / 2));
  background: #fff;
}
.pod-visual {
  height: clamp(430px, 47vw, 650px);
  border-radius: 30px;
  overflow: hidden;
  background: #f3f1f7;
}
.pod-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pod-copy {
  max-width: 500px;
}
.pod-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(48px, 5vw, 76px);
}
.pod-copy > p {
  max-width: 470px;
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.5;
  color: var(--muted);
}
.segmented-control {
  display: inline-flex;
  padding: 4px;
  background: #ececf0;
  border-radius: 999px;
  margin: 24px 0 18px;
}
.segmented-control button {
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  color: #6e6e73;
}
.segmented-control button.active {
  color: #fff;
  background: linear-gradient(
    115deg,
    var(--accent-1),
    var(--accent-2),
    var(--accent-3)
  );
  box-shadow: 0 8px 20px rgba(126, 61, 235, 0.25);
}
.time-copy {
  min-height: 64px;
  margin: 14px 0 0;
  display: flex;
  align-items: flex-start;
  color: #6e6e73;
  font-size: 18px !important;
  line-height: 1.5;
}

.care {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
}
.care-copy h2 {
  font-size: clamp(50px, 5.5vw, 82px);
}
.care-copy > p:last-child {
  font-size: 21px;
  color: #a1a1a6;
  line-height: 1.5;
}
.care-visual {
  height: clamp(430px, 45vw, 650px);
  border-radius: 32px;
  overflow: hidden;
}
.care-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finish-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 60px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  background: #fff;
}
.finish-copy h2 {
  font-size: clamp(54px, 5.5vw, 84px);
}
.finish-copy p {
  font-size: 20px;
  color: var(--muted);
}
.finish-options {
  display: flex;
  gap: 14px;
  margin: 30px 0 14px;
}
.finish {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 4px;
  background: transparent;
  cursor: pointer;
}
.finish.active {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.12);
}
.swatch {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.swatch.white {
  background: #f4f2ed;
}
.swatch.black {
  background: #252525;
}
.swatch.oak {
  background: repeating-linear-gradient(20deg, #9b6538 0 6px, #b57a46 6px 12px);
}
.finish-stage {
  height: clamp(430px, 45vw, 650px);
  border-radius: 32px;
  overflow: hidden;
  background: #f4f4f7;
}
.finish-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.specs {
  padding: 112px 20px;
  background: var(--bg);
}
.spec-layout {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 30px;
  align-items: stretch;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.spec {
  background: var(--bg);
  padding: 45px 26px;
  min-height: 190px;
}
.spec b {
  display: block;
  font-size: clamp(40px, 4vw, 66px);
  letter-spacing: -0.05em;
}
.spec span {
  display: block;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
}
.spec-image {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}
.spec-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 70px;
  padding: 120px max(24px, calc((100vw - 1180px) / 2));
  background: #fff;
}
.founder-image {
  height: clamp(430px, 45vw, 650px);
  border-radius: 30px;
  overflow: hidden;
}
.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder-copy h2 {
  font-size: clamp(48px, 5vw, 76px);
}
.founder-copy p:last-child {
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
}

.wishlist {
  padding: 132px 20px;
  background: linear-gradient(180deg, #fff, #f1ecff);
  text-align: center;
}
.wishlist-inner {
  max-width: 850px;
  margin: auto;
}
.wishlist h2 {
  font-size: clamp(64px, 7.5vw, 110px);
}
.wishlist-inner > p {
  font-size: 22px;
  color: var(--muted);
  line-height: 1.5;
}
.wishlist-form {
  display: flex;
  max-width: 620px;
  margin: 35px auto 18px;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: 0 15px 50px rgba(67, 31, 130, 0.1);
}
.wishlist-form input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 15px 18px;
  background: transparent;
  min-width: 0;
}
.wishlist-form button {
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 600;
  cursor: pointer;
}
.wishlist small {
  color: #777;
}

.campaign-footer {
  padding: 72px max(22px, calc((100vw - 1180px) / 2)) 28px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.8fr 0.9fr;
  gap: 32px;
  background: #0f0b18;
  color: #b9b2c5;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #b9b2c5;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.social-links a:hover {
  background: linear-gradient(135deg, #6d3bff, #d946ef);
  color: #fff;
  transform: translateY(-2px);
}
.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand strong {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.footer-brand small {
  color: #8e8799;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  font-size: 13px;
}
.footer-links a:hover {
  color: #d8b4fe;
}
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.footer-note {
  grid-column: 1/-1;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
  color: #777080;
}

@media (max-width: 980px) {
  body {
    padding-top: 80px;
  }
  .campaign-header {
    padding: 10px 12px;
  }
  .campaign-nav {
    height: 58px;
  }
  .campaign-links,
  .launch-badge {
    display: none;
  }
  .campaign-actions {
    margin-left: auto;
  }
  .highlight-grid,
  .pods,
  .care,
  .finish-section,
  .founder-story,
  .spec-layout {
    grid-template-columns: 1fr;
  }
  .feature-card.large {
    grid-row: auto;
    min-height: 700px;
  }
  .design-story {
    height: 560vh;
  }
  .design-sticky {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    align-content: center;
    gap: 16px;
    padding: 76px 18px 18px;
  }
  .sticky-copy {
    max-width: 720px;
  }
  .sticky-copy h2 {
    font-size: clamp(46px, 10vw, 70px);
  }
  .design-visual {
    height: 58vh;
    min-height: 380px;
  }
  .scroll-product-video {
    transform: scale(1.08);
  }
  .pods,
  .care,
  .finish-section,
  .founder-story {
    padding: 84px 28px;
  }
  .pod-copy {
    max-width: 680px;
  }
  .pod-visual,
  .care-visual,
  .finish-stage,
  .founder-image {
    height: clamp(390px, 64vw, 540px);
  }
  .spec-grid {
    grid-template-columns: 1fr 1fr;
  }
  .campaign-footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-note {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .hero {
    padding: 54px 14px 40px;
  }
  .hero h1 {
    font-size: clamp(48px, 15vw, 70px);
  }
  .hero-stage {
    height: 310px;
  }
  .hero-product-image {
    width: 104vw;
  }
  .highlights {
    padding: 78px 14px 88px;
  }
  .highlight-grid {
    display: block;
    width: 100%;
  }
  .feature-card {
    margin-bottom: 16px;
    padding: 26px;
    justify-content: flex-start;
    gap: 22px;
  }
  .feature-card.large {
    gap: 22px;
  }
  .highlight-image-wrap,
  .highlight-image-wrap.tall {
    height: 220px;
  }
  .highlight-image-wrap.compact {
    height: 180px;
  }
  .statement {
    padding: 70px 18px 78px;
  }
  .statement h2 {
    font-size: clamp(38px, 11.5vw, 54px);
  }
  .design-story {
    height: 500vh;
  }
  .design-sticky {
    padding-top: 70px;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    gap: 26px;
  }
  .sticky-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }
  .sticky-copy > p:last-child {
    font-size: 16px;
  }
  .design-visual {
    height: 52vh;
    min-height: 320px;
    border-radius: 20px;
  }
  .scroll-product-video {
    transform: scale(1.04);
  }
  .pods,
  .care,
  .finish-section,
  .founder-story {
    padding: 68px 18px 74px;
    gap: 34px;
  }
  .pod-copy h2 {
    font-size: clamp(40px, 12vw, 54px);
  }
  .pod-copy > p {
    font-size: 17px;
  }
  .pod-visual,
  .care-visual,
  .finish-stage,
  .founder-image {
    height: 360px;
    border-radius: 22px;
  }
  .time-copy {
    min-height: 82px;
    white-space: normal;
  }
  .specs {
    padding: 80px 14px;
  }
  .spec-layout {
    width: 100%;
  }
  .spec-grid {
    grid-template-columns: 1fr;
  }
  .wishlist {
    padding: 100px 18px;
  }
  .wishlist-form {
    display: block;
    border-radius: 24px;
    padding: 8px;
  }
  .wishlist-form input,
  .wishlist-form button {
    width: 100%;
    border-radius: 17px;
  }
  .campaign-footer {
    grid-template-columns: 1fr;
    padding: 52px 18px 28px;
  }
  .footer-note {
    grid-column: auto;
  }
}

/* Four-finish selector — final override */
.finish-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 6vw, 90px);
  padding: clamp(90px, 8vw, 130px) max(24px, calc((100vw - 1320px) / 2));
  background: #f5f5f7;
}
.finish-copy {
  max-width: 540px;
}
.finish-copy h2 {
  margin: 0;
  font-size: clamp(56px, 6vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.finish-copy > p {
  max-width: 470px;
  margin: 28px 0 0;
  color: #6e6e73;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
}
.finish-options {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 38px 0 0;
}
.finish {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 5px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.finish:hover {
  transform: translateY(-2px);
}
.finish.active {
  border-color: #9747ff;
  box-shadow:
    0 0 0 6px rgba(151, 71, 255, 0.12),
    0 10px 24px rgba(151, 71, 255, 0.14);
}
.swatch {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}
.swatch.white {
  background: linear-gradient(145deg, #fff, #e7e5e1);
}
.swatch.black {
  background: linear-gradient(145deg, #3a3a3a, #111);
}
.swatch.oak {
  background: repeating-linear-gradient(
    18deg,
    #9b5f31 0 5px,
    #c17f42 5px 10px,
    #805026 10px 13px
  );
}
.swatch.titanium {
  background: linear-gradient(
    135deg,
    #f0f0f0 0%,
    #929292 42%,
    #dadada 68%,
    #727272 100%
  );
}
.premium-dot {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 15px;
  height: 15px;
  border: 3px solid #f5f5f7;
  border-radius: 50%;
  background: #3b82f6;
}
.finish-info {
  margin-top: 26px;
  min-height: 102px;
}
.finish-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.finish-info strong {
  font-size: 22px;
  line-height: 1.2;
}
.finish-info p {
  max-width: 470px;
  margin: 11px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
}
.finish-badge {
  padding: 6px 11px;
  border: 1px solid rgba(151, 71, 255, 0.2);
  border-radius: 999px;
  background: rgba(151, 71, 255, 0.09);
  color: #7b2ee8;
  font-size: 12px;
  font-weight: 700;
}
.finish-stage {
  position: relative;
  width: 100%;
  height: clamp(500px, 47vw, 720px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(
      circle at 50% 80%,
      rgba(164, 92, 255, 0.12),
      transparent 30%
    ),
    #fff;
}
.finish-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 0.22s ease,
    transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.finish-stage.is-changing img {
  opacity: 0.24;
  transform: scale(0.985);
}
.premium-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  padding: 14px 17px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 17px;
  background: rgba(25, 25, 28, 0.72);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.premium-overlay span {
  color: #c89cff;
  font-size: 12px;
  font-weight: 700;
}
.premium-overlay strong {
  font-size: 14px;
}
@media (max-width: 980px) {
  .finish-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 84px 28px;
  }
  .finish-copy {
    max-width: 760px;
  }
  .finish-stage {
    height: clamp(460px, 72vw, 660px);
    border-radius: 30px;
  }
}
@media (max-width: 620px) {
  .finish-section {
    padding: 68px 18px 74px;
    gap: 34px;
  }
  .finish-copy h2 {
    font-size: clamp(48px, 14vw, 66px);
  }
  .finish-options {
    gap: 10px;
    margin-top: 28px;
  }
  .finish {
    width: 50px;
    height: 50px;
  }
  .swatch {
    width: 35px;
    height: 35px;
  }
  .finish-stage {
    height: 380px;
    border-radius: 23px;
  }
  .premium-overlay {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }
}

/* Final finish image fit correction */
.finish-stage {
  height: clamp(500px, 47vw, 720px);
  padding: clamp(22px, 2.8vw, 44px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.finish-stage img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 650px;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 980px) {
  .finish-stage {
    height: clamp(460px, 72vw, 660px);
    padding: 28px;
  }
  .finish-stage img {
    max-height: 560px;
  }
}
@media (max-width: 620px) {
  .finish-stage {
    height: 390px;
    padding: 16px;
  }
  .finish-stage img {
    max-height: 350px;
  }
}

/* Refined daily-life specification section */
.specs {
  padding: clamp(92px, 8vw, 126px) 20px;
  background: #f5f5f7;
}
.spec-layout {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: stretch;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(29, 29, 31, 0.11);
  border-radius: 28px;
  overflow: hidden;
}
.spec {
  position: relative;
  min-height: 220px;
  padding: 34px 28px;
  background: #f5f5f7;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.spec-icon {
  position: absolute;
  top: 30px;
  left: 28px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #7c3aed;
  background: transparent;
}
.spec-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.spec b {
  display: block;
  margin-top: 60px;
  color: #1d1d1f;
  font-size: clamp(38px, 3.7vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}
.spec span:not(.spec-icon) {
  display: block;
  max-width: 190px;
  margin-top: 12px;
  color: #6e6e73;
  font-size: 17px;
  line-height: 1.42;
}
.spec-product-panel {
  min-width: 0;
  padding: 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(44, 35, 63, 0.08);
}
.spec-product-single {
  min-height: 330px;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: #fff;
  overflow: hidden;
}
.spec-product-single img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
}
.device-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 16px;
  align-items: stretch;
}
.device-action {
  position: relative;
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.device-action:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 58, 237, 0.28);
  box-shadow: 0 14px 34px rgba(60, 38, 95, 0.08);
}
.device-action:focus-visible {
  outline: 2.5px solid #7c3aed;
  outline-offset: 3px;
  border-color: transparent;
}
.sos-action:focus-visible {
  outline-color: #ef4444;
}
.action-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}
.action-icon.purple {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
}
.action-icon.red {
  background: #ef4444;
  color: #fff;
  border: 2px solid #ef4444;
}
.sos-text-icon {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.action-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.action-icon svg {
  grid-area: 1/1;
}
.action-icon.purple svg {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.action-icon.purple .icon-idle {
  opacity: 1;
}
.audio-action.is-playing .icon-idle {
  opacity: 0;
}
.audio-action.is-playing .icon-playing {
  opacity: 1;
}
.audio-action.is-speaking .icon-idle {
  opacity: 0;
}
.audio-action.is-speaking .icon-speaking {
  opacity: 1;
}
.icon-playing .bar {
  transform-origin: center;
  animation: waveBounce 900ms ease-in-out infinite;
}
.icon-playing .b1 {
  animation-delay: 0ms;
}
.icon-playing .b2 {
  animation-delay: 120ms;
}
.icon-playing .b3 {
  animation-delay: 240ms;
}
.icon-playing .b4 {
  animation-delay: 80ms;
}
@keyframes waveBounce {
  0%,
  100% {
    transform: scaleY(0.55);
  }
  50% {
    transform: scaleY(1.15);
  }
}
.action-copy {
  align-self: center;
}
.action-copy strong {
  display: block;
  color: #1d1d1f;
  font-size: 18px;
  line-height: 1.2;
}
.action-copy small {
  display: block;
  max-width: 260px;
  margin-top: 7px;
  color: #6e6e73;
  font-size: 14px;
  line-height: 1.42;
}
.listening-label {
  display: block;
  max-width: 260px;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.18s ease;
}
.audio-action.is-speaking .listening-label {
  opacity: 1;
  height: auto;
}
.action-ring {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 66px;
  height: 66px;
  transform: translateY(-50%);
  border-radius: 50%;
  pointer-events: none;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent, transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.action-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, #6d3bff, #a855f7, #d946ef, #6d3bff);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.audio-action.is-playing .action-ring {
  opacity: 1;
  animation:
    ringSpin 2.6s linear infinite,
    ringGlow 1.4s ease-in-out infinite;
}
.audio-action.is-speaking .action-ring {
  opacity: 1;
  animation: ringPulseRed 1s ease-in-out infinite;
}
.audio-action.is-speaking .action-ring::before {
  background: conic-gradient(from 0deg, #ef4444, #f87171, #ef4444);
}
@keyframes ringSpin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes ringGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(139, 92, 246, 0.08),
      0 0 14px rgba(168, 85, 247, 0.35);
  }
  50% {
    box-shadow:
      0 0 0 6px rgba(139, 92, 246, 0.14),
      0 0 26px rgba(217, 70, 239, 0.55);
  }
}
@keyframes ringPulseRed {
  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(239, 68, 68, 0.1),
      0 0 14px rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow:
      0 0 0 7px rgba(239, 68, 68, 0.16),
      0 0 24px rgba(239, 68, 68, 0.65);
  }
}
.sos-status {
  display: block;
  max-width: 260px;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.18s ease;
}
.sos-action.is-active .sos-status {
  opacity: 1;
  height: auto;
}
.sos-action.is-active .action-icon.red {
  box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.14);
}
.calm-action {
  grid-column: 1 / -1;
  grid-template-columns: 58px 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-right: 210px;
}
.calm-action .action-copy small {
  max-width: 460px;
}
.calm-visual {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  height: 46px;
  pointer-events: none;
  opacity: 0.85;
}
.calm-visual span {
  display: block;
  width: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, #a855f7, #d946ef);
  opacity: 0.4;
  transform: scaleY(0.5);
  transform-origin: center;
  transition: opacity 0.3s ease;
}
.calm-action.is-playing .calm-visual span {
  opacity: 0.9;
  animation: calmVisualBounce 2.6s ease-in-out infinite;
}
.calm-visual span:nth-child(1) {
  height: 16px;
  animation-delay: 0ms;
}
.calm-visual span:nth-child(2) {
  height: 30px;
  animation-delay: 180ms;
}
.calm-visual span:nth-child(3) {
  height: 44px;
  animation-delay: 360ms;
}
.calm-visual span:nth-child(4) {
  height: 26px;
  animation-delay: 540ms;
}
.calm-visual span:nth-child(5) {
  height: 38px;
  animation-delay: 720ms;
}
.calm-visual span:nth-child(6) {
  height: 18px;
  animation-delay: 900ms;
}
@keyframes calmVisualBounce {
  0%,
  100% {
    transform: scaleY(0.5);
  }
  50% {
    transform: scaleY(1);
  }
}
@media (max-width: 860px) {
  .calm-action {
    padding-right: 22px;
  }
  .calm-visual {
    display: none;
  }
}
.action-tag {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 10px;
  border: 1px solid rgba(151, 71, 255, 0.2);
  border-radius: 999px;
  background: rgba(151, 71, 255, 0.09);
  color: #7b2ee8;
  font-size: 11px;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 0;
}
.calm-status {
  display: block;
  max-width: 320px;
  margin-top: 7px;
  font-size: 13px;
  font-weight: 700;
  color: #7c3aed;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.18s ease;
}
.calm-action.is-playing .calm-status {
  opacity: 1;
  height: auto;
}
.calm-action.is-playing .icon-idle {
  opacity: 0;
}
.calm-action.is-playing .icon-playing {
  opacity: 1;
}
.calm-action .icon-playing {
  animation: calmWave 1.8s ease-in-out infinite;
}
@keyframes calmWave {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}
.calm-action.is-playing .action-ring {
  opacity: 1;
  animation:
    ringSpin 3.4s linear infinite,
    ringGlow 1.8s ease-in-out infinite;
}
.sos-ring {
  left: 18px;
  top: 50%;
  width: 66px;
  height: 66px;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0;
}
.sos-action.is-active .sos-ring {
  opacity: 1;
  animation: ringPulseRed 0.85s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .icon-playing .bar,
  .action-ring,
  .sos-ring,
  .calm-action .icon-playing {
    animation: none !important;
  }
  .device-action,
  .action-icon,
  .action-ring {
    transition: none !important;
  }
}
@media (max-width: 980px) {
  .spec-layout {
    grid-template-columns: 1fr;
  }
  .spec-product-single {
    min-height: 300px;
  }
  .spec-product-single img {
    height: 250px;
  }
}
@media (max-width: 700px) {
  .spec-layout {
    width: 100%;
  }
  .spec-grid,
  .device-actions {
    grid-template-columns: 1fr;
  }
  .spec {
    min-height: 190px;
  }
  .spec-product-single img {
    height: 220px;
  }
  .device-action {
    min-height: 122px;
  }
}

/* =========================================================
   FINISHES SECTION — CLEAN FINAL VERSION
   - Stage uses the same page background
   - No white card or grey Kickstarter overlay
   - Product remains fully visible and uncropped
   ========================================================= */
.finish-section {
  background: #f5f5f7 !important;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr) !important;
  gap: clamp(48px, 6vw, 90px) !important;
  padding: clamp(90px, 8vw, 130px) max(24px, calc((100vw - 1320px) / 2)) !important;
}

.finish-copy {
  max-width: 540px;
}

.finish-copy h2 {
  margin: 0;
  font-size: clamp(56px, 6vw, 94px) !important;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.finish-copy > p {
  max-width: 470px;
  margin: 28px 0 0;
  color: #6e6e73;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.45;
}

.finish-options {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 38px 0 0;
}

.finish {
  position: relative;
  width: 56px;
  height: 56px;
  padding: 5px;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

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

.finish.active {
  border-color: #9747ff;
  box-shadow:
    0 0 0 6px rgba(151, 71, 255, 0.12),
    0 10px 24px rgba(151, 71, 255, 0.14);
}

.swatch {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.swatch.white {
  background: linear-gradient(145deg, #fff, #e7e5e1);
}

.swatch.black {
  background: linear-gradient(145deg, #3a3a3a, #111);
}

.swatch.oak {
  background: repeating-linear-gradient(
    18deg,
    #9b5f31 0 5px,
    #c17f42 5px 10px,
    #805026 10px 13px
  );
}

.swatch.titanium {
  background: linear-gradient(
    135deg,
    #f0f0f0 0%,
    #929292 42%,
    #dadada 68%,
    #727272 100%
  );
}

.premium-dot {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 15px;
  height: 15px;
  border: 3px solid #f5f5f7;
  border-radius: 50%;
  background: #3b82f6;
}

.finish-info {
  min-height: 102px;
  margin-top: 26px;
}

.finish-name-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.finish-info strong {
  font-size: 22px;
  line-height: 1.2;
}

.finish-info p {
  max-width: 470px;
  margin: 11px 0 0;
  color: #6e6e73;
  font-size: 16px;
  line-height: 1.5;
}

.finish-badge {
  padding: 6px 11px;
  border: 1px solid rgba(151, 71, 255, 0.2);
  border-radius: 999px;
  background: rgba(151, 71, 255, 0.09);
  color: #7b2ee8;
  font-size: 12px;
  font-weight: 700;
}

.finish-badge[hidden] {
  display: none !important;
}

.finish-stage {
  position: relative !important;
  width: 100% !important;
  height: clamp(500px, 47vw, 720px) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  isolation: isolate;
}

.finish-stage img {
  display: block !important;
  width: min(100%, 980px) !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 650px !important;
  object-fit: contain !important;
  object-position: center !important;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 26px 38px rgba(39, 28, 56, 0.08));
  transition:
    opacity 0.22s ease,
    transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.finish-stage.is-changing img {
  opacity: 0.24;
  transform: scale(0.985);
}

/* Safety rule: the old grey box can never appear. */
.premium-overlay,
#premiumOverlay {
  display: none !important;
}

@media (max-width: 980px) {
  .finish-section {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
    padding: 84px 28px !important;
  }

  .finish-copy {
    max-width: 760px;
  }

  .finish-stage {
    height: clamp(430px, 70vw, 620px) !important;
  }

  .finish-stage img {
    max-height: 560px !important;
  }
}

@media (max-width: 620px) {
  .finish-section {
    gap: 34px !important;
    padding: 68px 18px 74px !important;
  }

  .finish-copy h2 {
    font-size: clamp(48px, 14vw, 66px) !important;
  }

  .finish-options {
    gap: 10px;
    margin-top: 28px;
  }

  .finish {
    width: 50px;
    height: 50px;
  }

  .swatch {
    width: 35px;
    height: 35px;
  }

  .finish-stage {
    height: 360px !important;
  }

  .finish-stage img {
    max-height: 340px !important;
  }
}

/* =========================================================
   LAUNCH HARDENING
   ========================================================= */
html {
  color-scheme: light;
}

body {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  touch-action: manipulation;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(124, 58, 237, 0.65);
  outline-offset: 4px;
}

.finish.future-finish .premium-dot {
  display: block;
}

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

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 8, 16, 0.72);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  position: relative;
  width: min(480px, 100%);
  padding: 40px 36px 34px;
  border-radius: 24px;
  background: #171225;
  border: 1px solid rgba(196, 181, 253, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-box h3 {
  color: #fff;
  font-size: 28px;
  margin: 6px 0 10px;
}
.modal-box p {
  color: #b9b2c5;
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 22px;
}
.modal-box small {
  display: block;
  margin-top: 16px;
  color: #8a86a3;
}
.modal-box .wishlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.modal-box .wishlist-form input {
  flex: none;
  width: 100%;
  box-sizing: border-box;
  background: #0f0b18;
  color: #fff;
  border: 1.5px solid rgba(196, 181, 253, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 15px;
  transition: border-color 0.2s ease;
}
.modal-box .wishlist-form input::placeholder {
  color: #7d7791;
}
.modal-box .wishlist-form input:focus {
  outline: none;
  border-color: #a855f7;
}
.modal-box .wishlist-form button {
  width: 100%;
  border-radius: 14px;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6d3bff, #d946ef);
  border: none;
  cursor: pointer;
  transition: filter 0.2s ease;
}
.modal-box .wishlist-form button:hover {
  filter: brightness(1.08);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: #e9e2ff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================================
   HAND-OFF EDGE FIX — V16
   Keeps the source-image top crop outside the visible stage,
   so both arms enter naturally from the left and right edges.
   ========================================================= */
@media (min-width: 781px) {
  .handoff-stage {
    min-height: clamp(360px, 32vw, 610px);
  }

  .handoff-image {
    top: 50%;
    height: clamp(390px, 35vw, 660px);
  }

  .handoff-image.from-left {
    left: -11vw;
  }

  .handoff-image.from-right {
    right: -11vw;
  }
}

/* =========================================================
   MOBILE SPACING, IMAGE FIT & FORM ALIGNMENT — V17
   Desktop and tablet layouts remain unchanged.
   ========================================================= */

/* Keep fixed navigation from covering anchored sections. */
section[id] {
  scroll-margin-top: 108px;
}

/* Use a clean filled WhatsApp glyph rather than overlapping strokes. */
.social-links .whatsapp-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 620px) {
  /* HERO: remove empty space caused by transparent pixels in the source image. */
  .hero {
    padding: 46px 14px 22px;
  }

  .hero-copy {
    margin-bottom: 0;
  }

  .hero-sub {
    margin-bottom: 10px;
  }

  .text-link {
    display: inline-block;
    margin-bottom: 0;
  }

  .hero-stage {
    height: 280px;
    margin-top: -10px;
    overflow: hidden;
  }

  .hero-product-image {
    width: min(112vw, 500px);
    max-width: none;
    max-height: none;
    transform: translateY(-3%) scale(1.1);
    transform-origin: center;
  }

  .hero-glow {
    bottom: 2px;
    height: 72px;
  }

  /* HIGHLIGHTS: remove inherited 700px/430px card heights on phones. */
  .feature-card,
  .feature-card.large {
    min-height: 0 !important;
    height: auto !important;
  }

  .feature-card {
    justify-content: flex-start;
  }

  .highlight-image-wrap,
  .highlight-image-wrap.tall {
    height: clamp(205px, 58vw, 235px);
    flex: none;
  }

  .highlight-image-wrap.compact {
    height: clamp(172px, 48vw, 195px);
  }

  /* DESIGN VIDEO: preserve its 4:3 ratio instead of a tall empty card. */
  .design-story {
    height: 360vh;
  }

  .design-sticky {
    gap: 20px;
  }

  .design-visual {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .scroll-product-video {
    width: 100%;
    height: 100%;
    transform: scale(1.04);
  }

  /* FINISHES: keep every device visible but remove the oversized stage. */
  .finish-section {
    gap: 14px !important;
    padding: 58px 18px 48px !important;
  }

  .finish-info {
    min-height: 0;
    margin-top: 20px;
  }

  .finish-stage {
    height: 270px !important;
    margin-top: -4px;
    overflow: hidden !important;
  }

  .finish-stage img {
    width: min(116vw, 520px) !important;
    max-width: none !important;
    max-height: none !important;
    transform: translateY(-2%) scale(1.24);
    transform-origin: center;
  }

  .finish-stage.is-changing img {
    transform: translateY(-2%) scale(1.19);
  }

  /* WISHLIST: compact spacing and centre the email entry. */
  .wishlist {
    padding: 72px 18px 64px;
  }

  .wishlist-form {
    width: min(100%, 500px);
    margin: 28px auto 16px;
  }

  .wishlist-form input {
    min-height: 56px;
    text-align: center;
  }

  .wishlist-form input::placeholder {
    text-align: center;
  }

  .wishlist-form button {
    min-height: 56px;
  }

  .wishlist small {
    display: block;
    max-width: 330px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
  }

  /* FOOTER: consistent mobile tap targets and balanced icon rendering. */
  .social-links {
    gap: 12px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
  }

  .campaign-footer .gradient-button.compact {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}



/* =========================================================
   V18 — SHORT, SMOOTH DESIGN VIDEO SCROLL
   The complete opening animation now finishes in roughly
   three viewport-length scrolls instead of six or seven.
   ========================================================= */
.design-story {
  height: 300vh !important;
}

.scroll-product-video {
  backface-visibility: hidden;
  transform: translateZ(0) scale(1.12);
  will-change: contents;
}

@media (max-width: 980px) {
  .design-story {
    height: 280vh !important;
  }

  .scroll-product-video {
    transform: translateZ(0) scale(1.08);
  }
}

@media (max-width: 620px) {
  .design-story {
    height: 240vh !important;
  }

  .scroll-product-video {
    transform: translateZ(0) scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .design-story {
    height: auto !important;
  }

  .design-sticky {
    position: relative;
    height: auto;
    min-height: 100vh;
  }
}

/* =========================================================
   DARK MODE
   Toggled via [data-theme="dark"] on <html>. Default remains
   light unless the user opts in (see script.js).
   ========================================================= */
html[data-theme="dark"] {
  color-scheme: dark;
}

[data-theme="dark"] {
  --bg: #0b0810;
  --surface: #171225;
  --text: #f2f0f5;
  --muted: #b0a9c2;
  --line: rgba(255, 255, 255, 0.12);
}

/* Header / nav */
[data-theme="dark"] .campaign-nav {
  border-color: rgba(196, 181, 253, 0.16);
  background: rgba(15, 11, 24, 0.78);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .campaign-links {
  color: #cfc9dc;
}
[data-theme="dark"] .launch-badge {
  background: rgba(139, 92, 246, 0.16);
  color: #d6c6ff;
}
[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  color: #e9e2ff;
  border-color: rgba(255, 255, 255, 0.16);
}
[data-theme="dark"] .theme-icon-sun {
  display: block;
}
[data-theme="dark"] .theme-icon-moon {
  display: none;
}

/* Hero */
[data-theme="dark"] .hero {
  background: var(--bg);
}
[data-theme="dark"] .hero-product-image {
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.55));
}

/* Statement / specs (already variable-driven backgrounds, only fix hardcoded ones) */
[data-theme="dark"] .statement {
  background: var(--bg);
}
[data-theme="dark"] .specs {
  background: var(--bg);
}
[data-theme="dark"] .spec {
  background: var(--bg);
}
[data-theme="dark"] .spec-grid {
  background: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .spec b {
  color: var(--text);
}
[data-theme="dark"] .spec span:not(.spec-icon) {
  color: var(--muted);
}
[data-theme="dark"] .spec-image,
[data-theme="dark"] .spec-product-panel,
[data-theme="dark"] .spec-product-single,
[data-theme="dark"] .device-action {
  background: var(--surface);
}
[data-theme="dark"] .device-action {
  border-color: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .device-action:hover {
  border-color: rgba(196, 181, 253, 0.35);
}
[data-theme="dark"] .action-copy strong {
  color: var(--text);
}
[data-theme="dark"] .action-copy small {
  color: var(--muted);
}

/* Pods */
[data-theme="dark"] .pods {
  background: var(--bg);
}
[data-theme="dark"] .pod-visual {
  background: var(--surface);
}
[data-theme="dark"] .segmented-control {
  background: rgba(255, 255, 255, 0.1);
}
[data-theme="dark"] .segmented-control button {
  color: rgba(255, 255, 255, 0.82);
}
[data-theme="dark"] .time-copy {
  color: var(--muted);
}

/* Care */
[data-theme="dark"] .care-copy > p:last-child {
  color: var(--muted);
}

/* Finishes */
[data-theme="dark"] .finish-section {
  background: var(--bg) !important;
}
[data-theme="dark"] .finish-copy > p,
[data-theme="dark"] .finish-info p {
  color: var(--muted);
}
[data-theme="dark"] .premium-dot {
  border-color: var(--bg);
}

/* Founder story */
[data-theme="dark"] .founder-story {
  background: var(--bg);
}

/* Wishlist */
[data-theme="dark"] .wishlist {
  background: linear-gradient(180deg, var(--bg), #17102a);
}
[data-theme="dark"] .wishlist-form {
  background: var(--surface);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}
[data-theme="dark"] .wishlist-form input {
  color: var(--text);
}
[data-theme="dark"] .wishlist-form input::placeholder {
  color: #8a86a3;
}
[data-theme="dark"] .wishlist small {
  color: var(--muted);
}

/* Focus ring stays visible on dark surfaces */
[data-theme="dark"] a:focus-visible,
[data-theme="dark"] button:focus-visible,
[data-theme="dark"] input:focus-visible {
  outline-color: rgba(196, 181, 253, 0.85);
}


/* =========================================================
   SEO FAQ — useful, visible answers for people and search.
   ========================================================= */
.faq-section {
  padding: clamp(88px, 10vw, 160px) clamp(22px, 5vw, 72px);
  background: var(--bg);
}
.faq-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.faq-section .section-head {
  max-width: 780px;
}
.faq-section h2 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -.055em;
}
.faq-intro {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(38px, 6vw, 64px);
}
.faq-item {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(62, 34, 111, .06);
  overflow: hidden;
}
.faq-item summary {
  position: relative;
  padding: 24px 60px 24px 24px;
  cursor: pointer;
  list-style: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border-radius: 50%;
  background:
    linear-gradient(var(--accent-1), var(--accent-1)) center / 12px 2px no-repeat,
    linear-gradient(var(--accent-1), var(--accent-1)) center / 2px 12px no-repeat,
    rgba(124, 58, 237, .09);
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform .22s ease, background-color .22s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background:
    linear-gradient(var(--accent-1), var(--accent-1)) center / 12px 2px no-repeat,
    linear-gradient(var(--accent-1), var(--accent-1)) center / 2px 12px no-repeat,
    rgba(124, 58, 237, .15);
}
.faq-answer {
  padding: 0 24px 25px;
}
.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
[data-theme="dark"] .faq-section {
  background: var(--bg);
}
[data-theme="dark"] .faq-item {
  border-color: rgba(255, 255, 255, .1);
  background: var(--surface);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
}
[data-theme="dark"] .faq-item summary::after {
  background:
    linear-gradient(#d8c8ff, #d8c8ff) center / 12px 2px no-repeat,
    linear-gradient(#d8c8ff, #d8c8ff) center / 2px 12px no-repeat,
    rgba(167, 139, 250, .15);
}
@media (max-width: 760px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item summary {
    padding: 21px 56px 21px 20px;
    font-size: 16px;
  }
  .faq-item summary::after {
    right: 18px;
    width: 30px;
    height: 30px;
  }
  .faq-answer {
    padding: 0 20px 22px;
  }
}
