:root {
  color-scheme: dark;
  --bg: #050609;
  --bg-soft: #0b0d13;
  --panel: rgba(14, 18, 27, 0.58);
  --panel-strong: rgba(20, 24, 34, 0.78);
  --text: #f4f7fb;
  --muted: #9ba7b8;
  --dim: #667082;
  --line: rgba(190, 219, 255, 0.14);
  --ice: #8ee9ff;
  --violet: #9a7dff;
  --silver: #dce7f5;
  --warning: #c8d0dc;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 0%, rgba(142, 233, 255, 0.13), transparent 31rem),
    radial-gradient(circle at 82% 10%, rgba(154, 125, 255, 0.14), transparent 30rem),
    linear-gradient(180deg, #020306 0%, #080a10 38%, #030407 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  font-weight: 400;
}

.scroll-story-active {
  overscroll-behavior-y: none;
}

.scroll-story-active .section {
  --story-glow: 0;
  min-height: 100svh;
  overflow: hidden;
  will-change: transform;
}

.scroll-story-active .section::selection {
  background: rgba(142, 233, 255, 0.22);
}

.scroll-story-active .section::before {
  will-change: transform, opacity, filter;
}

.scroll-atmosphere-veil {
  position: fixed;
  z-index: 0;
  inset: -18% -12%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 58% 38%, rgba(142, 233, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 38% 62%, rgba(154, 125, 255, 0.07), transparent 28rem),
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.28) 44%, transparent 68%);
  filter: blur(18px);
  mix-blend-mode: multiply;
  transform: translate3d(0, 0, 0);
}

.site-header,
#app,
.compliance {
  position: relative;
  z-index: 1;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

.cursor-glow {
  position: fixed;
  left: var(--cursor-x, 50%);
  top: var(--cursor-y, 20%);
  width: 28rem;
  height: 28rem;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(142, 233, 255, 0.1), transparent 64%);
  filter: blur(16px);
  transition: opacity 240ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 5, 9, 0.64);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.brand-mark::before {
  display: none;
}

.brand-mark img {
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0.72rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 198, 255, 0.42));
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.4rem);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.nav-cta,
.glass-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(142, 233, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(142, 233, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 0 rgba(142, 233, 255, 0);
  color: #eefbff;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease,
    background 240ms ease;
}

.nav-cta:hover,
.glass-button:hover {
  border-color: rgba(142, 233, 255, 0.72);
  box-shadow: 0 0 28px rgba(142, 233, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.section {
  position: relative;
  z-index: 2;
  padding: clamp(5rem, 10vw, 9rem) clamp(1rem, 4vw, 3rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ice);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.15rem, 5.4vw, 5.1rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.01em;
}

.section-copy {
  max-width: 670px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 6rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 6rem -12vw auto auto;
  width: 54vw;
  height: 54vw;
  background:
    radial-gradient(circle at 48% 48%, rgba(142, 233, 255, 0.13), transparent 24%),
    radial-gradient(circle, rgba(154, 125, 255, 0.18), transparent 66%);
  filter: blur(34px);
  animation: heroGlowSlowMove 18s ease-in-out infinite;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 38vh;
  background: linear-gradient(180deg, transparent, rgba(5, 6, 9, 0.98));
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.86fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.4rem);
  font-weight: 650;
  line-height: 0.93;
  letter-spacing: 0.005em;
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 0.75px rgba(222, 235, 247, 0.46);
  text-shadow: 0 0 24px rgba(142, 233, 255, 0.06);
  opacity: 0.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.55rem;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.text-link::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  margin-left: 0.8rem;
  background: linear-gradient(90deg, var(--ice), transparent);
  transition: width 240ms ease;
}

.text-link:hover::after {
  width: 3.2rem;
}

.product-stage {
  position: relative;
  min-height: clamp(28rem, 52vw, 42rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-airflow,
.hero-vapor,
.hero-breath {
  position: absolute;
  pointer-events: none;
}

.hero-airflow {
  inset: 8% -8% 10% -18%;
  z-index: -1;
  filter: blur(0.4px);
}

.hero-airflow span {
  position: absolute;
  left: 0;
  width: 92%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 239, 255, 0.18), rgba(142, 233, 255, 0.28), transparent);
  box-shadow: 0 0 18px rgba(142, 233, 255, 0.18);
  transform-origin: 70% 50%;
  animation: airflowMove 9s ease-in-out infinite;
}

.hero-airflow span:nth-child(1) {
  top: 27%;
  transform: rotate(-9deg);
}

.hero-airflow span:nth-child(2) {
  top: 45%;
  width: 102%;
  animation-delay: -3s;
  transform: rotate(-4deg);
}

.hero-airflow span:nth-child(3) {
  top: 62%;
  width: 84%;
  animation-delay: -5.8s;
  transform: rotate(6deg);
}

.hero-breath {
  width: min(29rem, 70vw);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(229, 247, 255, 0.16), transparent 24%),
    radial-gradient(circle, rgba(142, 233, 255, 0.1), transparent 64%);
  filter: blur(18px);
  animation: breathPulse 6.8s ease-in-out infinite;
}

.hero-vapor {
  inset: 0;
  z-index: 1;
}

.hero-vapor span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(225, 243, 255, 0.2), rgba(142, 233, 255, 0.06) 48%, transparent 74%);
  filter: blur(18px);
  opacity: 0.46;
  mix-blend-mode: screen;
  animation: heroVaporDrift 10s ease-in-out infinite;
}

.hero-vapor span:nth-child(1) {
  width: 21rem;
  height: 8rem;
  left: 2%;
  top: 26%;
  transform: rotate(-10deg);
}

.hero-vapor span:nth-child(2) {
  width: 25rem;
  height: 9rem;
  right: -7%;
  bottom: 26%;
  animation-delay: -4s;
  transform: rotate(8deg);
}

.stage-ring {
  position: absolute;
  width: min(34rem, 78vw);
  aspect-ratio: 1;
  border: 1px solid rgba(142, 233, 255, 0.16);
  border-radius: 50%;
  box-shadow: inset 0 0 40px rgba(142, 233, 255, 0.04);
  animation: rotate 28s linear infinite;
}

.stage-ring::before,
.stage-ring::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(154, 125, 255, 0.12);
  border-radius: 50%;
}

.stage-ring::after {
  inset: 27%;
  border-color: rgba(255, 255, 255, 0.1);
}

.product-visual {
  position: relative;
  width: min(15.5rem, 54vw);
  aspect-ratio: 0.42;
  border-radius: 30% 30% 24% 24% / 12% 12% 9% 9%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42) 48%, transparent 52%),
    linear-gradient(110deg, #111722 0%, #e8eef8 20%, #4a5363 36%, #090c12 58%, #bbc8d8 83%, #222938 100%);
  box-shadow:
    0 46px 70px rgba(0, 0, 0, 0.62),
    0 0 44px rgba(142, 233, 255, 0.2),
    inset 0 0 18px rgba(255, 255, 255, 0.22);
  transform: rotate(-8deg);
  animation: float 5.8s ease-in-out infinite;
  overflow: hidden;
}

.product-visual.has-image {
  width: min(28rem, 76vw);
  aspect-ratio: 0.78;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.08), transparent 34%),
    rgba(6, 8, 13, 0.2);
  border-radius: var(--radius);
  box-shadow:
    0 46px 70px rgba(0, 0, 0, 0.62),
    0 0 38px rgba(142, 233, 255, 0.14),
    0 0 86px rgba(154, 125, 255, 0.08);
  transform: rotate(-4deg);
  animation: productFloatImage 7.2s ease-in-out infinite;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  padding: clamp(0.7rem, 2vw, 1.5rem);
  filter:
    drop-shadow(0 44px 54px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 34px rgba(142, 233, 255, 0.24));
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 13% 16% auto;
  height: 14%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142, 233, 255, 0.24), rgba(154, 125, 255, 0.5));
  box-shadow: 0 0 24px rgba(142, 233, 255, 0.42);
}

.product-visual::after {
  content: "EXDIVO";
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%) rotate(90deg);
  color: rgba(6, 8, 13, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.product-visual.has-image::before,
.product-visual.has-image::after {
  display: none;
}

.hero-spec {
  position: absolute;
  right: 0;
  bottom: 9%;
  width: min(18rem, 78vw);
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 18, 0.62);
  backdrop-filter: blur(18px);
  z-index: 4;
}

.hero-spec strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.hero-spec span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.story-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.story-panel {
  position: sticky;
  top: 7rem;
  min-height: 28rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.story-panel::before {
  display: none;
}

.story-material {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(21rem, 82%);
  aspect-ratio: 0.8;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1.08);
  z-index: 3;
}

.story-material img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  filter:
    contrast(1.05)
    saturate(0.88)
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 22px rgba(142, 233, 255, 0.14));
}

.story-vapor,
.story-light {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

.story-vapor {
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.story-vapor span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(218, 238, 248, 0.35), rgba(132, 164, 182, 0.22) 38%, rgba(72, 98, 118, 0.12) 58%, transparent 76%);
  filter: blur(18px);
  opacity: 0.3;
  mix-blend-mode: screen;
  animation: storyVapor 12s ease-in-out infinite;
}

.story-vapor span:nth-child(1) {
  width: 24rem;
  height: 9rem;
  left: -10%;
  top: 24%;
  transform: rotate(-12deg);
}

.story-vapor span:nth-child(2) {
  width: 26rem;
  height: 10rem;
  right: -18%;
  top: 38%;
  animation-delay: -3.5s;
  transform: rotate(9deg);
}

.story-vapor span:nth-child(3) {
  width: 20rem;
  height: 8rem;
  left: 8%;
  bottom: 18%;
  animation-delay: -6.2s;
  transform: rotate(-4deg);
}

.story-light {
  left: 18%;
  right: 18%;
  bottom: 22%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(142, 233, 255, 0.78), rgba(154, 125, 255, 0.32), transparent);
  box-shadow: 0 0 36px rgba(142, 233, 255, 0.62);
  animation: storyLight 6s ease-in-out infinite;
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-copy p {
  margin: 0;
  color: #c6ceda;
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
  line-height: 1.82;
  letter-spacing: 0.01em;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.metric {
  padding: 1.25rem;
  background: rgba(8, 11, 17, 0.82);
}

.metric strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 650;
}

.metric span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.tech-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    radial-gradient(circle at 75% 22%, rgba(142, 233, 255, 0.1), transparent 28rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.product-card {
  min-height: 30rem;
  display: grid;
  grid-template-rows: minmax(15rem, 1fr) auto;
  background:
    radial-gradient(circle at 50% 18%, rgba(142, 233, 255, 0.12), transparent 14rem),
    rgba(10, 13, 20, 0.9);
}

.product-card-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-click-link,
.story-product-link,
.selector-product-link,
.lifestyle-product-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.product-click-link {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
}

.product-card-media > .product-click-link {
  width: 100%;
  height: 100%;
}

.product-click-link:focus-visible,
.story-product-link:focus-visible,
.selector-product-link:focus-visible,
.lifestyle-product-link:focus-visible {
  outline: 1px solid rgba(142, 233, 255, 0.72);
  outline-offset: 0.35rem;
  border-radius: var(--radius);
}

.product-card-media::before {
  content: "";
  position: absolute;
  width: 62%;
  height: 46%;
  border-radius: 50%;
  background: rgba(154, 125, 255, 0.13);
  filter: blur(30px);
}

.product-card .product-mini {
  position: relative;
  width: min(7.4rem, 44%);
  aspect-ratio: 0.5;
  border-radius: 28% 28% 20% 20% / 12% 12% 8% 8%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36) 49%, transparent 54%),
    linear-gradient(115deg, #111620, #dde5ef 22%, #485160 39%, #0b0f17 60%, #aab7c9 84%);
  box-shadow: 0 30px 44px rgba(0, 0, 0, 0.58), 0 0 28px rgba(142, 233, 255, 0.17);
  transform: rotate(var(--tilt, -6deg));
  transition:
    transform 420ms ease,
    filter 420ms ease,
    box-shadow 420ms ease;
}

.product-mini.has-image {
  width: min(13.5rem, 78%);
  aspect-ratio: 0.82;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.07), transparent 38%),
    rgba(6, 8, 13, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 30px 44px rgba(0, 0, 0, 0.46), 0 0 28px rgba(142, 233, 255, 0.12);
}

.product-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  padding: 0.7rem;
  filter:
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 22px rgba(142, 233, 255, 0.22));
  transition:
    transform 420ms ease,
    filter 420ms ease;
  transform-origin: center;
}

.product-card:hover .product-mini,
.product-card:focus-within .product-mini,
.product-click-link:hover .product-mini {
  transform: rotate(var(--tilt, -6deg)) scale(1.13) translateY(-0.35rem);
  box-shadow: 0 38px 54px rgba(0, 0, 0, 0.58), 0 0 44px rgba(142, 233, 255, 0.22);
}

.product-card:hover .product-mini img,
.product-card:focus-within .product-mini img,
.product-click-link:hover .product-mini img {
  transform: scale(1.06);
  filter:
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 34px rgba(142, 233, 255, 0.3));
}

.product-card-content {
  padding: 1.25rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 650;
  letter-spacing: 0.005em;
}

.product-card p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.78;
  letter-spacing: 0.005em;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.feature-list span {
  padding: 0.38rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #cbd6e6;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.035);
}

.color-selector-section {
  background:
    radial-gradient(circle at 50% 22%, rgba(142, 233, 255, 0.08), transparent 28rem),
    radial-gradient(circle at 72% 54%, rgba(154, 125, 255, 0.09), transparent 26rem);
}

.color-selector-shell {
  display: grid;
  gap: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 30%),
    rgba(7, 10, 16, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 40px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

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

.selector-copy .section-title,
.selector-copy .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.selector-stage {
  position: relative;
  min-height: clamp(28rem, 52vw, 38rem);
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(142, 233, 255, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--selector-glow), 0.24), transparent 15rem),
    radial-gradient(circle at 50% 62%, rgba(154, 125, 255, 0.08), transparent 22rem),
    radial-gradient(circle at 50% 74%, rgba(var(--selector-glow), 0.12), transparent 24rem),
    rgba(3, 5, 9, 0.54);
  transition: background 420ms ease;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.selector-stage::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 22.5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--selector-glow), 0.82), transparent);
  box-shadow: 0 0 30px rgba(var(--selector-glow), 0.4);
  transition: background 420ms ease, box-shadow 420ms ease;
}

.selector-stage::after {
  content: "";
  position: absolute;
  left: 28%;
  right: 28%;
  bottom: 20%;
  height: 3rem;
  background: radial-gradient(ellipse, rgba(var(--selector-glow), 0.16), transparent 68%);
  filter: blur(12px);
  transition: background 420ms ease;
}

.selector-orbit {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(29rem, 64vw);
  aspect-ratio: 1;
  border: 1px solid rgba(var(--selector-glow), 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 38px rgba(var(--selector-glow), 0.04);
  opacity: 0.78;
  transition: border-color 420ms ease, box-shadow 420ms ease;
}

.selector-vapor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.selector-vapor span {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(226, 243, 255, 0.2), rgba(var(--selector-glow), 0.08) 42%, transparent 74%);
  filter: blur(16px);
  opacity: 0.42;
  mix-blend-mode: screen;
  animation: selectorVapor 10s ease-in-out infinite;
  transition: background 420ms ease;
}

.selector-vapor span:nth-child(1) {
  width: 22rem;
  height: 8rem;
  left: 18%;
  top: 28%;
  transform: rotate(-8deg);
}

.selector-vapor span:nth-child(2) {
  width: 24rem;
  height: 8.5rem;
  right: 16%;
  top: 42%;
  animation-delay: -3.4s;
  transform: rotate(9deg);
}

.selector-vapor span:nth-child(3) {
  width: 18rem;
  height: 7rem;
  left: 34%;
  bottom: 24%;
  animation-delay: -6.6s;
  transform: rotate(-3deg);
}

.selector-product-frame {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 100%;
  padding: 2rem 0;
  z-index: 2;
}

.selector-product-name {
  margin: 0 0 1.25rem;
  color: #eef7ff;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 650;
  letter-spacing: 0.01em;
}

.selector-product-link {
  display: grid;
  place-items: center;
  transition: filter var(--transition), transform var(--transition);
}

.selector-product-link:hover {
  transform: translateY(-0.25rem) scale(1.015);
  filter: drop-shadow(0 0 28px var(--selector-glow));
}

.selector-product-image {
  width: min(24rem, 72vw);
  aspect-ratio: 0.8;
  object-fit: contain;
  border-radius: var(--radius);
  padding: clamp(0.8rem, 2vw, 1.4rem);
  filter:
    drop-shadow(0 44px 56px rgba(0, 0, 0, 0.68))
    drop-shadow(0 0 34px rgba(var(--selector-glow), 0.2))
    drop-shadow(0 0 82px rgba(var(--selector-glow), 0.08));
  transition:
    opacity 260ms ease,
    transform 420ms ease,
    filter 420ms ease;
  animation: selectorFloat 6.8s ease-in-out infinite;
}

.selector-product-image.is-switching {
  opacity: 0;
  transform: translateY(8px) scale(0.98);
}

.selector-color-name {
  margin: 1.2rem 0 0;
  color: var(--silver);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 220ms ease, transform 220ms ease;
}

.selector-color-name.is-switching {
  opacity: 0;
  transform: translateY(0.35rem);
}

.selector-arrow {
  position: relative;
  z-index: 3;
  width: 2.7rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #eaf6ff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.selector-arrow:hover {
  border-color: rgba(var(--selector-glow), 0.68);
  box-shadow: 0 0 24px rgba(var(--selector-glow), 0.18);
  transform: translateY(-1px);
}

.selector-controls {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.color-swatch {
  width: 2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.86), transparent 24%),
    var(--swatch);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.color-swatch:hover {
  transform: translateY(-1px) scale(1.08);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 0 22px rgba(var(--swatch-glow), 0.18),
    inset 0 0 10px rgba(0, 0, 0, 0.28);
}

.color-swatch.is-active {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 3px rgba(3, 5, 9, 0.9),
    0 0 0 5px rgba(var(--swatch-glow), 0.86),
    0 0 28px rgba(var(--swatch-glow), 0.32),
    inset 0 0 10px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.selector-cta {
  justify-self: center;
}

.flavor-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.flavor-orbit {
  position: relative;
  min-height: 31rem;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.flavor-core {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(12rem, 25vw, 19rem);
  aspect-ratio: 1;
  border: 1px solid rgba(142, 233, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(244, 247, 251, 0.12), transparent 34%),
    conic-gradient(from 120deg, rgba(142, 233, 255, 0.08), rgba(154, 125, 255, 0.26), rgba(220, 231, 245, 0.1), rgba(142, 233, 255, 0.08));
  box-shadow: 0 0 80px rgba(142, 233, 255, 0.1), inset 0 0 44px rgba(255, 255, 255, 0.06);
  animation: pulse 4.5s ease-in-out infinite;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition:
    transform 1.05s ease,
    box-shadow 1.05s ease,
    border-color 1.05s ease;
  z-index: 8;
}

.flavor-core::before {
  content: "";
  position: absolute;
  inset: -0.75rem;
  border: 1px solid rgba(0, 174, 255, 0.14);
  border-radius: 50%;
  opacity: 0.54;
  transform: scale(0.94);
  animation: flavorPulseRing 4.8s ease-in-out infinite;
}

.flavor-tap-hint {
  position: absolute;
  top: 43%;
  left: 50%;
  bottom: auto;
  z-index: 20;
  color: rgba(110, 110, 115, 0.66);
  font-size: 0.66rem;
  font-weight: 560;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

.flavor-welcome {
  position: absolute;
  z-index: 20;
  width: max-content;
  max-width: min(24rem, 86vw);
  color: #1d1d1f;
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: 0;
  transform: translateY(0.45rem) scale(0.96);
  transition:
    opacity 1s ease,
    transform 1s ease;
  pointer-events: none;
}

.flavor-note {
  position: absolute;
  width: min(14rem, 40vw);
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 11, 18, 0.6);
  color: #d9e2ee;
  backdrop-filter: blur(14px);
  z-index: 3;
  transition:
    opacity 900ms ease,
    transform 900ms ease,
    filter 900ms ease;
}

.flavor-note strong {
  display: block;
  font-size: 0.82rem;
}

.flavor-note span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.flavor-note:nth-child(2) {
  top: 8%;
  left: 2%;
  --gather-x: 5.8rem;
  --gather-y: 8rem;
}

.flavor-note:nth-child(3) {
  top: 22%;
  right: 0;
  --gather-x: -7rem;
  --gather-y: 3.2rem;
}

.flavor-note:nth-child(4) {
  left: 14%;
  bottom: 8%;
  --gather-x: 4rem;
  --gather-y: -6.8rem;
}

.flavor-note:nth-child(5) {
  right: 8%;
  bottom: 6%;
  --gather-x: -4.4rem;
  --gather-y: -7rem;
}

.flavor-note:nth-child(6) {
  left: 30%;
  top: 0;
  --gather-x: 0.8rem;
  --gather-y: 9rem;
}

.flavor-note:nth-child(7) {
  right: 28%;
  bottom: 24%;
  --gather-x: -0.4rem;
  --gather-y: -2.2rem;
}

.flavor-orbit.is-revealed .flavor-note {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(var(--gather-x, 0), var(--gather-y, 0), 0) scale(0.72);
  pointer-events: none;
}

.flavor-orbit.is-revealed .flavor-core {
  transform: scale(1.08);
  border-color: rgba(0, 174, 255, 0.26);
  box-shadow:
    0 0 90px rgba(0, 174, 255, 0.18),
    0 0 120px rgba(154, 125, 255, 0.12),
    inset 0 0 56px rgba(255, 255, 255, 0.18);
}

.flavor-orbit.is-revealed .flavor-tap-hint {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 0.5rem));
}

.flavor-orbit.is-revealed .flavor-welcome {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lifestyle {
  min-height: 90svh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(5, 6, 9, 0.16), rgba(5, 6, 9, 0.88) 76%),
    radial-gradient(circle at 18% 44%, rgba(142, 233, 255, 0.12), transparent 25rem),
    radial-gradient(circle at 78% 36%, rgba(154, 125, 255, 0.15), transparent 29rem),
    radial-gradient(circle at 66% 67%, rgba(214, 238, 255, 0.08), transparent 18rem),
    #050609;
  overflow: hidden;
}

.lifestyle::before {
  content: "";
  position: absolute;
  inset: 10% -8% auto;
  height: 28rem;
  background:
    radial-gradient(ellipse at 68% 52%, rgba(178, 233, 255, 0.18), transparent 33%),
    linear-gradient(100deg, transparent 8%, rgba(142, 233, 255, 0.12) 9%, transparent 13%),
    linear-gradient(86deg, transparent 48%, rgba(154, 125, 255, 0.14) 49%, transparent 53%);
  filter: blur(4px);
  opacity: 0.72;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.lifestyle-copy {
  max-width: 640px;
}

.lifestyle .eyebrow {
  margin-bottom: 1.6rem;
}

.lifestyle .section-title {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.lifestyle .section-copy {
  max-width: 34rem;
  margin-top: 2rem;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.85;
}

.lifestyle-atmosphere {
  position: relative;
  min-height: clamp(34rem, 52vw, 44rem);
  display: grid;
  align-items: end;
  padding: clamp(1.2rem, 3vw, 2.6rem);
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(104, 209, 255, 0.28), transparent 18rem),
    radial-gradient(ellipse at 92% 65%, rgba(154, 125, 255, 0.14), transparent 21rem),
    radial-gradient(ellipse at 38% 72%, rgba(216, 234, 246, 0.08), transparent 22rem),
    linear-gradient(126deg, rgba(255, 255, 255, 0.09), transparent 21%, rgba(255, 255, 255, 0.035) 56%, transparent),
    linear-gradient(180deg, #05080d 0%, #0d1420 48%, #05070b 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(142, 233, 255, 0.08),
    0 36px 90px rgba(8, 15, 24, 0.22);
  overflow: hidden;
}

.lifestyle-atmosphere::before {
  content: "";
  position: absolute;
  inset: 2% 0 8% 8%;
  background:
    linear-gradient(108deg, transparent 0 36%, rgba(219, 242, 255, 0.17) 37%, transparent 41%),
    linear-gradient(102deg, transparent 0 58%, rgba(142, 233, 255, 0.08) 59%, transparent 63%),
    radial-gradient(circle at 28% 34%, rgba(230, 246, 255, 0.24) 0 1px, transparent 1.4px),
    radial-gradient(circle at 68% 58%, rgba(230, 246, 255, 0.14) 0 1px, transparent 1.5px);
  background-size: auto, auto, 54px 44px, 82px 72px;
  clip-path: polygon(12% 0, 100% 0, 82% 100%, 0 100%);
  opacity: 0.56;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 76%, transparent);
}

.lifestyle-atmosphere::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 4%;
  bottom: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 244, 255, 0.62), rgba(154, 125, 255, 0.2), transparent);
  box-shadow:
    0 0 26px rgba(142, 233, 255, 0.3),
    0 18px 72px rgba(142, 233, 255, 0.2);
}

.environment-traces {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.environment-traces::before {
  content: "";
  position: absolute;
  right: -10%;
  top: 8%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(142, 233, 255, 0.09);
  border-radius: 50%;
  box-shadow: inset 0 0 58px rgba(0, 0, 0, 0.66);
  opacity: 0.34;
}

.environment-traces::after {
  content: "";
  position: absolute;
  inset: 10% 10% 16% 18%;
  background-image:
    radial-gradient(circle, rgba(226, 242, 255, 0.18) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(142, 233, 255, 0.1) 0 1px, transparent 1.5px);
  background-size: 48px 42px, 76px 68px;
  filter: blur(0.2px);
  opacity: 0.28;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 70%, transparent);
}

.trace {
  position: absolute;
  display: block;
}

.trace-glass {
  left: 7%;
  top: 2%;
  width: 78%;
  height: 84%;
  border-left: 1px solid rgba(219, 240, 255, 0.12);
  border-right: 1px solid rgba(142, 233, 255, 0.06);
  background:
    linear-gradient(100deg, transparent 0 36%, rgba(220, 242, 255, 0.07) 37%, transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 44%);
  clip-path: polygon(14% 0, 100% 0, 82% 100%, 0 100%);
  opacity: 0.48;
}

.trace-glass::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 18%;
  width: 8rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(213, 237, 250, 0.14), transparent 66%);
  filter: blur(10px);
  transform: rotate(-18deg);
}

.trace-wheel {
  right: -9rem;
  bottom: 4.7rem;
  width: 27rem;
  aspect-ratio: 1;
  border: 1px solid rgba(170, 213, 235, 0.1);
  border-radius: 50%;
  box-shadow:
    inset 0 0 34px rgba(0, 0, 0, 0.68),
    0 0 26px rgba(142, 233, 255, 0.07);
  opacity: 0.22;
}

.trace-wheel::before {
  content: "";
  position: absolute;
  inset: 34%;
  border-radius: 50%;
  border: 1px solid rgba(214, 232, 245, 0.1);
}

.trace-wheel::after {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: 49%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(142, 233, 255, 0.24), transparent);
  transform: rotate(-12deg);
}

.trace-touch {
  left: 18%;
  bottom: 8.2rem;
  width: 12rem;
  height: 4.8rem;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 48%, rgba(255, 255, 255, 0.12), transparent 16%),
    radial-gradient(ellipse at 48% 44%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(ellipse at 64% 47%, rgba(255, 255, 255, 0.06), transparent 18%);
  filter: blur(5px);
  opacity: 0.24;
  transform: rotate(-10deg);
}

.vapor-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.vapor-field span {
  position: absolute;
  width: 26rem;
  height: 9rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(222, 242, 255, 0.36), rgba(112, 161, 190, 0.18) 44%, transparent 74%);
  filter: blur(26px);
  opacity: 0.42;
  animation: vaporDrift 16s ease-in-out infinite;
}

.vapor-field span:nth-child(1) {
  left: -8%;
  top: 24%;
}

.vapor-field span:nth-child(2) {
  right: -5%;
  top: 29%;
  width: 30rem;
  animation-delay: -4s;
}

.vapor-field span:nth-child(3) {
  left: 24%;
  bottom: 25%;
  width: 28rem;
  opacity: 0.26;
  animation-delay: -7s;
}

.hand-shadow {
  position: absolute;
  left: 6%;
  right: 2%;
  bottom: 5.6rem;
  width: auto;
  height: 9.5rem;
  border-radius: 58% 42% 44% 40%;
  background:
    radial-gradient(ellipse at 72% 36%, rgba(255, 255, 255, 0.065), transparent 22%),
    linear-gradient(95deg, rgba(12, 16, 22, 0.04), rgba(0, 0, 0, 0.72) 54%, rgba(142, 233, 255, 0.045));
  filter: blur(1.5px);
  opacity: 0.58;
  transform: rotate(-4deg);
}

.lifestyle-product {
  position: absolute;
  left: auto;
  right: -8rem;
  top: 48%;
  width: min(25rem, 50vw);
  aspect-ratio: 0.8;
  transform: translateY(-50%) rotate(-12deg);
  z-index: 2;
  opacity: 0.46;
  clip-path: inset(0 0 0 42%);
  mask-image: linear-gradient(90deg, transparent 0, #000 36%, #000 76%, transparent 100%);
  animation: lifestyleDeviceDrift 12s ease-in-out infinite;
}

.lifestyle-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  padding: 0;
  filter:
    saturate(0.78)
    contrast(0.95)
    drop-shadow(0 34px 42px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 34px rgba(142, 233, 255, 0.16));
}

.atmosphere-signals {
  position: absolute;
  left: clamp(1.1rem, 4vw, 3rem);
  bottom: clamp(1.4rem, 4vw, 3rem);
  z-index: 3;
  display: grid;
  gap: 1.25rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  width: min(24rem, 74%);
  margin: 0;
}

.atmosphere-signal {
  min-height: auto;
  padding: 0 0 0 1.1rem;
  display: grid;
  align-content: end;
  gap: 0.38rem;
  border-left: 1px solid rgba(142, 233, 255, 0.34);
  border-bottom: 0;
  background: transparent;
}

.atmosphere-signal strong {
  color: rgba(239, 250, 255, 0.94);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.atmosphere-signal span {
  color: rgba(212, 226, 238, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.55;
}

.final-cta {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: clamp(6rem, 12vw, 10rem);
  background:
    radial-gradient(circle at 50% 45%, rgba(210, 244, 252, 0.7), transparent 24rem),
    radial-gradient(circle at 50% 54%, rgba(230, 224, 252, 0.34), transparent 34rem),
    radial-gradient(circle at 18% 20%, rgba(237, 248, 252, 0.56), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 55%, #ffffff 100%);
  overflow: hidden;
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.final-cta::before {
  left: 50%;
  top: 48%;
  width: min(88rem, 120vw);
  height: min(42rem, 62vw);
  border-radius: 50%;
  background:
    linear-gradient(96deg, transparent 8%, rgba(255, 255, 255, 0.78) 36%, rgba(184, 226, 242, 0.2) 58%, transparent 84%),
    radial-gradient(ellipse at 50% 48%, rgba(204, 239, 250, 0.24), transparent 66%);
  filter: blur(32px);
  opacity: 0.64;
  transform: translate(-50%, -50%) rotate(-7deg);
  animation: portalLightFlow 18s ease-in-out infinite;
}

.final-cta::after {
  inset: 16% 12%;
  background-image:
    radial-gradient(circle, rgba(82, 184, 214, 0.18) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(154, 125, 255, 0.11) 0 1px, transparent 1.6px);
  background-size: 92px 74px, 138px 118px;
  filter: blur(0.3px);
  opacity: 0.28;
  animation: portalDustDrift 24s ease-in-out infinite;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 14%, transparent 74%);
}

.final-cta .section-inner {
  position: relative;
  z-index: 2;
}

.final-cta .section-title,
.final-cta .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.final-cta .eyebrow {
  position: relative;
  z-index: 3;
}

.final-cta .section-title {
  position: relative;
  z-index: 3;
  max-width: 10ch;
  font-size: clamp(3.4rem, 7vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.final-cta .section-copy {
  position: relative;
  z-index: 3;
  max-width: 35rem;
  color: rgba(29, 29, 31, 0.56);
}

.final-actions {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.portal-core {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 45%;
  width: min(38rem, 78vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.portal-core span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, 0.76), transparent 28%),
    radial-gradient(circle at 50% 52%, rgba(142, 233, 255, 0.16), transparent 58%),
    radial-gradient(circle at 58% 60%, rgba(154, 125, 255, 0.08), transparent 70%);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.54),
    inset 0 0 130px rgba(142, 233, 255, 0.08),
    0 0 90px rgba(142, 233, 255, 0.08);
  opacity: 0.62;
  animation: portalCoreBreathe 10s ease-in-out infinite;
}

.portal-core span:nth-child(2) {
  inset: 9%;
  border: 1px solid rgba(142, 205, 230, 0.12);
  background: transparent;
  opacity: 0.42;
  mask-image: linear-gradient(120deg, transparent 0 18%, #000 36% 68%, transparent 90%);
  animation: portalCoreRotate 58s linear infinite;
}

.portal-core span:nth-child(3) {
  inset: 20% -8%;
  border-radius: 999px;
  background:
    linear-gradient(92deg, transparent, rgba(255, 255, 255, 0.52), rgba(176, 226, 246, 0.16), transparent),
    radial-gradient(ellipse at 52% 50%, rgba(255, 255, 255, 0.2), transparent 60%);
  filter: blur(16px);
  opacity: 0.28;
  transform: rotate(-9deg);
  animation: portalAirFlow 14s ease-in-out infinite;
}

.portal-particles {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.portal-particles span {
  position: absolute;
  width: 0.22rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(76, 185, 220, 0.46);
  box-shadow: 0 0 14px rgba(76, 185, 220, 0.2);
  opacity: 0.24;
  animation: portalParticleFloat 13s ease-in-out infinite;
}

.portal-particles span:nth-child(1) { left: 29%; top: 34%; animation-delay: -1s; }
.portal-particles span:nth-child(2) { left: 68%; top: 32%; animation-delay: -3s; }
.portal-particles span:nth-child(3) { left: 72%; top: 58%; animation-delay: -5s; }
.portal-particles span:nth-child(4) { left: 36%; top: 64%; animation-delay: -7s; }
.portal-particles span:nth-child(5) { left: 49%; top: 25%; animation-delay: -9s; }
.portal-particles span:nth-child(6) { left: 55%; top: 70%; animation-delay: -11s; }

.portal-trigger {
  position: relative;
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.45rem;
  border: 1px solid rgba(29, 29, 31, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.42));
  color: rgba(29, 29, 31, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 44px rgba(29, 29, 31, 0.07),
    0 0 0 rgba(142, 233, 255, 0);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease, color 320ms ease;
}

.portal-trigger::before,
.portal-trigger::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.portal-trigger::before {
  inset: -80%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 233, 255, 0.18), transparent 58%);
  opacity: 0;
  transform: scale(0.45);
  transition: opacity 420ms ease, transform 650ms ease;
}

.portal-trigger::after {
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.66), transparent 62%);
  translate: -130% 0;
  transition: translate 720ms ease;
}

.portal-trigger span {
  position: relative;
  z-index: 1;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.portal-trigger:hover {
  border-color: rgba(78, 184, 220, 0.32);
  color: rgba(29, 29, 31, 0.94);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 52px rgba(29, 29, 31, 0.08),
    0 0 40px rgba(142, 233, 255, 0.18);
}

.portal-trigger:hover::before {
  opacity: 1;
  transform: scale(1);
}

.portal-trigger:hover::after {
  translate: 130% 0;
}

.portal-secondary {
  color: rgba(29, 29, 31, 0.34);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 240ms ease, text-shadow 240ms ease;
}

.portal-secondary:hover {
  color: rgba(29, 29, 31, 0.72);
  text-shadow: 0 0 18px rgba(142, 233, 255, 0.18);
}

.portal-transition {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  background: rgba(246, 250, 252, 0);
  overflow: hidden;
}

.portal-transition span {
  position: absolute;
  width: 18rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 1), rgba(232, 244, 249, 0.72) 35%, rgba(204, 232, 244, 0.32) 62%, transparent 74%);
  filter: blur(20px);
  opacity: 0;
  transform: scale(0.25);
}

.portal-transition span:nth-child(2) {
  filter: blur(36px);
}

.portal-transition span:nth-child(3) {
  filter: blur(58px);
}

.portal-transition.is-active {
  opacity: 1;
  background: rgba(246, 250, 252, 0.42);
  transition: background 900ms ease;
}

.portal-transition.is-active span {
  animation: portalFogCover 1.25s cubic-bezier(0.16, 0.84, 0.28, 1) forwards;
}

.portal-transition.is-active span:nth-child(2) {
  animation-delay: 0.08s;
}

.portal-transition.is-active span:nth-child(3) {
  animation-delay: 0.16s;
}

.compliance {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(2, 3, 6, 0.9);
  padding: 1.4rem clamp(1rem, 4vw, 3rem) 2.2rem;
}

.compliance-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 0.7rem;
  color: var(--warning);
  font-size: 0.76rem;
  line-height: 1.6;
}

.compliance strong {
  color: #f2f6fb;
}

@keyframes portalLightFlow {
  0%,
  100% {
    opacity: 0.46;
    transform: translate(-52%, -50%) rotate(-9deg) scaleX(0.98);
  }
  50% {
    opacity: 0.78;
    transform: translate(-48%, -51%) rotate(-5deg) scaleX(1.04);
  }
}

@keyframes portalDustDrift {
  0%,
  100% {
    opacity: 0.16;
    transform: translate3d(-1rem, 0.4rem, 0);
  }
  50% {
    opacity: 0.38;
    transform: translate3d(1.2rem, -0.6rem, 0);
  }
}

@keyframes portalCoreBreathe {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.055);
  }
}

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

@keyframes portalAirFlow {
  0%,
  100% {
    opacity: 0.16;
    translate: -1.2rem 0.25rem;
    scale: 0.96 0.9;
  }
  50% {
    opacity: 0.34;
    translate: 1.4rem -0.2rem;
    scale: 1.05 1.1;
  }
}

@keyframes portalParticleFloat {
  0%,
  100% {
    opacity: 0.12;
    transform: translate3d(0, 0, 0) scale(0.72);
  }
  50% {
    opacity: 0.46;
    transform: translate3d(0.8rem, -1rem, 0) scale(1);
  }
}

@keyframes portalFogCover {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  18% {
    opacity: 0.96;
  }
  100% {
    opacity: 1;
    transform: scale(7.5);
  }
}

.site-editor {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  font-family: Inter, Arial, sans-serif;
}

.editor-toggle {
  min-height: 2.6rem;
  padding: 0 1.15rem;
  border: 1px solid rgba(142, 233, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 11, 18, 0.72);
  color: #eefbff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(142, 233, 255, 0.14);
  backdrop-filter: blur(16px);
}

.editor-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(31rem, 100vw);
  height: 100svh;
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 0.9rem;
  padding: 1rem;
  border-left: 1px solid rgba(142, 233, 255, 0.18);
  background: rgba(5, 7, 12, 0.96);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.48);
  transform: translateX(105%);
  transition: transform 260ms ease;
  backdrop-filter: blur(22px);
}

.editor-panel.is-open {
  transform: translateX(0);
}

.editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #f4f7fb;
}

.editor-head strong {
  font-size: 1rem;
  font-weight: 650;
}

.editor-close {
  width: 2.2rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #f4f7fb;
  font-size: 1.3rem;
  cursor: pointer;
}

.editor-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.editor-fields {
  min-height: 0;
  overflow: auto;
  padding-right: 0.4rem;
}

.editor-group {
  margin: 0 0 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.editor-group summary {
  padding: 0.72rem 0.85rem;
  color: #dce7f5;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.editor-field {
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem 0.85rem;
}

.editor-field span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
  word-break: break-all;
}

.editor-field input,
.editor-field textarea,
.editor-export-box {
  width: 100%;
  border: 1px solid rgba(142, 233, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  color: #f4f7fb;
  font: inherit;
  font-size: 0.82rem;
  line-height: 1.5;
  padding: 0.65rem 0.7rem;
  outline: none;
}

.editor-field textarea {
  resize: vertical;
}

.editor-field input:focus,
.editor-field textarea:focus {
  border-color: rgba(142, 233, 255, 0.58);
  box-shadow: 0 0 0 3px rgba(142, 233, 255, 0.08);
}

.editor-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.editor-actions button {
  min-height: 2.3rem;
  border: 1px solid rgba(142, 233, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: #eefbff;
  font-size: 0.74rem;
  font-weight: 800;
  cursor: pointer;
}

.editor-export-box {
  display: none;
  height: 8rem;
  resize: vertical;
}

.editor-export-box.is-visible {
  display: block;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 760ms ease,
    transform 760ms ease;
}

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

.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 1.5s ease-out 0.5s,
    transform 1.5s ease-out 0.5s;
  will-change: opacity, transform;
}

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

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

@keyframes flavorPulseRing {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.94);
  }
  48% {
    opacity: 0.5;
    transform: scale(1.08);
  }
}

@keyframes productFloatImage {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
    box-shadow:
      0 46px 70px rgba(0, 0, 0, 0.62),
      0 0 34px rgba(142, 233, 255, 0.12),
      0 0 78px rgba(154, 125, 255, 0.07);
  }
  50% {
    transform: translateY(-12px) rotate(-3deg);
    box-shadow:
      0 52px 76px rgba(0, 0, 0, 0.66),
      0 0 52px rgba(142, 233, 255, 0.19),
      0 0 96px rgba(154, 125, 255, 0.1);
  }
}

@keyframes heroGlowBreathe {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes heroGlowSlowMove {
  0%,
  100% {
    opacity: 0.62;
    transform: translate3d(0, 0, 0) scale(0.98);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(-2.2rem, 1.4rem, 0) scale(1.04);
  }
}

@keyframes breathPulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.94);
  }
  48% {
    opacity: 0.66;
    transform: scale(1.06);
  }
}

@keyframes airflowMove {
  0%,
  100% {
    opacity: 0.18;
    clip-path: inset(0 82% 0 0);
  }
  45% {
    opacity: 0.7;
    clip-path: inset(0 0 0 18%);
  }
  70% {
    opacity: 0.3;
    clip-path: inset(0 0 0 68%);
  }
}

@keyframes heroVaporDrift {
  0%,
  100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.96);
  }
  50% {
    opacity: 0.54;
    transform: translate3d(2.2rem, -1.1rem, 0) rotate(-2deg) scale(1.08);
  }
}

@keyframes storyVapor {
  0%,
  100% {
    opacity: 0.18;
    translate: -1rem 0.2rem;
    scale: 0.96;
  }
  50% {
    opacity: 0.35;
    translate: 1.45rem -0.7rem;
    scale: 1.08;
  }
}

@keyframes storyLight {
  0%,
  100% {
    opacity: 0.36;
  }
  50% {
    opacity: 0.82;
  }
}

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

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

@keyframes vaporDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(0.96);
    opacity: 0.42;
  }
  50% {
    transform: translate3d(2.4rem, -1.2rem, 0) scale(1.08);
    opacity: 0.72;
  }
}

@keyframes selectorFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -0.55rem;
  }
}

@keyframes selectorVapor {
  0%,
  100% {
    opacity: 0.28;
    translate: -0.9rem 0.2rem;
    scale: 0.96;
  }
  50% {
    opacity: 0.54;
    translate: 1.2rem -0.65rem;
    scale: 1.06;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .story-layout,
  .flavor-layout,
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: start;
  }

  .hero-grid {
    padding-top: 3rem;
  }

  .hero-airflow {
    inset: 24% -22% 22% -22%;
  }

  .hero-vapor span {
    opacity: 0.34;
  }

  .story-panel {
    position: relative;
    top: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .selector-stage {
    grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 0.82rem 1rem;
  }

  .brand-mark {
    font-size: 0.78rem;
  }

  .nav-cta {
    min-height: 2.28rem;
    padding: 0 0.85rem;
    font-size: 0.76rem;
  }

  .section {
    padding: 4.4rem 1rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .hero-breath {
    width: min(23rem, 88vw);
  }

  .hero-vapor span:nth-child(1) {
    left: -18%;
    top: 20%;
  }

  .hero-vapor span:nth-child(2) {
    right: -34%;
    bottom: 34%;
  }

  .hero-spec {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1.2rem;
  }

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

  .product-card {
    min-height: 25rem;
  }

  .selector-stage {
    min-height: 31rem;
    gap: 0.35rem;
  }

  .selector-product-image {
    width: min(18rem, 72vw);
  }

  .selector-arrow {
    width: 2.35rem;
    font-size: 1.65rem;
  }

  .flavor-note {
    position: absolute;
    width: min(13.9rem, 48vw);
    padding: 0.78rem 0.82rem;
  }

  .flavor-orbit {
    min-height: 38rem;
    width: min(100%, 28rem);
    margin: 0 auto;
    overflow: visible;
  }

  .flavor-core {
    width: min(19rem, 68vw);
    margin: 0;
  }

  .flavor-note:nth-child(2) {
    top: 15%;
    left: 0;
    --gather-x: 6.4rem;
    --gather-y: 7.6rem;
  }

  .flavor-note:nth-child(3) {
    top: 27%;
    right: -2.6rem;
    --gather-x: -6.2rem;
    --gather-y: 3.2rem;
  }

  .flavor-note:nth-child(4) {
    left: 14%;
    bottom: 9%;
    --gather-x: 3.2rem;
    --gather-y: -6.2rem;
  }

  .flavor-note:nth-child(5) {
    right: 0;
    bottom: 7%;
    --gather-x: -4.7rem;
    --gather-y: -6.8rem;
  }

  .flavor-note:nth-child(6) {
    left: 30%;
    top: 8%;
    --gather-x: 0.5rem;
    --gather-y: 8rem;
  }

  .flavor-note:nth-child(7) {
    right: 18%;
    bottom: 21%;
    --gather-x: -1rem;
    --gather-y: -2.3rem;
  }

  .lifestyle {
    min-height: auto;
  }

  .lifestyle-atmosphere {
    min-height: 34rem;
  }

  .lifestyle-product {
    width: min(15rem, 76vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Light theme preview */
:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --panel: rgba(255, 255, 255, 0.76);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --text: #07090d;
  --muted: #3c4654;
  --dim: #66717f;
  --line: rgba(10, 18, 28, 0.12);
  --warning: #4e5967;
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(142, 233, 255, 0.18), transparent 30rem),
    radial-gradient(circle at 84% 6%, rgba(154, 125, 255, 0.13), transparent 31rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 42%, #ffffff 100%);
  color: var(--text);
}

.noise {
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(5, 8, 13, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 8, 13, 0.035) 1px, transparent 1px);
}

.cursor-glow {
  background: radial-gradient(circle, rgba(0, 174, 255, 0.12), transparent 64%);
}

.site-header {
  border-bottom-color: rgba(6, 10, 16, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.desktop-nav,
.section-copy,
.story-copy p,
.product-card p,
.feature-list span,
.flavor-note span,
.atmosphere-signal span,
.compliance p,
.hero-spec span,
.metric span,
.editor-field label,
.editor-help {
  color: var(--muted);
}

.glass-button,
.nav-cta,
.selector-cta,
.editor-toggle,
.editor-action {
  border-color: rgba(8, 13, 20, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #07090d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 30px rgba(10, 18, 28, 0.08);
}

.glass-button:hover,
.nav-cta:hover,
.selector-cta:hover {
  border-color: rgba(0, 174, 255, 0.42);
  box-shadow: 0 0 28px rgba(0, 174, 255, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
}

.hero h1 span {
  -webkit-text-stroke-color: rgba(8, 13, 20, 0.34);
  text-shadow: none;
}

.section-title,
.product-card h3,
.selector-product-name,
.atmosphere-signal strong,
.metric strong,
.hero-spec strong,
.flavor-note strong,
.editor-title h2,
.selector-color-name {
  color: #07090d;
}

.product-visual.has-image,
.story-panel,
.product-card,
.color-selector-shell,
.selector-stage,
.flavor-note,
.metric,
.hero-spec,
.compliance,
.editor-panel,
.editor-field input,
.editor-field textarea {
  border-color: rgba(8, 13, 20, 0.12);
  background:
    radial-gradient(circle at 50% 20%, rgba(142, 233, 255, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.08);
}

.product-card {
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 174, 255, 0.13), transparent 14rem),
    rgba(255, 255, 255, 0.8);
}

.product-mini.has-image,
.selector-stage {
  background:
    radial-gradient(circle at 50% 42%, rgba(var(--selector-glow, 0, 174, 255), 0.14), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(242, 246, 250, 0.72));
}

.flavor-core {
  background:
    radial-gradient(circle, rgba(8, 13, 20, 0.08), transparent 34%),
    conic-gradient(from 120deg, rgba(0, 174, 255, 0.12), rgba(154, 125, 255, 0.18), rgba(8, 13, 20, 0.08), rgba(0, 174, 255, 0.12));
}

.lifestyle-atmosphere {
  background:
    radial-gradient(ellipse at 72% 42%, rgba(104, 209, 255, 0.28), transparent 18rem),
    radial-gradient(ellipse at 92% 65%, rgba(154, 125, 255, 0.14), transparent 21rem),
    radial-gradient(ellipse at 38% 72%, rgba(216, 234, 246, 0.08), transparent 22rem),
    linear-gradient(126deg, rgba(255, 255, 255, 0.09), transparent 21%, rgba(255, 255, 255, 0.035) 56%, transparent),
    linear-gradient(180deg, #05080d 0%, #0d1420 48%, #05070b 100%);
}

.lifestyle .atmosphere-signal strong {
  color: rgba(239, 250, 255, 0.94);
}

.lifestyle .atmosphere-signal span {
  color: rgba(212, 226, 238, 0.72);
}

.compliance {
  background: rgba(255, 255, 255, 0.92);
}

.editor-panel {
  color: var(--text);
}

.editor-field input,
.editor-field textarea {
  color: var(--text);
}

/* Apple-style Lifestyle showcase */
.lifestyle-showcase {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(142, 233, 255, 0.16), transparent 26rem),
    radial-gradient(circle at 67% 58%, rgba(154, 125, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 52%, #ffffff 100%);
  overflow: hidden;
}

.lifestyle-showcase::before {
  content: "";
  position: absolute;
  inset: 7% 9% auto;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.94), rgba(218, 235, 248, 0.24) 50%, transparent 72%);
  filter: blur(18px);
  opacity: 0.78;
  animation: showcaseLightMove 12s ease-in-out infinite;
}

.lifestyle-showcase::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 111, 140, 0.22), transparent);
}

.lifestyle-showcase-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(22rem, 1.2fr) minmax(12rem, 0.55fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5.5rem);
  min-height: clamp(42rem, 76vh, 54rem);
}

.lifestyle-editorial {
  align-self: center;
}

.lifestyle-editorial .eyebrow {
  margin-bottom: 1.7rem;
  color: #697586;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
}

.lifestyle-editorial .section-title {
  max-width: 10.5ch;
  color: #05070b;
  font-size: clamp(3rem, 5.7vw, 6.35rem);
  font-weight: 640;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.lifestyle-editorial .section-copy {
  max-width: 23rem;
  margin-top: 2rem;
  color: #46515f;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.lifestyle-cta {
  margin-top: 2.1rem;
  color: #05070b;
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(8, 13, 20, 0.16);
}

.showcase-product-stage {
  position: relative;
  min-height: clamp(34rem, 58vw, 50rem);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.showcase-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.showcase-ambient span {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  opacity: 0.46;
  animation: showcaseGlow 13s ease-in-out infinite;
}

.showcase-ambient span:first-child {
  width: 34rem;
  height: 34rem;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(112, 221, 255, 0.24), transparent 68%);
}

.showcase-ambient span:last-child {
  width: 25rem;
  height: 25rem;
  right: 3%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(154, 125, 255, 0.16), transparent 70%);
  animation-delay: -5s;
}

.showcase-glass {
  position: absolute;
  inset: 16% 9% 20%;
  z-index: 1;
  border-radius: 50%;
  background:
    linear-gradient(108deg, transparent 0 44%, rgba(255, 255, 255, 0.64) 45%, transparent 49%),
    linear-gradient(78deg, transparent 0 58%, rgba(190, 220, 245, 0.2) 59%, transparent 63%);
  opacity: 0.64;
  mask-image: radial-gradient(ellipse, #000 18%, transparent 70%);
}

.showcase-vapor-burst {
  position: absolute;
  z-index: 6;
  left: calc(50% - 9.2rem);
  top: calc(50% - 21.5rem);
  width: min(42rem, 86vw);
  height: min(34rem, 68vw);
  pointer-events: none;
  opacity: 0;
  transform: rotate(-18deg);
  transform-origin: 24% 82%;
  filter: drop-shadow(0 0 18px rgba(210, 235, 245, 0.34));
}

.showcase-vapor-burst span {
  position: absolute;
  left: 8%;
  bottom: 0;
  width: 92%;
  height: 84%;
  border-radius: 999px;
  opacity: 0;
  transform-origin: 10% 92%;
  background:
    radial-gradient(ellipse at 5% 92%, rgba(255, 255, 255, 0.98), transparent 7%),
    radial-gradient(ellipse at 13% 76%, rgba(255, 255, 255, 0.96), transparent 15%),
    radial-gradient(ellipse at 24% 58%, rgba(255, 255, 255, 0.94), transparent 24%),
    radial-gradient(ellipse at 38% 39%, rgba(246, 249, 251, 0.92), transparent 34%),
    radial-gradient(ellipse at 55% 28%, rgba(236, 242, 246, 0.78), transparent 42%),
    radial-gradient(ellipse at 72% 20%, rgba(229, 237, 242, 0.62), transparent 51%),
    radial-gradient(circle at 46% 16%, rgba(255, 255, 255, 0.6), transparent 13%),
    radial-gradient(circle at 70% 34%, rgba(220, 232, 239, 0.48), transparent 16%),
    linear-gradient(58deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 252, 0.82) 34%, rgba(225, 235, 241, 0.42) 70%, transparent);
  clip-path: polygon(0 95%, 4% 78%, 12% 61%, 24% 42%, 42% 22%, 66% 5%, 88% 0, 100% 12%, 96% 48%, 82% 76%, 56% 94%, 24% 100%, 0 100%);
  filter: blur(8px);
}

.showcase-vapor-burst span:nth-child(2) {
  left: 2%;
  bottom: 4%;
  width: 105%;
  height: 92%;
  filter: blur(15px);
  scale: 1.08;
}

.showcase-vapor-burst span:nth-child(3) {
  left: -4%;
  bottom: 10%;
  width: 116%;
  height: 104%;
  filter: blur(24px);
  scale: 1.18;
}

.showcase-vapor-burst span:nth-child(4) {
  left: 9%;
  bottom: 17%;
  width: 96%;
  height: 84%;
  filter: blur(32px);
  scale: 1.28;
}

.showcase-vapor-burst span:nth-child(5) {
  left: 16%;
  bottom: 25%;
  width: 86%;
  height: 72%;
  filter: blur(42px);
  scale: 1.42;
}

.showcase-vapor-burst span:nth-child(6) {
  left: -1%;
  bottom: -2%;
  width: 70%;
  height: 46%;
  filter: blur(10px);
  background:
    radial-gradient(ellipse at 10% 88%, rgba(255, 255, 255, 1), transparent 8%),
    radial-gradient(ellipse at 30% 70%, rgba(255, 255, 255, 0.86), transparent 22%),
    linear-gradient(48deg, rgba(255, 255, 255, 0.95), rgba(225, 235, 241, 0.42), transparent 74%);
  clip-path: polygon(0 90%, 7% 72%, 18% 55%, 38% 38%, 64% 18%, 100% 6%, 92% 52%, 62% 82%, 22% 100%, 0 100%);
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst {
  opacity: 1;
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst span {
  animation: showcaseVaporBurst 4.2s cubic-bezier(0.16, 0.84, 0.28, 1) both;
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst span:nth-child(2) {
  animation-delay: 0.04s;
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst span:nth-child(3) {
  animation-delay: 0.12s;
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst span:nth-child(4) {
  animation-delay: 0.22s;
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst span:nth-child(5) {
  animation-delay: 0.34s;
}

.showcase-product-stage.is-vapor-bursting .showcase-vapor-burst span:nth-child(6) {
  animation-delay: 0s;
  animation-duration: 2.6s;
}

.showcase-product-stage.is-vapor-bursting .showcase-product-link {
  animation: showcaseProductKick 420ms ease-out, showcaseFloat 7s ease-in-out 420ms infinite;
}

.showcase-product-stage.is-vapor-bursting .showcase-product-link img {
  filter:
    brightness(1.08)
    contrast(1.03)
    drop-shadow(0 38px 44px rgba(22, 31, 44, 0.16))
    drop-shadow(0 0 54px rgba(210, 235, 245, 0.58))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.42));
}

.showcase-product-stage.is-vapor-bursting .showcase-ambient span:first-child {
  animation: showcaseBurstGlow 1.2s ease-out both;
}

.showcase-smoke-plume {
  display: none;
  position: absolute;
  z-index: 4;
  left: calc(50% - 10.9rem);
  top: calc(50% - 18.2rem);
  width: min(68rem, 96vw);
  height: min(42rem, 62vw);
  pointer-events: none;
  transform: rotate(-31deg);
  transform-origin: 0 58%;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 22px rgba(120, 210, 255, 0.18));
}

.showcase-smoke-plume span {
  position: absolute;
  left: 0;
  top: 33%;
  width: 100%;
  height: 78%;
  border-radius: 999px;
  opacity: 0;
  transform-origin: 0 50%;
  background:
    radial-gradient(ellipse at 0% 53%, rgba(255, 255, 255, 1), transparent 4%),
    radial-gradient(ellipse at 5% 51%, rgba(255, 255, 255, 0.98), transparent 10%),
    radial-gradient(ellipse at 15% 48%, rgba(255, 255, 255, 0.96), transparent 20%),
    radial-gradient(ellipse at 31% 42%, rgba(255, 255, 255, 0.92), transparent 31%),
    radial-gradient(ellipse at 50% 38%, rgba(248, 251, 252, 0.86), transparent 43%),
    radial-gradient(ellipse at 69% 40%, rgba(239, 245, 248, 0.76), transparent 52%),
    radial-gradient(ellipse at 88% 48%, rgba(229, 237, 242, 0.58), transparent 62%),
    radial-gradient(circle at 73% 18%, rgba(255, 255, 255, 0.42), transparent 11%),
    radial-gradient(circle at 58% 24%, rgba(255, 255, 255, 0.36), transparent 10%),
    radial-gradient(circle at 43% 71%, rgba(225, 237, 244, 0.32), transparent 12%),
    radial-gradient(circle at 90% 30%, rgba(210, 229, 238, 0.28), transparent 13%),
    linear-gradient(90deg, rgba(120, 210, 255, 0.34), rgba(255, 255, 255, 0.96) 18%, rgba(255, 255, 255, 0.58) 62%, rgba(224, 236, 242, 0.16) 94%, transparent);
  clip-path: polygon(0 50%, 3% 45%, 10% 38%, 24% 26%, 46% 12%, 70% 2%, 92% 0, 100% 9%, 100% 94%, 84% 99%, 62% 90%, 41% 79%, 21% 66%, 6% 58%, 0 55%);
  filter: blur(13px);
  animation: showcaseDenseSmoke 5.4s ease-in-out infinite;
}

.showcase-smoke-plume span:nth-child(2) {
  top: 24%;
  height: 92%;
  filter: blur(22px);
  opacity: 0;
  animation-delay: -1.15s;
  scale: 0.92;
}

.showcase-smoke-plume span:nth-child(3) {
  top: 13%;
  height: 104%;
  filter: blur(31px);
  animation-delay: -2.25s;
  scale: 1.04;
}

.showcase-smoke-plume span:nth-child(4) {
  top: 4%;
  height: 116%;
  filter: blur(42px);
  animation-delay: -3.35s;
  scale: 1.12;
}

.showcase-smoke-plume span:nth-child(5) {
  top: -6%;
  height: 128%;
  filter: blur(58px);
  animation-delay: -4.45s;
  scale: 1.22;
}

.showcase-product-link {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(32rem, 86vw);
  aspect-ratio: 0.86;
  text-decoration: none;
  color: inherit;
  animation: showcaseFloat 7s ease-in-out infinite;
}

.showcase-product-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 38px 44px rgba(22, 31, 44, 0.16))
    drop-shadow(0 0 32px rgba(104, 209, 255, 0.18));
  transition: transform 480ms ease, filter 480ms ease;
}

.showcase-product-link:hover img {
  transform: translateY(-0.35rem) scale(1.018);
  filter:
    drop-shadow(0 44px 52px rgba(22, 31, 44, 0.18))
    drop-shadow(0 0 38px rgba(104, 209, 255, 0.24));
}

.showcase-product-link:focus-visible {
  outline: 1px solid rgba(0, 174, 255, 0.58);
  outline-offset: 0.5rem;
  border-radius: 18px;
}

.showcase-shadow {
  position: absolute;
  z-index: 2;
  left: 26%;
  right: 26%;
  bottom: 18%;
  height: 2.6rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(12, 18, 28, 0.2), transparent 70%);
  filter: blur(18px);
}

.showcase-specs {
  display: grid;
  gap: 2rem;
  align-self: center;
}

.showcase-spec {
  display: grid;
  gap: 0.24rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(8, 13, 20, 0.14);
}

.showcase-spec strong {
  color: #05070b;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.01em;
}

.showcase-spec span {
  color: #697586;
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.7rem);
  }
}

@keyframes showcaseGlow {
  0%,
  100% {
    opacity: 0.36;
    scale: 0.96;
  }
  50% {
    opacity: 0.58;
    scale: 1.06;
  }
}

@keyframes showcaseDenseSmoke {
  0% {
    opacity: 0;
    transform: translate3d(-0.45rem, 0.16rem, 0) scaleX(0.14) scaleY(0.22);
  }
  15% {
    opacity: 0.94;
    transform: translate3d(0.35rem, -0.32rem, 0) scaleX(0.46) scaleY(0.62);
  }
  48% {
    opacity: 1;
    transform: translate3d(3.6rem, -1.65rem, 0) scaleX(1.1) scaleY(1.22);
  }
  74% {
    opacity: 0.58;
    transform: translate3d(6.3rem, -2.75rem, 0) scaleX(1.65) scaleY(1.55);
  }
  100% {
    opacity: 0;
    transform: translate3d(8.8rem, -3.9rem, 0) scaleX(2.05) scaleY(1.88);
  }
}

@keyframes showcaseLightMove {
  0%,
  100% {
    transform: translateX(-2%) scale(0.98);
  }
  50% {
    transform: translateX(3%) scale(1.03);
  }
}

@keyframes showcaseVaporBurst {
  0% {
    opacity: 0;
    transform: translate3d(-0.5rem, 1.2rem, 0) scaleX(0.08) scaleY(0.12) rotate(-9deg);
  }
  9% {
    opacity: 0.96;
    transform: translate3d(0.2rem, -0.55rem, 0) scaleX(0.5) scaleY(0.6) rotate(-5deg);
  }
  28% {
    opacity: 0.98;
    transform: translate3d(1.6rem, -4.2rem, 0) scaleX(1.15) scaleY(1.18) rotate(1deg);
  }
  58% {
    opacity: 0.72;
    transform: translate3d(2.7rem, -7rem, 0) scaleX(1.72) scaleY(1.58) rotate(5deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(3.8rem, -9.4rem, 0) scaleX(2.35) scaleY(1.92) rotate(8deg);
  }
}

@keyframes showcaseProductKick {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  22% {
    transform: translate3d(-0.18rem, 0.08rem, 0) rotate(-0.8deg);
  }
  48% {
    transform: translate3d(0.16rem, -0.05rem, 0) rotate(0.6deg);
  }
  70% {
    transform: translate3d(-0.08rem, 0.02rem, 0) rotate(-0.25deg);
  }
}

@keyframes showcaseBurstGlow {
  0% {
    opacity: 0.46;
    filter: blur(34px);
  }
  20% {
    opacity: 0.86;
    filter: blur(42px);
  }
  100% {
    opacity: 0.46;
    filter: blur(34px);
  }
}

@media (max-width: 980px) {
  .lifestyle-showcase-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .lifestyle-editorial .section-title,
  .lifestyle-editorial .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .showcase-product-stage {
    min-height: 32rem;
  }

  .showcase-smoke-plume {
    left: calc(50% - 7rem);
    top: calc(50% - 13.7rem);
    width: min(43rem, 98vw);
    height: min(28rem, 66vw);
  }

  .showcase-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 32rem;
    margin: 0 auto;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .lifestyle-showcase {
    min-height: auto;
  }

  .lifestyle-showcase-grid {
    min-height: auto;
  }

  .showcase-product-stage {
    min-height: 27rem;
  }

  .showcase-smoke-plume {
    left: calc(50% - 5.9rem);
    top: calc(50% - 11.5rem);
    width: min(36rem, 112vw);
    height: min(24rem, 80vw);
  }

  .showcase-product-link {
    width: min(23rem, 94vw);
  }

  .showcase-specs {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Clean Apple-style Hero refinement */
.hero {
  background:
    radial-gradient(circle at 18% 10%, rgba(142, 233, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 73% 42%, rgba(154, 125, 255, 0.12), transparent 32rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
}

.hero::before {
  inset: 9rem 4vw auto auto;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(154, 125, 255, 0.16), transparent 67%);
  filter: blur(28px);
  opacity: 0.72;
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.96));
}

.hero-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(24rem, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.hero-copy {
  align-self: center;
  padding-top: clamp(2rem, 4vw, 4rem);
}

.hero .eyebrow {
  color: #7adff3;
  letter-spacing: 0.26em;
}

.hero h1 {
  max-width: 10.5ch;
  color: #05070b;
  font-size: clamp(3.4rem, 6.4vw, 6.8rem);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.hero h1 span {
  display: inline;
  color: inherit;
  -webkit-text-stroke: 0;
  text-shadow: none;
  opacity: 1;
}

.hero .section-copy {
  max-width: 35rem;
  margin-top: 2rem;
  color: #46515f;
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.hero-actions {
  margin-top: 2.35rem;
}

.product-stage {
  min-height: clamp(32rem, 54vw, 46rem);
  border-radius: 0;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(142, 233, 255, 0.14), transparent 20rem),
    radial-gradient(ellipse at 66% 58%, rgba(154, 125, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(248, 250, 252, 0.18));
}

.product-stage::before {
  content: "";
  position: absolute;
  left: 27%;
  right: 27%;
  bottom: 19%;
  height: 2rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.16), transparent 72%);
  filter: blur(16px);
  z-index: 1;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: 14% 12% 18%;
  background:
    linear-gradient(108deg, transparent 0 46%, rgba(255, 255, 255, 0.55) 47%, transparent 50%),
    linear-gradient(78deg, transparent 0 62%, rgba(190, 220, 245, 0.13) 63%, transparent 66%);
  opacity: 0.48;
  mask-image: radial-gradient(ellipse, #000 18%, transparent 72%);
  pointer-events: none;
  z-index: 1;
}

.hero-airflow {
  inset: 18% 2% 18% 4%;
  opacity: 0.18;
}

.hero-airflow span {
  background: linear-gradient(90deg, transparent, rgba(80, 164, 205, 0.16), rgba(154, 125, 255, 0.12), transparent);
  box-shadow: none;
}

.hero-vapor {
  opacity: 0.3;
}

.hero-vapor span {
  background: radial-gradient(ellipse, rgba(210, 235, 248, 0.32), rgba(142, 233, 255, 0.08) 48%, transparent 74%);
  mix-blend-mode: normal;
}

.hero-breath {
  width: min(34rem, 72vw);
  background:
    radial-gradient(circle at 50% 48%, rgba(142, 233, 255, 0.12), transparent 28%),
    radial-gradient(circle, rgba(154, 125, 255, 0.1), transparent 66%);
  filter: blur(14px);
}

.stage-ring {
  display: none;
}

.product-stage > .product-click-link {
  position: relative;
  z-index: 3;
  animation: showcaseFloat 7s ease-in-out infinite;
}

.product-visual.has-image {
  width: min(29rem, 72vw);
  aspect-ratio: 0.7;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(-4deg);
}

.product-visual img {
  border-radius: 0;
  padding: 0;
  filter:
    drop-shadow(0 42px 42px rgba(22, 31, 44, 0.16))
    drop-shadow(0 0 30px rgba(104, 209, 255, 0.18));
  transition: transform 480ms ease, filter 480ms ease;
}

.product-stage > .product-click-link:hover .product-visual img {
  transform: translateY(-0.35rem) scale(1.018);
  filter:
    drop-shadow(0 48px 54px rgba(22, 31, 44, 0.2))
    drop-shadow(0 0 42px rgba(104, 209, 255, 0.26));
}

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

  .hero h1,
  .hero .section-copy {
    max-width: 100%;
  }

  .product-stage {
    min-height: 31rem;
  }
}

/* Minimal Apple-style Hero reset */
.hero {
  min-height: 100svh;
  padding-top: 5.5rem;
  background:
    radial-gradient(circle at 72% 42%, rgba(205, 226, 240, 0.38), transparent 30rem),
    radial-gradient(circle at 18% 16%, rgba(232, 245, 250, 0.7), transparent 22rem),
    #f5f5f7;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.68fr) minmax(24rem, 1.12fr);
  gap: clamp(3rem, 7vw, 8rem);
  min-height: calc(100svh - 7rem);
  align-items: center;
}

.hero-copy {
  padding-top: 0;
}

.hero h1 {
  max-width: 10.5ch;
  color: #1d1d1f;
  font-size: clamp(3.5rem, 6.2vw, 7rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;
  color: #1d1d1f;
  -webkit-text-stroke: 0;
  opacity: 1;
}

.hero .section-copy {
  max-width: 24rem;
  margin-top: 1.55rem;
  color: #6e6e73;
  font-size: clamp(1.05rem, 1.28vw, 1.22rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.hero-actions {
  margin-top: 2rem;
}

.hero .glass-button {
  min-height: 2.65rem;
  padding: 0.74rem 1.35rem;
  border-color: rgba(29, 29, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #1d1d1f;
  box-shadow: 0 10px 28px rgba(29, 29, 31, 0.06);
  font-size: 0.86rem;
  font-weight: 560;
  letter-spacing: -0.01em;
}

.hero .glass-button:hover {
  border-color: rgba(29, 29, 31, 0.22);
  box-shadow: 0 14px 34px rgba(29, 29, 31, 0.08);
  transform: translateY(-1px);
}

.product-stage {
  min-height: clamp(34rem, 60vw, 50rem);
  background: transparent;
}

.product-stage::before {
  left: 24%;
  right: 24%;
  bottom: 15%;
  height: 2.25rem;
  background: radial-gradient(ellipse, rgba(29, 29, 31, 0.13), transparent 72%);
  filter: blur(18px);
}

.product-stage::after,
.hero-airflow,
.hero-vapor,
.hero-breath,
.stage-ring {
  display: none;
}

.product-stage > .product-click-link {
  animation: appleHeroFloat 8s ease-in-out infinite;
}

.product-visual.has-image {
  width: min(39rem, 82vw);
  aspect-ratio: 0.72;
  transform: rotate(-2deg);
}

.product-visual img {
  padding: 0;
  filter:
    drop-shadow(0 46px 42px rgba(29, 29, 31, 0.14))
    drop-shadow(0 0 20px rgba(120, 190, 225, 0.12));
}

.product-stage > .product-click-link:hover .product-visual img {
  transform: translateY(-0.25rem) scale(1.01);
  filter:
    drop-shadow(0 50px 46px rgba(29, 29, 31, 0.15))
    drop-shadow(0 0 22px rgba(120, 190, 225, 0.14));
}

@keyframes appleHeroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.45rem);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .product-stage {
    min-height: 32rem;
  }

  .product-visual.has-image {
    width: min(30rem, 88vw);
  }
}

/* Hero atmosphere artwork: logo only, no product render */
.product-stage {
  min-height: clamp(34rem, 58vw, 48rem);
  background:
    radial-gradient(circle at 50% 48%, rgba(142, 233, 255, 0.11), transparent 20rem),
    radial-gradient(circle at 62% 46%, rgba(154, 125, 255, 0.075), transparent 24rem);
}

.product-stage::before {
  left: 18%;
  right: 18%;
  bottom: 17%;
  height: 10rem;
  background: radial-gradient(ellipse, rgba(122, 159, 182, 0.11), transparent 72%);
  filter: blur(34px);
}

.hero-atmosphere-art {
  position: relative;
  z-index: 3;
  width: min(42rem, 82vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.74), transparent 36%),
    radial-gradient(circle at 44% 52%, rgba(142, 233, 255, 0.16), transparent 46%),
    radial-gradient(circle at 64% 42%, rgba(154, 125, 255, 0.1), transparent 48%);
  animation: heroLogoStageFloat 8s ease-in-out infinite;
}

.hero-atmosphere-art::before,
.hero-atmosphere-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-atmosphere-art::before {
  inset: 13%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 42% 48%, rgba(220, 238, 248, 0.42), transparent 58%),
    radial-gradient(ellipse at 58% 48%, rgba(142, 233, 255, 0.2), transparent 62%);
  filter: blur(16px);
  opacity: 0.86;
  animation: heroAtmospherePulse 5.8s ease-in-out infinite;
}

.hero-atmosphere-art::after {
  left: 12%;
  right: 12%;
  bottom: 21%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 128, 150, 0.16), transparent);
}

.hero-frost {
  position: absolute;
  inset: 11% 5% 15%;
  border-radius: 50%;
  background:
    linear-gradient(108deg, transparent 0 42%, rgba(255, 255, 255, 0.48) 43%, transparent 48%),
    linear-gradient(78deg, transparent 0 62%, rgba(191, 218, 235, 0.14) 63%, transparent 68%),
    radial-gradient(circle at 28% 34%, rgba(164, 190, 208, 0.16) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 58%, rgba(154, 125, 255, 0.09) 0 1px, transparent 1.5px);
  background-size: auto, auto, 62px 54px, 86px 72px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse, #000 18%, transparent 72%);
}

.hero-logo-orb {
  position: relative;
  z-index: 2;
  width: min(29rem, 54vw);
  opacity: 0.92;
  isolation: isolate;
  filter:
    saturate(1.26)
    drop-shadow(0 0 24px rgba(0, 198, 255, 0.24))
    drop-shadow(0 24px 48px rgba(58, 103, 128, 0.14));
  animation: heroLogoLife 8s ease-in-out infinite;
}

.hero-logo-orb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
  filter: saturate(1.16) brightness(1.04);
}

.hero-logo-orb::before,
.hero-logo-orb::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  pointer-events: none;
}

.hero-logo-orb::before {
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 22%, rgba(255, 255, 255, 0.32) 48%, rgba(142, 233, 255, 0.16) 54%, rgba(255, 255, 255, 0) 66%),
    radial-gradient(circle at 50% 48%, rgba(162, 239, 255, 0.14), transparent 58%);
  background-size: 260% 100%, 100% 100%;
  background-position: -140% 0, 0 0;
  opacity: 0.26;
  mix-blend-mode: screen;
  -webkit-mask: url("/public/images/exdivo-logo.png") center / contain no-repeat;
  mask: url("/public/images/exdivo-logo.png") center / contain no-repeat;
  animation: heroLogoSurfaceGlow 8.5s ease-in-out infinite;
}

.hero-logo-orb::after {
  inset: -3%;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 190, 255, 0.24), transparent 52%),
    radial-gradient(circle at 50% 52%, rgba(154, 125, 255, 0.11), transparent 60%),
    linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.42) 48%, transparent 62%);
  background-size: 100% 100%, 240% 100%;
  background-position: center, -160% 0;
  filter: blur(11px);
  opacity: 0.2;
  mix-blend-mode: screen;
  -webkit-mask: url("/public/images/exdivo-logo.png") center / contain no-repeat;
  mask: url("/public/images/exdivo-logo.png") center / contain no-repeat;
  animation: heroLogoShimmer 8.5s ease-in-out infinite;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: rgba(0, 190, 255, 0.42);
  box-shadow:
    0 0 10px rgba(0, 190, 255, 0.3),
    var(--trail, 0 0 transparent);
  animation: heroParticleDrift 10s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

.hero-particles span:nth-child(n + 9) { display: none; }
.hero-particles span:nth-child(1) { --x: -8.5rem; --y: -5.2rem; --dx: 0.8rem; --dy: -0.6rem; --delay: -0.1s; }
.hero-particles span:nth-child(2) { --x: 8rem; --y: -4.6rem; --dx: -0.7rem; --dy: -0.8rem; --delay: -1.4s; }
.hero-particles span:nth-child(3) { --x: -7.2rem; --y: 5.4rem; --dx: 0.9rem; --dy: 0.5rem; --delay: -2.6s; }
.hero-particles span:nth-child(4) { --x: 8.9rem; --y: 4.8rem; --dx: -0.8rem; --dy: 0.7rem; --delay: -3.8s; }
.hero-particles span:nth-child(5) { --x: -1.5rem; --y: -8rem; --dx: 0.5rem; --dy: -0.9rem; --delay: -5s; }
.hero-particles span:nth-child(6) { --x: 1.8rem; --y: 8rem; --dx: -0.4rem; --dy: 0.85rem; --delay: -6.2s; }
.hero-particles span:nth-child(7) { --x: -10rem; --y: 0.2rem; --dx: 0.75rem; --dy: -0.4rem; --delay: -7.4s; }
.hero-particles span:nth-child(8) { --x: 10rem; --y: -0.4rem; --dx: -0.75rem; --dy: 0.4rem; --delay: -8.6s; }

@keyframes heroAtmospherePulse {
  0%,
  100% {
    opacity: 0.52;
    transform: scale(0.94);
  }
  18% {
    opacity: 0.98;
    transform: scale(1.08);
  }
  48% {
    opacity: 0.68;
    transform: scale(1.01);
  }
}

@keyframes heroLogoStageFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-0.55rem) scale(1.01);
  }
}

@keyframes heroLogoImpact {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(0.995) rotate(0deg);
  }
  45% {
    opacity: 0.86;
    transform: scale(1.025) rotate(-0.2deg);
  }
  68% {
    opacity: 0.78;
    transform: scale(1.01) rotate(0.12deg);
  }
}

@keyframes heroLogoLife {
  0%,
  100% {
    opacity: 0.84;
    transform: translateY(0) scale(0.996);
    filter:
      saturate(1.18)
      drop-shadow(0 0 18px rgba(0, 198, 255, 0.18))
      drop-shadow(0 24px 48px rgba(58, 103, 128, 0.12));
  }
  50% {
    opacity: 0.96;
    transform: translateY(-5px) scale(1.01);
    filter:
      saturate(1.26)
      drop-shadow(0 0 34px rgba(0, 198, 255, 0.32))
      drop-shadow(0 28px 54px rgba(58, 103, 128, 0.16));
  }
}

@keyframes heroLogoRing {
  0% {
    opacity: 0;
    transform: scale(0.76);
  }
  14% {
    opacity: 0.52;
  }
  44%,
  100% {
    opacity: 0;
    transform: scale(1.36);
  }
}

@keyframes heroLogoGlowHit {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.92);
  }
  14% {
    opacity: 0.68;
    transform: scale(1.16);
  }
  42% {
    opacity: 0.32;
    transform: scale(1);
  }
}

@keyframes heroLogoParticles {
  0%,
  100% {
    opacity: 0.08;
    background-position:
      0 0,
      8px 3px,
      13px 17px,
      4px 9px,
      19px 4px,
      7px 23px,
      3px 6px,
      10px 2px,
      -140% 0,
      0 0;
    filter: blur(1.2px);
    transform: scale(0.96);
  }
  18% {
    opacity: 0.16;
    filter: blur(0.8px);
    transform: scale(0.975);
  }
  42% {
    opacity: 0.92;
    filter: blur(0.15px);
    transform: scale(1.012);
  }
  58% {
    opacity: 1;
    background-position:
      2px -2px,
      10px 1px,
      9px 19px,
      6px 7px,
      17px 6px,
      10px 20px,
      1px 8px,
      13px 0,
      115% 0,
      0 0;
    filter: blur(0);
    transform: scale(1.006);
  }
  74% {
    opacity: 0.86;
    filter: blur(0.12px);
    transform: scale(1);
  }
}

@keyframes heroLogoSurfaceGlow {
  0%,
  100% {
    opacity: 0.08;
    background-position: -160% 0, 0 0;
  }
  48% {
    opacity: 0.28;
    background-position: 145% 0, 0 0;
  }
  74% {
    opacity: 0.14;
    background-position: 145% 0, 0 0;
  }
}

@keyframes heroLogoShimmer {
  0%,
  100% {
    opacity: 0.12;
    background-position: center, -160% 0;
    transform: scale(0.98);
    filter: blur(13px);
  }
  50% {
    opacity: 0.3;
    background-position: center, 130% 0;
    transform: scale(1.04);
    filter: blur(9px);
  }
  74% {
    opacity: 0.16;
    background-position: center, 130% 0;
    transform: scale(1);
  }
}

@keyframes heroParticleDrift {
  0%,
  100% {
    opacity: 0.08;
    transform: translate3d(var(--x), var(--y), 0) scale(0.72);
  }
  45% {
    opacity: 0.42;
    transform: translate3d(calc(var(--x) + var(--dx)), calc(var(--y) + var(--dy)), 0) scale(1.08);
  }
  72% {
    opacity: 0.18;
    transform: translate3d(calc(var(--x) + var(--dx) * 0.5), calc(var(--y) + var(--dy) * 0.5), 0) scale(0.9);
  }
}

@keyframes heroParticleGather {
  0% {
    opacity: 0;
    transform: translate3d(var(--sx), var(--sy), 0) scale(0.45);
  }
  12% {
    opacity: 0.5;
    transform: translate3d(var(--sx), var(--sy), 0) scale(0.82);
  }
  42% {
    opacity: 0.84;
    transform: translate3d(var(--ex), var(--ey), 0) scale(1.08);
  }
  56% {
    opacity: 0.18;
    transform: translate3d(calc(var(--ex) * 0.72), calc(var(--ey) * 0.72), 0) scale(0.62);
  }
  72%,
  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.2);
  }
}

@media (max-width: 980px) {
  .hero-atmosphere-art {
    width: min(34rem, 90vw);
  }

  .hero-logo-orb {
    width: min(22rem, 62vw);
  }
}

/* Immersive Apple-style Product Technology */
.product-campaign {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 62% 46%, rgba(142, 233, 255, 0.13), transparent 30rem),
    radial-gradient(circle at 36% 78%, rgba(154, 125, 255, 0.07), transparent 25rem),
    #f5f5f7;
  overflow: hidden;
}

.product-campaign .section-inner {
  position: relative;
  min-height: clamp(46rem, 86vh, 62rem);
  display: grid;
  align-items: center;
}

.product-campaign-copy {
  position: relative;
  z-index: 4;
  max-width: 31rem;
  align-self: start;
  padding-top: clamp(3rem, 7vw, 6rem);
}

.product-campaign-copy .eyebrow {
  color: #8a939e;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
}

.product-campaign-copy .section-title {
  max-width: 10.8ch;
  color: #1d1d1f;
  font-size: clamp(3.2rem, 5.4vw, 5.8rem);
  font-weight: 680;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.product-campaign-copy .section-copy {
  max-width: 19rem;
  margin-top: 1.45rem;
  color: #6e6e73;
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  line-height: 1.55;
}

.product-campaign-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  isolation: isolate;
}

.product-campaign-stage::before,
.product-campaign-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.product-campaign-stage::before {
  width: min(54rem, 76vw);
  aspect-ratio: 1.55;
  left: 52%;
  top: 49%;
  transform: translate(-50%, -50%) rotate(-8deg);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.68), transparent 36%),
    radial-gradient(ellipse at 54% 50%, rgba(185, 232, 248, 0.24), transparent 58%),
    radial-gradient(ellipse at 64% 45%, rgba(154, 125, 255, 0.08), transparent 66%);
  filter: blur(10px);
  opacity: 0.74;
  animation: campaignColdDiffusion 15s ease-in-out infinite;
}

.product-campaign-stage::after {
  width: min(48rem, 68vw);
  height: min(19rem, 28vw);
  left: 51%;
  top: 49%;
  transform: translate(-50%, -50%) rotate(-10deg);
  background:
    linear-gradient(90deg, transparent, rgba(130, 205, 235, 0.16), transparent 54%),
    repeating-linear-gradient(0deg, transparent 0 1.45rem, rgba(120, 190, 225, 0.08) 1.5rem 1.55rem, transparent 1.62rem 2.8rem);
  mask-image: radial-gradient(ellipse, #000 20%, transparent 72%);
  filter: blur(1.2px);
  opacity: 0.32;
  animation: campaignAirflowDrift 18s ease-in-out infinite;
}

.campaign-glow {
  position: absolute;
  width: min(70rem, 92vw);
  aspect-ratio: 1.5;
  left: 55%;
  top: 51%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(255, 255, 255, 0.9), transparent 36%),
    radial-gradient(ellipse at 54% 50%, rgba(178, 226, 244, 0.24), transparent 58%),
    radial-gradient(ellipse at 64% 50%, rgba(154, 125, 255, 0.075), transparent 66%);
  filter: blur(4px);
  animation: campaignLightDrift 16s ease-in-out infinite;
  z-index: 1;
}

.campaign-vapor-plume {
  display: none;
  position: absolute;
  z-index: 2;
  left: calc(50% - 2.2rem);
  top: calc(50% - 19.2rem);
  width: min(36rem, 48vw);
  height: min(17rem, 24vw);
  pointer-events: none;
  opacity: 0.92;
  transform: rotate(-28deg);
  transform-origin: left center;
  filter: blur(0.2px) drop-shadow(0 0 18px rgba(120, 210, 255, 0.16));
  mix-blend-mode: normal;
}

.campaign-vapor-plume::before,
.campaign-vapor-plume::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 4% 52%, rgba(255, 255, 255, 0.5), transparent 16%),
    radial-gradient(ellipse at 18% 50%, rgba(246, 252, 255, 0.58), transparent 24%),
    radial-gradient(ellipse at 37% 44%, rgba(238, 246, 250, 0.44), transparent 32%),
    radial-gradient(ellipse at 62% 43%, rgba(236, 244, 248, 0.34), transparent 36%),
    radial-gradient(ellipse at 86% 48%, rgba(223, 235, 241, 0.2), transparent 38%),
    linear-gradient(90deg, rgba(145, 218, 255, 0.24), rgba(255, 255, 255, 0.56) 34%, rgba(255, 255, 255, 0.22) 72%, transparent);
  clip-path: polygon(0 43%, 10% 36%, 27% 26%, 52% 13%, 78% 4%, 100% 10%, 100% 88%, 74% 78%, 48% 69%, 22% 62%, 0 57%);
  filter: blur(13px);
  animation: campaignVaporFlow 7.8s ease-in-out infinite;
}

.campaign-vapor-plume::after {
  inset: 10% -4% 8% 8%;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(255, 255, 255, 0.42), transparent 22%),
    radial-gradient(ellipse at 46% 38%, rgba(235, 244, 250, 0.28), transparent 34%),
    radial-gradient(ellipse at 78% 54%, rgba(198, 230, 245, 0.2), transparent 40%);
  filter: blur(21px);
  opacity: 0.74;
  animation-delay: -3.2s;
}

.campaign-product-link {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: min(59rem, 92vw);
  aspect-ratio: 0.9;
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
  animation: campaignFloat 8s ease-in-out infinite;
}

.campaign-product-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(-18px 0 22px rgba(255, 255, 255, 0.62))
    drop-shadow(16px 0 18px rgba(160, 217, 240, 0.22))
    drop-shadow(0 58px 54px rgba(29, 29, 31, 0.14))
    drop-shadow(0 0 26px rgba(120, 190, 225, 0.13));
  transition: transform 520ms ease, filter 520ms ease;
}

.campaign-product-link:hover img {
  transform: translateY(-0.28rem) scale(1.01);
  filter:
    drop-shadow(-20px 0 24px rgba(255, 255, 255, 0.68))
    drop-shadow(18px 0 22px rgba(160, 217, 240, 0.25))
    drop-shadow(0 62px 58px rgba(29, 29, 31, 0.16))
    drop-shadow(0 0 30px rgba(120, 190, 225, 0.16));
}

.campaign-shadow {
  position: absolute;
  z-index: 2;
  left: 38%;
  right: 22%;
  bottom: 13%;
  height: 2.65rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(29, 29, 31, 0.13), transparent 72%);
  filter: blur(18px);
}

.campaign-label {
  position: absolute;
  z-index: 4;
  color: #6e6e73;
  font-size: 0.7rem;
  font-weight: 620;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.label-airflow {
  left: 14%;
  bottom: 24%;
}

.label-mesh {
  right: 18%;
  top: 34%;
}

.label-oled {
  right: 12%;
  bottom: 30%;
}

@keyframes campaignFloat {
  0%,
  100% {
    transform: translate3d(11vw, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(11vw, -0.55rem, 0) rotate(-1deg);
  }
}

@keyframes campaignLightDrift {
  0%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(0.98);
  }
  50% {
    opacity: 1;
    transform: translate(-48%, -51%) scale(1.03);
  }
}

@keyframes campaignColdDiffusion {
  0%,
  100% {
    opacity: 0.58;
    transform: translate(-50%, -50%) rotate(-8deg) scale(0.98);
  }
  50% {
    opacity: 0.82;
    transform: translate(-49%, -51%) rotate(-6deg) scale(1.04);
  }
}

@keyframes campaignAirflowDrift {
  0%,
  100% {
    opacity: 0.2;
    transform: translate(-52%, -50%) rotate(-10deg) scaleX(0.96);
  }
  50% {
    opacity: 0.38;
    transform: translate(-47%, -51%) rotate(-8deg) scaleX(1.04);
  }
}

@keyframes campaignVaporFlow {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(-0.45rem, 0.28rem, 0) scaleX(0.86) scaleY(0.86);
  }
  48% {
    opacity: 0.78;
    transform: translate3d(1.25rem, -0.42rem, 0) scaleX(1.08) scaleY(1.02);
  }
  72% {
    opacity: 0.58;
    transform: translate3d(0.7rem, -0.18rem, 0) scaleX(1.02) scaleY(0.96);
  }
}

@keyframes campaignFloatMobile {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-0.5rem) rotate(-0.5deg);
  }
}

@media (max-width: 980px) {
  .product-campaign .section-inner {
    min-height: auto;
    gap: 2rem;
  }

  .product-campaign-stage {
    position: relative;
    min-height: 34rem;
  }

  .campaign-vapor-plume {
    left: calc(50% - 1.6rem);
    top: calc(50% - 14.5rem);
    width: min(26rem, 74vw);
    height: min(13rem, 38vw);
  }

  .campaign-product-link {
    width: min(40rem, 104vw);
    animation: campaignFloatMobile 8s ease-in-out infinite;
  }

  .product-campaign-stage {
    display: grid;
  }

  .campaign-product-link {
    grid-area: product;
    transform: none;
  }

}

/* Minimal premium Brand Story */
#story {
  background:
    radial-gradient(circle at 72% 44%, rgba(142, 233, 255, 0.11), transparent 28rem),
    radial-gradient(circle at 56% 72%, rgba(154, 125, 255, 0.07), transparent 26rem),
    #f5f5f7;
}

#story .story-layout {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas: "copy";
  align-items: center;
  justify-items: center;
  gap: 0;
  min-height: clamp(42rem, 82vh, 58rem);
}

#story .story-panel {
  display: none;
}

#story .story-panel::after {
  content: "";
  position: absolute;
  left: 19%;
  right: 19%;
  bottom: 17%;
  height: 2.2rem;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(29, 29, 31, 0.13), transparent 72%);
  filter: blur(18px);
  z-index: 1;
}

#story .story-product-link {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 3;
}

#story .story-material {
  position: relative;
  left: auto;
  top: auto;
  width: min(39rem, 96%);
  aspect-ratio: 0.72;
  transform: rotate(-2deg);
  animation: appleHeroFloat 8s ease-in-out infinite;
}

#story .story-material img {
  filter:
    saturate(0.94)
    contrast(1.02)
    drop-shadow(0 44px 42px rgba(29, 29, 31, 0.14))
    drop-shadow(0 0 20px rgba(120, 190, 225, 0.1));
}

#story .story-vapor {
  z-index: 2;
  opacity: 0.38;
}

#story .story-vapor span {
  background: radial-gradient(ellipse, rgba(214, 235, 246, 0.26), rgba(142, 233, 255, 0.08) 46%, transparent 74%);
  filter: blur(24px);
  mix-blend-mode: normal;
}

#story .story-light {
  left: 18%;
  right: 18%;
  bottom: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 145, 170, 0.18), transparent);
  box-shadow: none;
  opacity: 0.55;
}

#story .story-copy {
  grid-area: copy;
  gap: 0;
  justify-self: center;
  max-width: min(46rem, 90vw);
  text-align: center;
}

#story .story-copy .section-title {
  max-width: 12ch;
  margin-inline: auto;
  margin-bottom: clamp(2.2rem, 4.8vw, 4rem);
  color: #1d1d1f;
  font-size: clamp(3.3rem, 6vw, 6.5rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.story-philosophy {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.85rem);
  max-width: 34rem;
  margin-inline: auto;
}

#story .story-philosophy-line {
  margin: 0;
  max-width: 34rem;
  color: #6e6e73;
  font-size: clamp(1rem, 1.18vw, 1.17rem);
  font-weight: 380;
  line-height: 1.92;
  letter-spacing: -0.01em;
}

#story .story-philosophy-line-1 {
  max-width: 25rem;
  color: #41464d;
  font-size: clamp(1.1rem, 1.35vw, 1.28rem);
  line-height: 1.75;
}

#story .story-philosophy-line-3 {
  max-width: 34rem;
}

#story .story-philosophy-line-4 {
  margin-top: 0.35rem;
  color: #1d1d1f;
}

.story-feature-list {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 4vw, 3.3rem);
  margin-top: clamp(2.7rem, 5vw, 4.4rem);
}

.story-feature {
  padding: 0;
  background: transparent;
  border: 0;
}

.story-feature strong {
  display: block;
  color: #6e6e73;
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.story-feature span {
  display: none;
}

@media (max-width: 980px) {
  #story .story-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual";
    min-height: auto;
  }

  #story .story-panel {
    min-height: 32rem;
  }

  #story .story-material {
    width: min(28rem, 86vw);
  }
}

/* Premium de-card treatment */
.product-grid,
.metrics,
.color-selector-shell,
.selector-stage,
.product-card,
.flavor-note,
.metric,
.lifestyle-atmosphere,
.showcase-specs,
.showcase-spec,
.compliance {
  border-color: transparent;
  box-shadow: none;
}

.color-selector-shell,
.selector-stage,
.product-card,
.metric,
.lifestyle-atmosphere,
.showcase-specs,
.showcase-spec,
.compliance {
  background: transparent;
}

.product-grid {
  border: 0;
  background: transparent;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  overflow: visible;
}

.product-card {
  min-height: 28rem;
  overflow: visible;
}

.product-card-media {
  background:
    radial-gradient(circle at 50% 45%, rgba(142, 233, 255, 0.16), transparent 15rem),
    radial-gradient(circle at 54% 60%, rgba(154, 125, 255, 0.08), transparent 16rem);
}

.product-card-content {
  padding-inline: 0;
}

.color-selector-shell {
  padding-inline: 0;
}

.selector-stage {
  border: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(var(--selector-glow, 0, 174, 255), 0.14), transparent 20rem),
    radial-gradient(circle at 50% 70%, rgba(29, 29, 31, 0.06), transparent 18rem);
  box-shadow: none;
}

.selector-stage::before,
.selector-stage::after {
  opacity: 0.55;
}

.flavor-note {
  border: 1px solid rgba(8, 13, 20, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  color: #1d1d1f;
}

.flavor-note span {
  color: #6e6e73;
}

.showcase-specs {
  gap: clamp(1.6rem, 4vw, 3rem);
}

.showcase-spec {
  padding: 0;
}

.compliance {
  border-top: 1px solid rgba(8, 13, 20, 0.08);
}

/* Unified premium typography system */
html,
body,
button,
input,
textarea,
select {
  font-family: "SF Pro Display", "SF Pro Text", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: geometricPrecision;
}

body {
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero h1 {
  max-width: 9.2ch;
  font-size: clamp(4.6rem, 9.4vw, 8.6rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: #07090d;
  -webkit-text-stroke: 0;
  opacity: 1;
}

.section-title,
#story .story-copy .section-title,
.product-campaign-copy .section-title,
.lifestyle-editorial .section-title {
  font-weight: 700;
  letter-spacing: -0.058em;
  line-height: 0.94;
}

.eyebrow,
.hero .eyebrow,
.product-campaign-copy .eyebrow,
.lifestyle-editorial .eyebrow {
  color: rgba(29, 29, 31, 0.48);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-copy,
.hero .section-copy,
.story-philosophy-line,
.product-campaign-copy .section-copy,
.lifestyle-editorial .section-copy,
.product-card p,
.flavor-note span {
  color: #6e6e73;
  font-size: clamp(1.02rem, 1.22vw, 1.18rem);
  font-weight: 380;
  line-height: 1.88;
  letter-spacing: -0.012em;
}

.hero .section-copy,
.product-campaign-copy .section-copy {
  line-height: 1.72;
}

.campaign-label,
.story-feature strong,
.selector-color-name,
.showcase-spec span,
.flavor-tap-hint {
  color: rgba(29, 29, 31, 0.48);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.25;
  text-transform: uppercase;
}

.product-card h3,
.flavor-note strong,
.showcase-spec strong,
.brand-mark {
  font-weight: 650;
  letter-spacing: -0.018em;
}

.glass-button,
.nav-cta,
.text-link,
.selector-cta {
  font-weight: 600;
  letter-spacing: -0.012em;
}

@media (max-width: 680px) {
  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.8rem);
    letter-spacing: -0.068em;
  }
}

/* Hero brand launch refinement */
.hero {
  min-height: 100svh;
  padding-top: 5.5rem;
  background:
    radial-gradient(circle at 78% 42%, rgba(195, 226, 242, 0.48), transparent 28rem),
    radial-gradient(circle at 92% 18%, rgba(154, 125, 255, 0.07), transparent 24rem),
    radial-gradient(circle at 16% 10%, rgba(231, 247, 252, 0.62), transparent 22rem),
    #f5f5f7;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(26rem, 1.05fr);
  gap: clamp(3.5rem, 8vw, 9rem);
  min-height: calc(100svh - 7rem);
}

.hero-copy {
  max-width: 42rem;
}

.hero h1 {
  max-width: 9.1ch;
  font-family: "SF Pro Display", "Inter Tight", "Neue Haas Grotesk", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(5.2rem, 9.8vw, 9.4rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.082em;
  color: #08090b;
}

.hero h1 span {
  display: block;
  color: #08090b;
}

.hero .section-copy {
  max-width: 21rem;
  margin-top: clamp(1.55rem, 2.6vw, 2.35rem);
  color: rgba(29, 29, 31, 0.62);
  font-size: clamp(1.08rem, 1.18vw, 1.22rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: -0.018em;
}

.hero-actions {
  margin-top: clamp(1.6rem, 2.6vw, 2.4rem);
}

.hero .glass-button {
  min-height: 2.5rem;
  padding: 0.62rem 1.18rem;
  border: 1px solid rgba(29, 29, 31, 0.16);
  border-radius: 999px;
  background: #ffffff;
  color: #1d1d1f;
  box-shadow: 0 2px 8px rgba(29, 29, 31, 0.06);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.016em;
  backdrop-filter: none;
}

.hero .glass-button:hover {
  border-color: rgba(29, 29, 31, 0.28);
  background: #f9f9fb;
  box-shadow: 0 6px 18px rgba(29, 29, 31, 0.08);
  transform: translateY(-1px);
}

.product-stage {
  min-height: clamp(36rem, 58vw, 52rem);
  background:
    radial-gradient(circle at 50% 47%, rgba(142, 233, 255, 0.12), transparent 19rem),
    radial-gradient(circle at 56% 42%, rgba(154, 125, 255, 0.055), transparent 25rem);
}

.hero-atmosphere-art {
  width: min(44rem, 78vw);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.64), transparent 34%),
    radial-gradient(circle at 45% 52%, rgba(142, 233, 255, 0.14), transparent 48%),
    radial-gradient(circle at 62% 42%, rgba(154, 125, 255, 0.07), transparent 52%);
  translate: var(--hero-parallax-x, 0) var(--hero-parallax-y, 0);
  transition: translate 520ms ease-out;
}

.hero-atmosphere-art::before {
  opacity: 0.62;
  filter: blur(22px);
}

.hero-frost {
  opacity: 0.34;
}

.hero-logo-orb {
  width: min(30rem, 52vw);
  opacity: 0.82;
}

.hero-logo-orb img {
  opacity: 0.66;
}

.hero-particles span {
  opacity: 0.55;
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: none;
  }

  .hero h1 {
    font-size: clamp(4rem, 14vw, 7rem);
  }

  .product-stage {
    min-height: 32rem;
  }
}

/* Entry intro sequence */
body.intro-lock {
  overflow: hidden;
}

.intro-sequence {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 48%, rgba(142, 233, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 64% 38%, rgba(154, 125, 255, 0.065), transparent 28rem),
    #f5f5f7;
  transition:
    opacity 900ms ease,
    visibility 900ms ease;
}

.intro-glow {
  position: absolute;
  width: min(46rem, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.78), transparent 36%),
    radial-gradient(circle, rgba(142, 233, 255, 0.18), transparent 62%);
  filter: blur(20px);
  opacity: 0.72;
  animation: introGlowBreathe 7s ease-in-out infinite;
}

.intro-word {
  position: relative;
  color: #08090b;
  font-family: "SF Pro Display", "Inter Tight", "Neue Haas Grotesk", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.1em;
  transform: scale(1);
  transform-origin: center;
  opacity: 1;
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 760ms ease,
    filter 900ms ease;
  will-change: transform, opacity;
}

.intro-sequence[data-step="1"] .intro-word {
  transform: scale(1.72);
}

.intro-sequence[data-step="2"] .intro-word {
  transform: scale(3.4);
  filter: blur(0.2px);
}

.intro-sequence[data-step="3"] .intro-word,
.intro-sequence.is-leaving .intro-word {
  opacity: 0;
  transform: scale(4.6);
  filter: blur(10px);
}

.intro-sequence.is-leaving {
  opacity: 0;
  visibility: hidden;
}

@keyframes introGlowBreathe {
  0%,
  100% {
    opacity: 0.48;
    transform: scale(0.96);
  }
  50% {
    opacity: 0.78;
    transform: scale(1.04);
  }
}

@media (max-width: 680px) {
  .intro-word {
    font-size: clamp(4rem, 20vw, 7.5rem);
  }
}

/* Controlled premium finish: Apple-style minimalism with limited glass accents */
body {
  background:
    radial-gradient(circle at 16% 2%, rgba(222, 245, 252, 0.58), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(231, 226, 255, 0.36), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 44%, #ffffff 100%);
}

.noise {
  opacity: 0.025;
}

.cursor-glow {
  opacity: 0.42;
}

.site-header {
  border-bottom-color: rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(1.08) blur(8px);
}

.brand-mark img {
  filter:
    drop-shadow(0 0 6px rgba(0, 174, 255, 0.22))
    drop-shadow(0 10px 18px rgba(29, 29, 31, 0.08));
}

.glass-button,
.nav-cta,
.selector-cta {
  border-color: rgba(29, 29, 31, 0.14);
  background: #fff;
  box-shadow: 0 2px 9px rgba(29, 29, 31, 0.055);
  backdrop-filter: none;
}

.glass-button:hover,
.nav-cta:hover,
.selector-cta:hover {
  border-color: rgba(0, 122, 255, 0.26);
  background: rgba(255, 255, 255, 0.84);
  box-shadow:
    0 10px 26px rgba(29, 29, 31, 0.08),
    0 0 24px rgba(0, 174, 255, 0.09);
  backdrop-filter: blur(10px);
}

.product-visual.has-image,
.story-panel,
.product-card,
.color-selector-shell,
.selector-stage,
.metric,
.hero-spec,
.lifestyle-atmosphere,
.showcase-specs,
.showcase-spec {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.story-panel,
.product-card,
.color-selector-shell,
.selector-stage {
  overflow: visible;
}

.product-card-media,
.selector-stage,
.product-mini.has-image {
  background:
    radial-gradient(circle at 50% 45%, rgba(202, 239, 250, 0.42), transparent 18rem),
    radial-gradient(circle at 54% 62%, rgba(223, 218, 255, 0.2), transparent 20rem);
}

.flavor-note {
  border: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(29, 29, 31, 0.075);
  backdrop-filter: none;
}

.flavor-note:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(0, 174, 255, 0.2);
  box-shadow:
    0 18px 46px rgba(29, 29, 31, 0.08),
    0 0 22px rgba(0, 174, 255, 0.08);
  backdrop-filter: blur(10px);
}

.flavor-core {
  border-color: rgba(0, 174, 255, 0.13);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.46), transparent 34%),
    conic-gradient(from 120deg, rgba(0, 174, 255, 0.12), rgba(154, 125, 255, 0.16), rgba(235, 241, 247, 0.12), rgba(0, 174, 255, 0.12));
  box-shadow:
    0 22px 70px rgba(29, 29, 31, 0.05),
    0 0 72px rgba(142, 233, 255, 0.08);
}

.hero,
.product-campaign,
#story,
.lifestyle-showcase {
  background:
    radial-gradient(circle at 70% 30%, rgba(218, 243, 251, 0.42), transparent 28rem),
    radial-gradient(circle at 18% 75%, rgba(231, 226, 255, 0.24), transparent 26rem),
    #f5f5f7;
}

.hero-atmosphere-art::before,
.hero-logo-orb::before,
.hero-logo-orb::after {
  opacity: 0.52;
}

.hero-logo-orb img {
  opacity: 0.78;
  filter:
    drop-shadow(0 0 12px rgba(0, 174, 255, 0.26))
    drop-shadow(0 20px 44px rgba(29, 29, 31, 0.08));
}

.hero-particles span {
  opacity: 0.42;
}

.campaign-product-link img,
.showcase-product-link img,
.selector-product-image,
.story-material img {
  filter:
    drop-shadow(0 34px 42px rgba(29, 29, 31, 0.11))
    drop-shadow(0 0 18px rgba(120, 190, 225, 0.075));
}

.selector-product-image {
  width: min(33rem, 82vw);
  padding: clamp(0.4rem, 1vw, 0.9rem);
}

@media (max-width: 680px) {
  .selector-product-image {
    width: min(27rem, 94vw);
  }
}

.campaign-glow,
.showcase-ambient,
.story-vapor,
.hero-vapor {
  opacity: 0.64;
}

.showcase-glass,
.hero-frost {
  opacity: 0.18;
}

.feature-list span,
.product-card .feature-list span {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.product-campaign {
  background:
    radial-gradient(circle at 62% 46%, rgba(217, 244, 252, 0.62), transparent 34rem),
    radial-gradient(circle at 74% 52%, rgba(255, 255, 255, 0.78), transparent 27rem),
    radial-gradient(circle at 30% 76%, rgba(231, 226, 255, 0.22), transparent 28rem),
    #f5f5f7;
}

.product-campaign-copy .section-title {
  max-width: 10.8ch;
}

.campaign-product-link img {
  filter:
    drop-shadow(-18px 0 22px rgba(255, 255, 255, 0.62))
    drop-shadow(16px 0 18px rgba(160, 217, 240, 0.22))
    drop-shadow(0 58px 54px rgba(29, 29, 31, 0.14))
    drop-shadow(0 0 26px rgba(120, 190, 225, 0.13));
}

.campaign-label {
  display: none;
}

/* Product Technology atmosphere field */
.product-campaign {
  background:
    radial-gradient(circle at 50% 46%, rgba(216, 244, 252, 0.62), transparent 32rem),
    radial-gradient(circle at 54% 48%, rgba(255, 255, 255, 0.9), transparent 24rem),
    radial-gradient(circle at 72% 30%, rgba(226, 222, 255, 0.2), transparent 26rem),
    #fff;
}

.product-campaign .section-inner {
  min-height: clamp(48rem, 92vh, 66rem);
}

.product-campaign-copy {
  max-width: 36rem;
  padding-top: clamp(4rem, 8vw, 7rem);
}

.product-campaign-copy .eyebrow {
  color: rgba(29, 29, 31, 0.46);
  letter-spacing: 0.34em;
}

.product-campaign-copy .section-title {
  max-width: 11.2ch;
  font-size: clamp(3.6rem, 6.6vw, 7.2rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.074em;
  text-transform: uppercase;
}

.product-campaign-copy .section-copy {
  max-width: 28rem;
  margin-top: clamp(1.6rem, 2.8vw, 2.3rem);
  color: rgba(29, 29, 31, 0.6);
  font-size: clamp(1.03rem, 1.25vw, 1.18rem);
  line-height: 1.82;
}

.product-campaign-stage::before,
.product-campaign-stage::after,
.campaign-glow,
.campaign-vapor-plume,
.campaign-product-link,
.campaign-shadow {
  display: none;
}

.atmosphere-field {
  position: absolute;
  z-index: 2;
  left: 56%;
  top: 52%;
  width: min(44rem, 68vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  isolation: isolate;
  transition: transform 900ms ease;
}

.atmosphere-field:hover {
  transform: translate(-50%, -50%) scale(1.018);
}

.field-core,
.field-ring,
.field-haze,
.field-metal,
.field-particle {
  position: absolute;
  pointer-events: none;
}

.field-core {
  inset: 14%;
  z-index: 3;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 38%, rgba(255, 255, 255, 0.92), transparent 28%),
    radial-gradient(circle at 52% 50%, rgba(180, 232, 248, 0.32), transparent 55%),
    radial-gradient(circle at 62% 58%, rgba(154, 125, 255, 0.12), transparent 64%);
  filter: blur(4px);
  opacity: 0.88;
  animation: atmosphereBreathe 13s ease-in-out infinite;
}

.field-core::before,
.field-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.field-core::before {
  inset: 20%;
  border: 1px solid rgba(135, 205, 230, 0.14);
  filter: blur(0.2px);
  animation: atmosphereRotate 38s linear infinite;
}

.field-core::after {
  inset: 32% 18%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent),
    linear-gradient(100deg, transparent, rgba(145, 218, 245, 0.18), transparent);
  filter: blur(13px);
  opacity: 0.58;
  transform: rotate(-18deg);
  animation: atmosphereLightSweep 18s ease-in-out infinite;
}

.field-ring {
  inset: 8%;
  z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(125, 200, 230, 0.13);
  mask-image: linear-gradient(120deg, transparent 0 18%, #000 38% 66%, transparent 86%);
  animation: atmosphereRotate 46s linear infinite;
}

.field-ring-two {
  inset: 22%;
  border-color: rgba(154, 125, 255, 0.09);
  transform: rotate(24deg);
  animation-duration: 62s;
  animation-direction: reverse;
}

.field-haze {
  z-index: 1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 34% 46%, rgba(255, 255, 255, 0.62), transparent 34%),
    radial-gradient(ellipse at 62% 52%, rgba(176, 226, 246, 0.24), transparent 58%);
  filter: blur(18px);
  opacity: 0.52;
  animation: atmosphereHaze 17s ease-in-out infinite;
}

.field-haze-one {
  width: 92%;
  height: 34%;
  left: 6%;
  top: 32%;
  transform: rotate(-12deg);
}

.field-haze-two {
  width: 78%;
  height: 28%;
  right: 2%;
  top: 46%;
  opacity: 0.38;
  transform: rotate(16deg);
  animation-delay: -6s;
}

.field-metal {
  z-index: 4;
  width: 34%;
  height: 2.2%;
  left: 34%;
  top: 51%;
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76) 22%, rgba(150, 170, 185, 0.28) 52%, rgba(255, 255, 255, 0.42) 72%, transparent);
  filter: blur(0.4px);
  opacity: 0.34;
  transform: rotate(-12deg);
  animation: atmosphereMetalGlimmer 12s ease-in-out infinite;
}

.field-particle {
  z-index: 5;
  width: 0.28rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(83, 195, 230, 0.58);
  box-shadow: 0 0 12px rgba(83, 195, 230, 0.22);
  opacity: 0.32;
  animation: atmosphereParticle 14s ease-in-out infinite;
}

.field-particle:nth-of-type(7) { left: 24%; top: 28%; animation-delay: -1s; }
.field-particle:nth-of-type(8) { left: 74%; top: 36%; animation-delay: -4s; }
.field-particle:nth-of-type(9) { left: 68%; top: 70%; animation-delay: -7s; }
.field-particle:nth-of-type(10) { left: 32%; top: 66%; animation-delay: -10s; }

@keyframes atmosphereBreathe {
  0%,
  100% {
    opacity: 0.74;
    transform: scale(0.985);
  }
  50% {
    opacity: 0.98;
    transform: scale(1.035);
  }
}

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

@keyframes atmosphereLightSweep {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-7%) rotate(-18deg);
  }
  50% {
    opacity: 0.7;
    transform: translateX(6%) rotate(-13deg);
  }
}

@keyframes atmosphereHaze {
  0%,
  100% {
    opacity: 0.34;
    translate: -0.8rem 0.2rem;
    scale: 0.96;
  }
  50% {
    opacity: 0.62;
    translate: 1rem -0.4rem;
    scale: 1.05;
  }
}

@keyframes atmosphereMetalGlimmer {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-0.8rem) rotate(-12deg);
  }
  46% {
    opacity: 0.46;
    transform: translateX(0.8rem) rotate(-11deg);
  }
}

@keyframes atmosphereParticle {
  0%,
  100% {
    opacity: 0.14;
    transform: translate3d(0, 0, 0) scale(0.76);
  }
  50% {
    opacity: 0.42;
    transform: translate3d(0.6rem, -0.8rem, 0) scale(1);
  }
}

@media (max-width: 980px) {
  .product-campaign-copy {
    max-width: 28rem;
  }

  .atmosphere-field {
    left: 58%;
    width: min(34rem, 70vw);
  }
}

@media (max-width: 680px) {
  .product-campaign .section-inner {
    min-height: 48rem;
  }

  .product-campaign-copy {
    max-width: 21rem;
  }

  .product-campaign-copy .section-title {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
    letter-spacing: -0.064em;
  }

  .product-campaign-stage {
    position: relative;
    min-height: 22rem;
    margin-top: 1rem;
  }

  .atmosphere-field {
    left: 50%;
    top: 50%;
    width: min(22rem, 86vw);
  }
}

/* Mobile parity pass: keep the desktop showroom language on small screens */
@media (max-width: 980px) {
  .site-header {
    gap: 0.85rem;
  }

  .desktop-nav {
    display: flex;
    flex: 1 1 auto;
    max-width: 48vw;
    gap: 0.9rem;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(17rem, 1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    min-height: calc(100svh - 5.4rem);
    align-items: center;
  }

  .hero-copy {
    max-width: 23rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 10vw, 5.6rem);
    line-height: 0.88;
  }

  .hero .section-copy {
    max-width: 18rem;
  }

  .product-stage {
    min-height: clamp(24rem, 64vw, 36rem);
  }

  .hero-atmosphere-art {
    width: min(30rem, 46vw);
  }

  .hero-logo-orb {
    width: min(20rem, 34vw);
  }

  #story .story-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
    grid-template-areas: "visual copy";
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }

  #story .story-panel {
    min-height: clamp(26rem, 58vw, 34rem);
  }

  #story .story-copy .section-title,
  .product-campaign-copy .section-title,
  .lifestyle-editorial .section-title {
    font-size: clamp(2.9rem, 8vw, 5rem);
  }

  .product-campaign .section-inner {
    min-height: clamp(42rem, 84vh, 54rem);
  }

  .product-campaign-stage {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
  }

  .campaign-product-link {
    width: min(48rem, 78vw);
    animation: campaignFloatMobile 8s ease-in-out infinite;
  }

  .campaign-shadow {
    left: 28%;
    right: 14%;
    bottom: 12%;
  }

  .flavor-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 0.86fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }

  .flavor-orbit {
    min-height: clamp(31rem, 58vw, 38rem);
    width: min(100%, 32rem);
  }

  .flavor-core {
    width: min(18rem, 42vw);
  }

  .flavor-note {
    width: min(13.2rem, 27vw);
  }

  .lifestyle-showcase-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    text-align: left;
  }

  .lifestyle-editorial .section-title,
  .lifestyle-editorial .section-copy {
    margin-left: 0;
    margin-right: 0;
  }

  .showcase-product-stage {
    min-height: clamp(28rem, 58vw, 38rem);
  }

  .showcase-product-link {
    width: min(30rem, 44vw);
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    gap: 0.7rem;
  }

  .brand-mark span {
    display: none;
  }

  .desktop-nav {
    max-width: 46vw;
    gap: 0.72rem;
    font-size: 0.68rem;
  }

  .nav-cta {
    padding-inline: 0.76rem;
  }

  .section {
    padding-inline: clamp(1rem, 4vw, 1.4rem);
  }

  .hero {
    min-height: 100svh;
    padding-top: 5rem;
    background:
      radial-gradient(circle at 50% 27%, rgba(154, 232, 255, 0.34), transparent 16rem),
      radial-gradient(circle at 50% 44%, rgba(154, 125, 255, 0.12), transparent 18rem),
      radial-gradient(circle at 50% 76%, rgba(255, 255, 255, 0.92), transparent 18rem),
      #f5f5f7;
    background-size: 120% 120%, 120% 120%, 100% 100%, 100% 100%;
    animation: mobileHeroGradientDrift 18s ease-in-out infinite;
  }

  .hero-grid {
    display: flex;
    min-height: calc(100svh - 5rem);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1.1rem, 4.6vh, 2rem);
    padding-top: 0;
    text-align: center;
  }

  .product-stage {
    order: -1;
    width: 100%;
    min-height: clamp(13rem, 39vh, 20rem);
    display: grid;
    place-items: center;
    background: none;
  }

  .product-stage::before,
  .product-stage::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
  }

  .product-stage::before {
    width: min(21rem, 78vw);
    aspect-ratio: 1;
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.82), transparent 35%),
      radial-gradient(circle, rgba(142, 233, 255, 0.22), transparent 65%);
    filter: blur(18px);
    opacity: 0.68;
    animation: heroAtmospherePulse 7s ease-in-out infinite;
  }

  .product-stage::after {
    width: min(18rem, 66vw);
    height: min(7rem, 24vw);
    background:
      linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent),
      radial-gradient(ellipse, rgba(142, 233, 255, 0.12), transparent 72%);
    filter: blur(14px);
    opacity: 0.42;
    transform: translateY(1.8rem);
  }

  .hero-atmosphere-art {
    width: min(18.5rem, 64vw);
    background:
      radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.62), transparent 36%),
      radial-gradient(circle at 50% 52%, rgba(142, 233, 255, 0.2), transparent 56%),
      radial-gradient(circle at 58% 42%, rgba(154, 125, 255, 0.1), transparent 62%);
    animation: mobileHeroLogoFloat 9s ease-in-out infinite;
  }

  .hero-frost {
    opacity: 0.2;
  }

  .hero-logo-orb {
    width: min(13.5rem, 48vw);
    opacity: 0.9;
    animation: mobileHeroLogoBreathe 8.5s ease-in-out infinite;
  }

  .hero-logo-orb img {
    opacity: 0.84;
    filter:
      drop-shadow(0 0 14px rgba(0, 174, 255, 0.34))
      drop-shadow(0 20px 38px rgba(29, 29, 31, 0.08));
  }

  .hero-particles span {
    opacity: 0.38;
  }

  .hero-copy {
    max-width: min(22rem, 92vw);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero h1 {
    max-width: 8.9ch;
    font-size: clamp(2.9rem, 12.5vw, 4.35rem);
    font-weight: 740;
    line-height: 0.94;
    letter-spacing: -0.058em;
  }

  .hero .section-copy {
    max-width: 18.5rem;
    margin-top: 1.45rem;
    font-size: 1rem;
    line-height: 1.68;
    letter-spacing: -0.006em;
  }

  .hero-actions {
    margin-top: 1.55rem;
    justify-content: center;
  }

  .hero .glass-button {
    min-height: 2.42rem;
    padding-inline: 1.1rem;
    font-size: 0.8rem;
  }

  @keyframes mobileHeroGradientDrift {
    0%,
    100% {
      background-position: 50% 27%, 50% 44%, 50% 76%, 0 0;
    }
    50% {
      background-position: 48% 24%, 53% 47%, 50% 78%, 0 0;
    }
  }

  @keyframes mobileHeroLogoFloat {
    0%,
    100% {
      transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
      transform: translate3d(0, -6px, 0) scale(1.012);
    }
  }

  @keyframes mobileHeroLogoBreathe {
    0%,
    100% {
      opacity: 0.84;
      filter: drop-shadow(0 0 14px rgba(0, 174, 255, 0.24));
    }
    50% {
      opacity: 0.96;
      filter: drop-shadow(0 0 24px rgba(0, 174, 255, 0.34));
    }
  }

  #story .story-layout,
  .flavor-layout,
  .lifestyle-showcase-grid {
    grid-template-columns: 1fr;
  }

  #story .story-layout {
    grid-template-areas:
      "copy"
      "visual";
  }

  .product-campaign-copy {
    max-width: 19rem;
  }

  .product-campaign-copy .section-title {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  .campaign-product-link {
    width: min(34rem, 118vw);
  }

  .flavor-orbit {
    min-height: 38rem;
    width: min(100%, 29rem);
  }

  .flavor-core {
    width: min(18rem, 66vw);
  }

  .flavor-note {
    width: min(13.5rem, 50vw);
  }

  .showcase-product-link {
    width: min(23rem, 82vw);
  }
}

/* Controlled Atmosphere energy refinement */
.product-campaign {
  --atmo-progress: 0;
  background:
    radial-gradient(circle at calc(48% + (var(--atmo-progress) * 6%)) 42%, rgba(206, 241, 251, 0.72), transparent 34rem),
    radial-gradient(circle at 58% calc(48% + (var(--atmo-progress) * 5%)), rgba(255, 255, 255, 0.92), transparent 25rem),
    radial-gradient(circle at 72% 26%, rgba(225, 222, 255, 0.22), transparent 28rem),
    radial-gradient(circle at 28% 80%, rgba(221, 235, 244, 0.36), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 52%, #ffffff 100%);
  animation: atmosphereSectionLight 26s ease-in-out infinite;
}

.product-campaign::before,
.product-campaign::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.product-campaign::before {
  width: min(72rem, 94vw);
  height: min(30rem, 44vw);
  left: 50%;
  top: 54%;
  z-index: 0;
  background:
    radial-gradient(ellipse at 42% 46%, rgba(255, 255, 255, 0.72), transparent 35%),
    radial-gradient(ellipse at 62% 52%, rgba(160, 222, 244, 0.16), transparent 60%);
  filter: blur(28px);
  opacity: calc(0.42 + (var(--atmo-progress) * 0.18));
  transform: translate(-50%, -50%) scale(calc(0.98 + (var(--atmo-progress) * 0.04))) rotate(-8deg);
  animation: atmosphereSectionHaze 22s ease-in-out infinite;
}

.product-campaign::after {
  width: min(58rem, 76vw);
  height: min(16rem, 26vw);
  right: 4%;
  top: 42%;
  z-index: 1;
  background:
    repeating-linear-gradient(0deg, transparent 0 1.6rem, rgba(132, 198, 222, 0.055) 1.68rem 1.74rem, transparent 1.86rem 3.2rem),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), rgba(168, 222, 242, 0.14), transparent);
  mask-image: radial-gradient(ellipse, #000 18%, transparent 74%);
  filter: blur(1.8px);
  opacity: 0.46;
  transform: rotate(-12deg);
  animation: atmosphereAirCurrent 24s ease-in-out infinite;
}

.product-campaign-copy {
  transition: opacity 600ms ease, transform 600ms ease;
  opacity: calc(0.86 + (var(--atmo-progress) * 0.14));
  transform: translateY(calc((1 - var(--atmo-progress)) * 8px));
}

.atmosphere-field {
  width: min(48rem, 72vw);
  transform:
    translate(-50%, -50%)
    scale(calc(1 + (var(--atmo-progress) * 0.045)));
}

.atmosphere-field:hover {
  transform:
    translate(-50%, -50%)
    scale(calc(1.018 + (var(--atmo-progress) * 0.045)));
}

.atmosphere-field::before,
.atmosphere-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.atmosphere-field::before {
  inset: 2%;
  z-index: 0;
  background:
    radial-gradient(circle at 42% 38%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 52% 50%, rgba(142, 233, 255, 0.24), transparent 58%),
    radial-gradient(circle at 58% 58%, rgba(154, 125, 255, 0.08), transparent 72%);
  filter: blur(24px);
  opacity: calc(0.58 + (var(--atmo-progress) * 0.18));
  animation: atmosphereOuterBreath 14s ease-in-out infinite;
}

.atmosphere-field::after {
  inset: 19%;
  z-index: 4;
  border: 1px solid rgba(128, 205, 232, 0.22);
  box-shadow:
    inset 0 0 42px rgba(255, 255, 255, 0.7),
    inset 0 0 72px rgba(142, 233, 255, 0.12),
    0 0 48px rgba(142, 233, 255, 0.13);
  mask-image: linear-gradient(135deg, transparent 0 12%, #000 32% 76%, transparent 96%);
  transform: rotate(-18deg);
  opacity: 0.62;
  animation: atmosphereRefraction 34s linear infinite;
}

.field-core {
  inset: 10%;
  background:
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.98), transparent 24%),
    radial-gradient(circle at 50% 46%, rgba(224, 248, 255, 0.54), transparent 42%),
    radial-gradient(circle at 54% 54%, rgba(168, 226, 247, 0.32), transparent 60%),
    radial-gradient(circle at 66% 62%, rgba(154, 125, 255, 0.13), transparent 70%);
  filter: blur(3px);
  opacity: calc(0.86 + (var(--atmo-progress) * 0.1));
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.72),
    inset 0 0 120px rgba(142, 233, 255, 0.13),
    0 0 72px rgba(142, 233, 255, 0.1);
}

.field-core::before {
  inset: 12%;
  border-color: rgba(118, 205, 236, 0.18);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.55);
  mask-image: linear-gradient(130deg, transparent 0 16%, #000 30% 68%, transparent 86%);
}

.field-core::after {
  inset: 24% 10%;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent),
    linear-gradient(105deg, transparent, rgba(145, 218, 245, 0.28), transparent);
  opacity: 0.7;
}

.field-ring {
  inset: 4%;
  border-color: rgba(125, 200, 230, 0.18);
  box-shadow: 0 0 48px rgba(142, 233, 255, 0.08);
}

.field-ring-two {
  inset: 18%;
  border-color: rgba(154, 125, 255, 0.12);
}

.field-haze {
  background:
    radial-gradient(ellipse at 30% 46%, rgba(255, 255, 255, 0.74), transparent 34%),
    radial-gradient(ellipse at 58% 52%, rgba(176, 226, 246, 0.34), transparent 58%),
    radial-gradient(ellipse at 74% 42%, rgba(154, 125, 255, 0.08), transparent 64%);
  filter: blur(22px);
}

.field-haze-one {
  width: 112%;
  height: 42%;
  left: -4%;
  top: 29%;
}

.field-haze-two {
  width: 96%;
  height: 34%;
  right: -8%;
  top: 48%;
}

.field-particle {
  width: 0.34rem;
  background: rgba(92, 198, 232, 0.62);
  box-shadow: 0 0 16px rgba(83, 195, 230, 0.28);
}

@keyframes atmosphereSectionLight {
  0%,
  100% {
    background-position: 50% 46%, 58% 48%, 72% 26%, 28% 80%, 0 0;
  }
  50% {
    background-position: 47% 43%, 61% 51%, 69% 29%, 31% 77%, 0 0;
  }
}

@keyframes atmosphereSectionHaze {
  0%,
  100% {
    translate: -1.4rem 0;
  }
  50% {
    translate: 1.4rem -0.6rem;
  }
}

@keyframes atmosphereAirCurrent {
  0%,
  100% {
    opacity: 0.28;
    transform: translateX(-2%) rotate(-12deg) scaleX(0.96);
  }
  50% {
    opacity: 0.52;
    transform: translateX(4%) rotate(-9deg) scaleX(1.06);
  }
}

@keyframes atmosphereOuterBreath {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.78;
  }
}

@keyframes atmosphereRefraction {
  to {
    transform: rotate(342deg);
  }
}

@media (max-width: 680px) {
  .product-campaign::before {
    width: 34rem;
    height: 18rem;
  }

  .product-campaign::after {
    width: 28rem;
    height: 12rem;
    right: -24%;
  }

  .atmosphere-field {
    width: min(24rem, 92vw);
  }
}

/* Quiet luxury atmosphere section refinement */
.product-campaign {
  --atmo-x: 0px;
  --atmo-y: 0px;
  --atmo-light-x: 50%;
  --atmo-light-y: 50%;
  min-height: 100svh;
  background:
    radial-gradient(circle at var(--atmo-light-x) var(--atmo-light-y), rgba(214, 243, 252, 0.48), transparent 31rem),
    linear-gradient(112deg, rgba(229, 244, 250, 0.6) 0%, transparent 28%, rgba(241, 244, 249, 0.72) 62%, transparent 100%),
    radial-gradient(ellipse at 68% 44%, rgba(216, 242, 250, 0.58), transparent 31rem),
    radial-gradient(ellipse at 18% 76%, rgba(234, 232, 247, 0.34), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fa 54%, #ffffff 100%);
  animation: productAtmosphereLight 18s ease-in-out infinite;
}

.product-campaign::before {
  width: min(78rem, 100vw);
  height: min(28rem, 38vw);
  left: 56%;
  top: 48%;
  background:
    linear-gradient(98deg, transparent 0 14%, rgba(255, 255, 255, 0.72) 34%, rgba(198, 230, 242, 0.16) 58%, transparent 82%),
    linear-gradient(14deg, transparent, rgba(211, 232, 241, 0.24), transparent);
  filter: blur(34px);
  opacity: 0.55;
  transform: translate(-50%, -50%) rotate(-10deg);
  animation: atmosphereVolumeLight 20s ease-in-out infinite;
}

.product-campaign::after {
  right: -4%;
  top: 36%;
  width: min(68rem, 86vw);
  height: min(21rem, 28vw);
  background:
    linear-gradient(96deg, transparent 0 18%, rgba(255, 255, 255, 0.46) 36%, rgba(168, 218, 238, 0.1) 58%, transparent 82%),
    repeating-linear-gradient(0deg, transparent 0 2.4rem, rgba(135, 190, 210, 0.035) 2.5rem 2.56rem, transparent 2.7rem 4.4rem);
  filter: blur(4px);
  opacity: 0.36;
  animation: atmosphereAirSheet 24s ease-in-out infinite;
}

.product-campaign .section-inner {
  min-height: clamp(50rem, 92vh, 66rem);
}

.product-campaign-copy {
  max-width: 29rem;
  padding-top: clamp(5.5rem, 10vw, 8rem);
}

.product-campaign-copy .eyebrow {
  color: rgba(29, 29, 31, 0.38);
  font-size: 0.66rem;
  letter-spacing: 0.38em;
}

.product-campaign-copy .eyebrow,
.product-campaign-copy .tech-title-line,
.product-campaign-copy .section-copy {
  opacity: 0;
  transform: translateY(18px);
}

.product-campaign-copy .section-title {
  max-width: 8.6ch;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-transform: none;
}

.product-campaign-copy .tech-title-line {
  display: block;
}

.product-campaign-copy .section-copy {
  max-width: 22rem;
  margin-top: clamp(1.8rem, 3.4vw, 2.8rem);
  color: rgba(29, 29, 31, 0.56);
  line-height: 1.92;
}

.atmosphere-field {
  left: 62%;
  top: 52%;
  width: min(43rem, 62vw);
  opacity: 0.96;
  transform: translate(calc(-50% + var(--atmo-x)), calc(-50% + var(--atmo-y))) scale(calc(1 + (var(--atmo-progress) * 0.018)));
  transition: transform 1000ms cubic-bezier(0.16, 1, 0.3, 1);
}

.atmosphere-field:hover {
  transform: translate(calc(-50% + var(--atmo-x)), calc(-50% + var(--atmo-y))) scale(calc(1.01 + (var(--atmo-progress) * 0.018)));
}

.atmosphere-field::before {
  inset: -2%;
  background:
    linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.62) 36%, rgba(202, 232, 242, 0.18) 57%, transparent 80%),
    radial-gradient(ellipse at 52% 48%, rgba(181, 228, 244, 0.28), transparent 64%);
  filter: blur(28px);
  opacity: 0.52;
  animation: atmosphereOuterPulse 10s ease-in-out infinite;
}

.atmosphere-field::after {
  inset: 17%;
  border-color: rgba(128, 205, 232, 0.14);
  box-shadow:
    inset 0 0 54px rgba(255, 255, 255, 0.72),
    inset 0 0 92px rgba(142, 233, 255, 0.08),
    0 0 54px rgba(142, 233, 255, 0.08);
  opacity: 0.42;
  mask-image: linear-gradient(140deg, transparent 0 18%, #000 36% 70%, transparent 92%);
  animation: atmosphereGlassRefract 12s ease-in-out infinite;
}

.field-core {
  inset: 13%;
  background:
    radial-gradient(ellipse at 42% 34%, rgba(255, 255, 255, 0.86), transparent 25%),
    radial-gradient(ellipse at 48% 48%, rgba(226, 248, 255, 0.42), transparent 45%),
    radial-gradient(ellipse at 56% 57%, rgba(165, 220, 240, 0.24), transparent 64%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.18), transparent 38%, rgba(194, 222, 234, 0.12) 70%, transparent);
  filter: blur(5px);
  opacity: 0.74;
  box-shadow:
    inset 0 0 70px rgba(255, 255, 255, 0.64),
    inset 0 0 120px rgba(142, 233, 255, 0.08),
    0 0 58px rgba(142, 233, 255, 0.065);
  animation: quietAtmosphereBreath 10s ease-in-out infinite, atmosphereDiffusionFlow 16s ease-in-out infinite;
}

.field-core::before {
  inset: 10%;
  border-color: rgba(118, 205, 236, 0.1);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.44);
  opacity: 0.54;
}

.field-core::after {
  inset: 22% 8%;
  background:
    linear-gradient(92deg, transparent, rgba(255, 255, 255, 0.54), transparent),
    linear-gradient(112deg, transparent, rgba(145, 218, 245, 0.14), transparent);
  filter: blur(18px);
  opacity: 0.42;
  animation-duration: 24s;
}

.field-trail {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 22% 48%, transparent 0 28%, rgba(255, 255, 255, 0.36) 36%, transparent 58%),
    linear-gradient(90deg, transparent, rgba(174, 226, 244, 0.18), rgba(255, 255, 255, 0.34), transparent);
  filter: blur(12px);
  opacity: 0.22;
  transform-origin: center;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 72%, transparent);
  animation: airflowTrailDrift 17s ease-in-out infinite;
}

.field-trail-one {
  width: 92%;
  height: 7%;
  left: 4%;
  top: 38%;
  transform: rotate(-13deg);
}

.field-trail-two {
  width: 82%;
  height: 6%;
  left: 10%;
  top: 55%;
  opacity: 0.16;
  transform: rotate(10deg);
  animation-delay: -5s;
}

.field-trail-three {
  width: 70%;
  height: 5%;
  left: 17%;
  top: 48%;
  opacity: 0.13;
  transform: rotate(-4deg);
  animation-delay: -10s;
}

.field-ring {
  inset: 6%;
  border-color: rgba(125, 200, 230, 0.09);
  box-shadow: none;
  opacity: 0.52;
  animation-duration: 84s;
}

.field-ring-two {
  inset: 21%;
  opacity: 0.38;
  animation-duration: 110s;
}

.field-haze {
  background:
    linear-gradient(95deg, transparent, rgba(255, 255, 255, 0.62), rgba(176, 226, 246, 0.16), transparent),
    radial-gradient(ellipse at 58% 52%, rgba(176, 226, 246, 0.18), transparent 58%);
  filter: blur(30px);
  opacity: 0.38;
  animation-duration: 24s;
}

.field-haze-one {
  width: 118%;
  height: 36%;
  left: -9%;
  top: 31%;
}

.field-haze-two {
  width: 104%;
  height: 30%;
  right: -10%;
  top: 52%;
  opacity: 0.24;
}

.field-metal {
  height: 1.4%;
  opacity: 0.18;
  filter: blur(0.8px);
}

.field-particle {
  width: 0.22rem;
  opacity: 0.2;
  background: rgba(94, 184, 214, 0.42);
  box-shadow: 0 0 10px rgba(83, 195, 230, 0.16);
  animation-duration: 22s;
}

.field-particle:nth-of-type(10) { left: 24%; top: 28%; animation-delay: -1s; }
.field-particle:nth-of-type(11) { left: 74%; top: 36%; animation-delay: -4s; }
.field-particle:nth-of-type(12) { left: 68%; top: 70%; animation-delay: -7s; }
.field-particle:nth-of-type(13) { left: 32%; top: 66%; animation-delay: -10s; }

.product-campaign.section-visible .product-campaign-copy .eyebrow,
.product-campaign.section-visible .product-campaign-copy .tech-title-line,
.product-campaign.section-visible .product-campaign-copy .section-copy {
  animation: techTextLayerIn 1.45s ease-out forwards;
}

.product-campaign.section-visible .product-campaign-copy .eyebrow {
  animation-delay: 0.12s;
}

.product-campaign.section-visible .product-campaign-copy .tech-title-line:nth-child(1) {
  animation-delay: 0.42s;
}

.product-campaign.section-visible .product-campaign-copy .tech-title-line:nth-child(2) {
  animation-delay: 0.78s;
}

.product-campaign.section-visible .product-campaign-copy .section-copy {
  animation-delay: 1.16s;
}

@keyframes quietAtmosphereBreath {
  0%,
  100% {
    opacity: 0.68;
    transform: translate3d(0, 0, 0) scale(0.982);
  }
  50% {
    opacity: 0.92;
    transform: translate3d(0, -0.38rem, 0) scale(1.035);
  }
}

@keyframes productAtmosphereLight {
  0%,
  100% {
    background-position: 0% 50%, 0% 50%, 50% 50%, 50% 50%, 50% 50%;
  }
  50% {
    background-position: 100% 50%, 64% 50%, 48% 52%, 52% 48%, 50% 50%;
  }
}

@keyframes atmosphereVolumeLight {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-52%, -49%) rotate(-12deg) scaleX(0.98);
  }
  50% {
    opacity: 0.68;
    transform: translate(-48%, -51%) rotate(-8deg) scaleX(1.04);
  }
}

@keyframes atmosphereAirSheet {
  0%,
  100% {
    opacity: 0.24;
    transform: translateX(-1.2rem) rotate(-2deg);
  }
  50% {
    opacity: 0.42;
    transform: translateX(1.4rem) rotate(1deg);
  }
}

@keyframes atmosphereOuterPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.66;
    transform: scale(1.045);
  }
}

@keyframes atmosphereGlassRefract {
  0%,
  100% {
    opacity: 0.34;
    transform: rotate(-3deg) scale(0.985);
  }
  50% {
    opacity: 0.55;
    transform: rotate(3deg) scale(1.02);
  }
}

@keyframes atmosphereDiffusionFlow {
  0%,
  100% {
    background-position: 40% 35%, 50% 50%, 56% 57%, 0% 50%;
  }
  50% {
    background-position: 48% 40%, 46% 48%, 62% 54%, 100% 50%;
  }
}

@keyframes airflowTrailDrift {
  0%,
  100% {
    opacity: 0.12;
    translate: -1.2rem 0.3rem;
    scale: 0.98 0.9;
  }
  48% {
    opacity: 0.3;
    translate: 1.4rem -0.3rem;
    scale: 1.04 1.1;
  }
}

@keyframes techTextLayerIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .product-campaign-copy {
    max-width: 24rem;
  }

  .atmosphere-field {
    left: 58%;
    width: min(35rem, 66vw);
  }
}

@media (max-width: 680px) {
  .product-campaign-copy {
    max-width: 20rem;
  }

  .product-campaign-copy .section-title {
    font-size: clamp(2.55rem, 11.5vw, 3.8rem);
  }

  .atmosphere-field {
    left: 50%;
    width: min(23rem, 88vw);
  }
}

/* Product Anatomy */
.product-anatomy {
  --anatomy-progress: 0;
  min-height: 120svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 53% 42%, rgba(218, 244, 252, 0.46), transparent 31rem),
    radial-gradient(circle at 78% 24%, rgba(236, 232, 252, 0.26), transparent 27rem),
    linear-gradient(180deg, #ffffff 0%, #f7f9fb 54%, #ffffff 100%);
  overflow: hidden;
}

.anatomy-inner {
  position: relative;
  min-height: clamp(50rem, 92vh, 66rem);
  display: grid;
  grid-template-columns: minmax(16rem, 0.58fr) minmax(28rem, 1.42fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.anatomy-copy {
  position: relative;
  z-index: 5;
}

.anatomy-copy .eyebrow {
  color: rgba(29, 29, 31, 0.42);
  letter-spacing: 0.34em;
}

.anatomy-copy .section-title {
  max-width: 9.8ch;
  color: #1d1d1f;
  font-size: clamp(3rem, 5.6vw, 6.2rem);
  font-weight: 680;
  line-height: 0.94;
  letter-spacing: -0.066em;
}

.anatomy-stage {
  position: relative;
  min-height: clamp(38rem, 64vw, 56rem);
  isolation: isolate;
}

.anatomy-glow {
  position: absolute;
  z-index: 0;
  inset: 7% 4%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, rgba(255, 255, 255, 0.86), transparent 34%),
    radial-gradient(circle at 52% 54%, rgba(172, 226, 246, 0.22), transparent 58%);
  filter: blur(20px);
  opacity: 0.72;
  transform: scale(calc(0.96 + (var(--anatomy-progress) * 0.05)));
}

.anatomy-product {
  position: absolute;
  z-index: 2;
  left: 48%;
  top: 52%;
  width: min(34rem, 48vw);
  aspect-ratio: 0.68;
  transform: translate(-50%, -50%);
}

.anatomy-piece {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 34px 42px rgba(29, 29, 31, 0.11))
    drop-shadow(0 0 16px rgba(142, 233, 255, 0.08));
  transition: filter 500ms ease;
  will-change: transform, opacity;
}

.anatomy-mouthpiece {
  clip-path: inset(0 27% 73% 28%);
  transform:
    translate3d(calc(var(--anatomy-progress) * -3.3rem), calc(var(--anatomy-progress) * -7rem), 0)
    rotate(calc(var(--anatomy-progress) * -4deg));
}

.anatomy-cartridge {
  clip-path: inset(18% 18% 46% 20%);
  transform:
    translate3d(calc(var(--anatomy-progress) * -5.4rem), calc(var(--anatomy-progress) * -2.2rem), 0)
    rotate(calc(var(--anatomy-progress) * -2deg));
}

.anatomy-body {
  clip-path: inset(29% 24% 0 25%);
  transform:
    translate3d(calc(var(--anatomy-progress) * -1.1rem), calc(var(--anatomy-progress) * 1.7rem), 0)
    rotate(calc(var(--anatomy-progress) * 1deg));
}

.anatomy-oled {
  clip-path: inset(34% 0 0 58%);
  transform:
    translate3d(calc(var(--anatomy-progress) * 6.4rem), calc(var(--anatomy-progress) * 0.8rem), 0)
    rotate(calc(var(--anatomy-progress) * 3deg));
}

.anatomy-airflow {
  clip-path: inset(62% 0 8% 60%);
  transform:
    translate3d(calc(var(--anatomy-progress) * 8.2rem), calc(var(--anatomy-progress) * 5.2rem), 0)
    rotate(calc(var(--anatomy-progress) * 5deg));
}

.product-anatomy.is-split .anatomy-piece {
  filter:
    drop-shadow(0 38px 48px rgba(29, 29, 31, 0.12))
    drop-shadow(0 0 22px rgba(142, 233, 255, 0.11));
}

.anatomy-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 116, 140, 0.28), transparent);
  transform-origin: left center;
  opacity: calc(var(--anatomy-progress) * 0.72);
  scale: var(--anatomy-progress) 1;
}

.anatomy-line-mouthpiece { width: 13rem; left: 29%; top: 18%; rotate: -12deg; }
.anatomy-line-coil { width: 12rem; left: 26%; top: 38%; rotate: -4deg; }
.anatomy-line-battery { width: 12rem; left: 30%; top: 67%; rotate: 8deg; }
.anatomy-line-oled { width: 13rem; right: 18%; top: 44%; rotate: 7deg; transform-origin: right center; }
.anatomy-line-airflow { width: 12rem; right: 13%; top: 71%; rotate: -10deg; transform-origin: right center; }

.anatomy-note {
  position: absolute;
  z-index: 4;
  max-width: 12rem;
  color: #1d1d1f;
  opacity: calc((var(--anatomy-progress) - 0.28) * 1.45);
  transform: translateY(calc((1 - var(--anatomy-progress)) * 14px));
  pointer-events: none;
}

.anatomy-note strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.anatomy-note span {
  display: block;
  margin-top: 0.42rem;
  color: rgba(29, 29, 31, 0.54);
  font-size: 0.82rem;
  line-height: 1.55;
}

.anatomy-note-mouthpiece { left: 2%; top: 10%; }
.anatomy-note-coil { left: 0; top: 33%; }
.anatomy-note-battery { left: 5%; bottom: 16%; }
.anatomy-note-oled { right: 0; top: 34%; }
.anatomy-note-airflow { right: 4%; bottom: 14%; }

@media (max-width: 980px) {
  .anatomy-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .anatomy-copy {
    max-width: 34rem;
  }

  .anatomy-stage {
    min-height: 42rem;
  }

  .anatomy-product {
    width: min(30rem, 76vw);
  }
}

@media (max-width: 680px) {
  .product-anatomy {
    min-height: 118svh;
  }

  .anatomy-copy .section-title {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .anatomy-stage {
    min-height: 38rem;
  }

  .anatomy-product {
    width: min(25rem, 86vw);
    left: 50%;
  }

  .anatomy-note {
    max-width: 10.5rem;
  }

  .anatomy-note span {
    font-size: 0.76rem;
  }
}

/* Anatomy simplified split: left / right only */
.anatomy-stage {
  min-height: clamp(42rem, 66vw, 58rem);
}

.anatomy-product {
  width: min(41rem, 52vw);
  aspect-ratio: 0.68;
  left: 50%;
  top: 53%;
}

.anatomy-left-half,
.anatomy-right-half {
  clip-path: none;
  transform: none;
}

.anatomy-left-half {
  clip-path: inset(0 47.5% 0 30.5%);
  transform:
    translate3d(calc(var(--anatomy-progress) * -6.2rem), calc(var(--anatomy-progress) * -0.2rem), 0)
    rotate(calc(var(--anatomy-progress) * -0.6deg));
}

.anatomy-right-half {
  clip-path: inset(0 25.5% 0 52.2%);
  transform:
    translate3d(calc(var(--anatomy-progress) * 6.2rem), calc(var(--anatomy-progress) * 0.2rem), 0)
    rotate(calc(var(--anatomy-progress) * 0.6deg));
}

.anatomy-line-mouthpiece,
.anatomy-line-coil,
.anatomy-line-battery,
.anatomy-line-oled,
.anatomy-line-airflow,
.anatomy-note-mouthpiece,
.anatomy-note-coil,
.anatomy-note-battery,
.anatomy-note-oled,
.anatomy-note-airflow {
  display: none;
}

.anatomy-line-left {
  width: 9.5rem;
  left: 15%;
  top: 35%;
  rotate: 8deg;
  opacity: calc(var(--anatomy-progress) * 0.34);
}

.anatomy-line-right {
  width: 9.5rem;
  right: 12%;
  top: 35%;
  rotate: -8deg;
  transform-origin: right center;
  opacity: calc(var(--anatomy-progress) * 0.34);
}

.anatomy-note-left {
  left: 0;
  top: 18%;
}

.anatomy-note-right {
  right: 0;
  top: 18%;
}

@media (max-width: 980px) {
  .anatomy-stage {
    min-height: 44rem;
  }

  .anatomy-product {
    width: min(33rem, 82vw);
  }

  .anatomy-left-half {
    transform:
      translate3d(calc(var(--anatomy-progress) * -3.4rem), calc(var(--anatomy-progress) * -0.15rem), 0)
      rotate(calc(var(--anatomy-progress) * -0.5deg));
  }

  .anatomy-right-half {
    transform:
      translate3d(calc(var(--anatomy-progress) * 3.4rem), calc(var(--anatomy-progress) * 0.15rem), 0)
      rotate(calc(var(--anatomy-progress) * 0.5deg));
  }

  .anatomy-note-left {
    left: 1rem;
    top: 8%;
  }

  .anatomy-note-right {
    right: 1rem;
    top: 8%;
  }
}

@media (max-width: 680px) {
  .anatomy-stage {
    min-height: 46rem;
  }

  .anatomy-product {
    width: min(24rem, 92vw);
    top: 52%;
  }

  .anatomy-left-half {
    transform:
      translate3d(calc(var(--anatomy-progress) * -1.8rem), 0, 0);
  }

  .anatomy-right-half {
    transform:
      translate3d(calc(var(--anatomy-progress) * 1.8rem), 0, 0);
  }

  .anatomy-note-left {
    left: 0;
    top: 3%;
  }

  .anatomy-note-right {
    right: 0;
    top: auto;
    bottom: 2%;
  }

  .anatomy-line-left {
    left: 16%;
    top: 21%;
    width: 6rem;
  }

.anatomy-line-right {
    right: 16%;
    top: 76%;
    width: 6rem;
  }
}

/* Atmosphere Device Scene */
.lifestyle-showcase {
  --scene-progress: 0;
  --scene-x: 0px;
  --scene-y: 0px;
  min-height: 105svh;
  background:
    radial-gradient(circle at 58% 42%, rgba(211, 243, 252, 0.62), transparent 31rem),
    radial-gradient(circle at 72% 66%, rgba(230, 225, 252, 0.3), transparent 36rem),
    radial-gradient(circle at 18% 20%, rgba(237, 248, 252, 0.72), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 56%, #ffffff 100%);
}

.lifestyle-showcase::before {
  inset: 10% 3% auto;
  height: 56%;
  background:
    linear-gradient(96deg, transparent 8%, rgba(255, 255, 255, 0.78) 34%, rgba(185, 224, 240, 0.2) 56%, transparent 82%),
    radial-gradient(ellipse at 52% 48%, rgba(204, 239, 250, 0.28), transparent 64%);
  filter: blur(32px);
  opacity: 0.72;
  transform: translateX(calc(var(--scene-progress) * 2rem - 1rem)) rotate(-7deg);
  animation: deviceSceneLight 18s ease-in-out infinite;
}

.lifestyle-showcase::after {
  left: 20%;
  right: 18%;
  bottom: 14%;
  opacity: 0.38;
}

.lifestyle-showcase-grid {
  grid-template-columns: minmax(18rem, 0.78fr) minmax(30rem, 1.35fr);
  grid-template-areas:
    "copy stage"
    "copy stage";
  gap: clamp(2rem, 6vw, 7rem);
  min-height: clamp(45rem, 84vh, 62rem);
}

.lifestyle-editorial {
  grid-area: copy;
  align-self: center;
  padding-left: clamp(0rem, 2vw, 1.8rem);
}

.lifestyle-editorial .section-title {
  max-width: 8.8ch;
  font-size: clamp(3.4rem, 6.7vw, 7.1rem);
  font-weight: 720;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.lifestyle-editorial .section-title::first-line {
  letter-spacing: -0.05em;
}

.lifestyle-editorial .section-copy {
  max-width: 17rem;
  margin-top: clamp(2rem, 4vw, 3.2rem);
  color: rgba(29, 29, 31, 0.52);
  line-height: 1.95;
}

.atmosphere-text-link {
  display: inline-flex;
  margin-top: clamp(2rem, 4vw, 3rem);
  color: rgba(29, 29, 31, 0.46);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 260ms ease, text-shadow 260ms ease, transform 260ms ease;
}

.atmosphere-text-link:hover {
  color: rgba(29, 29, 31, 0.86);
  text-shadow: 0 0 22px rgba(104, 209, 255, 0.2);
  transform: translateX(0.2rem);
}

.showcase-product-stage {
  grid-area: stage;
  min-height: clamp(38rem, 70vw, 58rem);
  transform: translate(var(--scene-x), var(--scene-y));
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-ambient span:first-child {
  width: min(44rem, 64vw);
  height: min(44rem, 64vw);
  background:
    radial-gradient(circle at 48% 46%, rgba(255, 255, 255, 0.84), transparent 28%),
    radial-gradient(circle, rgba(112, 221, 255, 0.22), transparent 68%);
  opacity: 0.52;
}

.showcase-ambient span:last-child {
  width: min(34rem, 52vw);
  height: min(34rem, 52vw);
  opacity: 0.34;
}

.showcase-glass {
  inset: 10% 0 12%;
  background:
    linear-gradient(106deg, transparent 0 36%, rgba(255, 255, 255, 0.54) 41%, transparent 46%),
    linear-gradient(80deg, transparent 0 58%, rgba(190, 220, 245, 0.18) 61%, transparent 66%),
    radial-gradient(ellipse at 52% 50%, rgba(191, 235, 248, 0.12), transparent 60%);
  opacity: 0.58;
  animation: deviceSceneGlass 16s ease-in-out infinite;
}

.showcase-airflow-trails {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.showcase-airflow-trails span {
  position: absolute;
  left: 8%;
  top: 45%;
  width: 88%;
  height: 9%;
  border-radius: 999px;
  background:
    linear-gradient(92deg, transparent, rgba(255, 255, 255, 0.54), rgba(176, 226, 246, 0.16), transparent),
    radial-gradient(ellipse at 52% 50%, rgba(255, 255, 255, 0.24), transparent 60%);
  filter: blur(16px);
  opacity: 0.24;
  transform: rotate(-10deg);
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 70%, transparent);
  animation: deviceSceneTrail 17s ease-in-out infinite;
}

.showcase-airflow-trails span:nth-child(2) {
  left: 14%;
  top: 55%;
  width: 76%;
  height: 7%;
  opacity: 0.16;
  transform: rotate(8deg);
  animation-delay: -6s;
}

.showcase-airflow-trails span:nth-child(3) {
  left: 22%;
  top: 35%;
  width: 62%;
  height: 6%;
  opacity: 0.14;
  transform: rotate(-2deg);
  animation-delay: -11s;
}

.showcase-product-link {
  width: min(39rem, 62vw);
  transform: scale(calc(1 + var(--scene-progress) * 0.05));
  animation: deviceSceneFloat 9s ease-in-out infinite;
}

.showcase-product-link img {
  filter:
    drop-shadow(0 calc(34px + var(--scene-progress) * 18px) calc(36px + var(--scene-progress) * 16px) rgba(22, 31, 44, 0.14))
    drop-shadow(0 0 38px rgba(104, 209, 255, 0.18))
    drop-shadow(0 0 78px rgba(154, 125, 255, 0.06));
}

.showcase-product-link:hover img {
  transform: translateY(-0.28rem) scale(1.01);
}

.showcase-shadow {
  left: 22%;
  right: 22%;
  bottom: 14%;
  height: calc(2.4rem + var(--scene-progress) * 1.2rem);
  opacity: calc(0.45 + var(--scene-progress) * 0.25);
  background: radial-gradient(ellipse, rgba(12, 18, 28, 0.16), transparent 72%);
}

.showcase-atmosphere-words {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.showcase-atmosphere-words span {
  position: absolute;
  color: rgba(29, 29, 31, 0.28);
  font-size: clamp(0.68rem, 1vw, 0.86rem);
  font-weight: 650;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.72;
  animation: deviceWordFloat 13s ease-in-out infinite;
}

.showcase-atmosphere-words span:nth-child(1) {
  left: 52%;
  top: 22%;
}

.showcase-atmosphere-words span:nth-child(2) {
  right: 4%;
  top: 40%;
  animation-delay: -4s;
}

.showcase-atmosphere-words span:nth-child(3) {
  left: 48%;
  bottom: 20%;
  animation-delay: -7s;
}

.showcase-atmosphere-words span:nth-child(4) {
  right: 10%;
  bottom: 31%;
  animation-delay: -10s;
}

.showcase-specs,
.showcase-spec {
  display: none;
}

@keyframes deviceSceneFloat {
  0%,
  100% {
    transform: scale(calc(1 + var(--scene-progress) * 0.05)) translateY(0) rotate(-1.6deg);
  }
  50% {
    transform: scale(calc(1.015 + var(--scene-progress) * 0.05)) translateY(-0.72rem) rotate(1deg);
  }
}

@keyframes deviceSceneTrail {
  0%,
  100% {
    opacity: 0.1;
    translate: -1.4rem 0.35rem;
    scale: 0.95 0.86;
  }
  50% {
    opacity: 0.3;
    translate: 1.7rem -0.3rem;
    scale: 1.06 1.12;
  }
}

@keyframes deviceSceneLight {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-1rem) rotate(-9deg) scaleX(0.98);
  }
  50% {
    opacity: 0.78;
    transform: translateX(1.4rem) rotate(-5deg) scaleX(1.04);
  }
}

@keyframes deviceSceneGlass {
  0%,
  100% {
    opacity: 0.42;
    transform: translateX(-0.8rem) rotate(-2deg);
  }
  50% {
    opacity: 0.66;
    transform: translateX(0.9rem) rotate(1deg);
  }
}

@keyframes deviceWordFloat {
  0%,
  100% {
    opacity: 0.34;
    transform: translate3d(calc(var(--scene-progress) * -0.8rem), 0, 0);
  }
  50% {
    opacity: 0.74;
    transform: translate3d(calc(var(--scene-progress) * 1.2rem), -0.55rem, 0);
  }
}

@media (max-width: 980px) {
  .lifestyle-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "stage";
    text-align: center;
  }

  .lifestyle-editorial {
    padding-left: 0;
  }

  .lifestyle-editorial .section-title,
  .lifestyle-editorial .section-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .showcase-product-stage {
    min-height: 34rem;
  }

  .showcase-product-link {
    width: min(31rem, 84vw);
  }

  .showcase-atmosphere-words span:nth-child(1) { left: 18%; top: 20%; }
  .showcase-atmosphere-words span:nth-child(2) { right: 12%; top: 34%; }
  .showcase-atmosphere-words span:nth-child(3) { left: 12%; bottom: 22%; }
  .showcase-atmosphere-words span:nth-child(4) { right: 10%; bottom: 18%; }
}

@media (max-width: 620px) {
  .lifestyle-showcase {
    min-height: auto;
  }

  .lifestyle-showcase-grid {
    min-height: auto;
    gap: 1.2rem;
  }

  .lifestyle-editorial .section-title {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .showcase-product-stage {
    min-height: 31rem;
  }

  .showcase-product-link {
    width: min(24rem, 94vw);
  }

  .showcase-atmosphere-words span {
    font-size: 0.64rem;
    letter-spacing: 0.22em;
  }
}
