:root {
  --ink: #07090d;
  --black: #030407;
  --white: #ffffff;
  --silver: #eef2f5;
  --silver-2: #d7e0e7;
  --text: #aeb7c1;
  --dark-text: #53606c;
  --red: #ed1c2e;
  --red-hot: #ff3047;
  --red-deep: #9b0715;
  --blue: #9de8ff;
  --aqua: #68e2f8;
  --aqua-soft: rgba(104,226,248,0.18);
  --navy: #061724;
  --navy-deep: #02070d;
  --line: rgba(255,255,255,0.16);
  --soft-line: rgba(8,14,22,0.12);
  --shadow: 0 40px 90px rgba(0,0,0,0.28);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(104,226,248,0.18), transparent 34%),
    var(--black);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  overflow-x: hidden;
}

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

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

h1,
h2,
p {
  margin: 0;
}

.shell {
  width: min(1180px, calc(100% - 42px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: linear-gradient(180deg, rgba(3,4,7,0.96), rgba(3,4,7,0.82));
  border-bottom: 1px solid rgba(104,226,248,0.16);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 20px 60px rgba(0,0,0,0.22);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}

.brand img {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(104,226,248,0.34);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--red) 48%, var(--red-deep));
  box-shadow: 0 16px 36px rgba(237,28,46,0.34), inset 0 1px 0 rgba(255,255,255,0.24);
}

.button-light {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--red) 48%, var(--red-deep));
  box-shadow: 0 18px 46px rgba(237,28,46,0.38), inset 0 1px 0 rgba(255,255,255,0.28);
  overflow: hidden;
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(104,226,248,0.34);
  background: rgba(104,226,248,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.button-light::after {
  content: "";
  position: absolute;
  inset: -60% auto -60% -40%;
  width: 44%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.44), transparent);
  animation: buttonShine 4.8s ease-in-out infinite;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: transparent;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 0 0 18px;
}

.mobile-menu.open {
  display: grid;
}

.mobile-menu a {
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.82);
  font-weight: 850;
}

.scene {
  position: relative;
  overflow: hidden;
  scroll-margin-top: 72px;
}

.ocean-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.94;
  mix-blend-mode: screen;
}

.finale .ocean-canvas {
  opacity: 0.78;
}

.ocean-canvas-failed {
  display: none;
}

.scene-dark,
.scene-black {
  background:
    radial-gradient(circle at 72% 30%, rgba(89,210,235,0.18) 0%, transparent 30%),
    radial-gradient(circle at 18% 72%, rgba(104,226,248,0.08), transparent 30%),
    radial-gradient(circle at 48% 18%, #142433 0%, #061018 48%, #000 100%);
  color: #fff;
}

.scene-white {
  background:
    radial-gradient(circle at 15% 18%, rgba(104,226,248,0.08), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f2f5f7 100%);
  color: #080b10;
}

.scene-silver {
  background:
    radial-gradient(circle at 82% 14%, rgba(104,226,248,0.16), transparent 28%),
    radial-gradient(circle at 72% 30%, rgba(157,232,255,0.18), transparent 34%),
    linear-gradient(180deg, #f7fafc 0%, #dfe7ed 100%);
  color: #080b10;
}

.hero {
  min-height: 100svh;
  padding: 112px 0 28px;
  background:
    radial-gradient(circle at 62% 24%, rgba(92,218,242,0.16), transparent 28%),
    radial-gradient(circle at 20% 82%, rgba(104,226,248,0.08), transparent 30%),
    linear-gradient(135deg, #03070d 0%, #061724 48%, #020509 100%);
}

.hero-cinema,
.finale-atmosphere {
  position: absolute;
  inset: 72px 0 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-cinema span,
.finale-atmosphere span {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.hero-cinema span:nth-child(1) {
  left: 8%;
  top: 16%;
  width: 38vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), rgba(237,28,46,0.48), transparent);
  animation: runwayLine 8.5s ease-in-out infinite;
}

.hero-cinema span:nth-child(2) {
  right: 12%;
  top: 18%;
  width: 34vw;
  height: 34vw;
  border: 1px solid rgba(237,28,46,0.12);
  transform: rotateX(66deg) rotateZ(-18deg);
  box-shadow: 0 0 78px rgba(237,28,46,0.14);
  animation: orbitDrift 12s ease-in-out infinite;
}

.hero-cinema span:nth-child(3) {
  right: -14%;
  bottom: 8%;
  width: 60vw;
  height: 60vw;
  background:
    conic-gradient(from 120deg, transparent 0 68%, rgba(237,28,46,0.16), rgba(255,255,255,0.08), transparent 82% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 1px));
  opacity: 0.62;
  animation: slowSpin 18s linear infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,28,46,0.72), rgba(255,255,255,0.42), transparent);
  opacity: 0.76;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 3%;
  width: min(72vw, 980px);
  height: 92%;
  transform: skewX(-10deg);
  background:
    linear-gradient(102deg, transparent 0%, rgba(255,255,255,0.055) 44%, rgba(237,28,46,0.18) 55%, transparent 72%),
    repeating-linear-gradient(102deg, transparent 0 42px, rgba(255,255,255,0.028) 43px 44px);
  opacity: 0.72;
  animation: lightSweep 9s ease-in-out infinite;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  min-height: min(720px, calc(100svh - 260px));
  gap: clamp(22px, 4vw, 70px);
}

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

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow.red {
  color: var(--red);
}

.scene-white .eyebrow:not(.red),
.scene-silver .eyebrow:not(.red) {
  color: rgba(8, 14, 22, 0.52);
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(4rem, 7.6vw, 7.35rem);
  line-height: 0.86;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(105deg, #fff 0%, #fff 38%, #aeefff 52%, #fff 68%, #9aa4af 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: titleSheen 9s ease-in-out infinite;
}

.hero p {
  max-width: 520px;
  margin-top: 26px;
  color: var(--text);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.58;
  font-weight: 650;
}

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

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(72svh, 720px);
  isolation: isolate;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: min(46vw, 620px);
  height: min(68svh, 700px);
  border-radius: 54px;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.11), rgba(255,255,255,0.025) 36%, transparent 62%),
    radial-gradient(ellipse at 50% 58%, rgba(237,28,46,0.34), rgba(75,0,12,0.2) 42%, transparent 72%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -1px 0 rgba(237,28,46,0.16),
    inset -42px 0 90px rgba(237,28,46,0.16),
    0 44px 130px rgba(0,0,0,0.42),
    0 0 120px rgba(237,28,46,0.22);
  transform: rotateY(-9deg) rotateX(2deg);
  animation: stageBreath 8s ease-in-out infinite;
}

.hero-stage::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 12%;
  top: 17%;
  width: 1px;
  height: 58%;
  background:
    linear-gradient(180deg, transparent, rgba(255,255,255,0.72), rgba(237,28,46,0.82), transparent);
  box-shadow:
    0 0 24px rgba(237,28,46,0.7),
    0 0 56px rgba(237,28,46,0.32);
  opacity: 0.7;
  animation: sidePulse 4.8s ease-in-out infinite;
}

.hero-product {
  position: relative;
  z-index: 7;
  width: min(34vw, 390px);
  max-height: min(74svh, 700px);
  object-fit: contain;
  filter:
    contrast(1.06)
    brightness(1.04)
    drop-shadow(0 50px 68px rgba(0,0,0,0.52))
    drop-shadow(0 0 28px rgba(255,255,255,0.12))
    drop-shadow(0 0 56px rgba(237,28,46,0.22));
  animation: floatProduct 7s ease-in-out infinite;
}

.halo {
  position: absolute;
  z-index: 2;
  width: min(44vw, 600px);
  height: min(62svh, 660px);
  border-radius: 48%;
  background:
    radial-gradient(ellipse at 52% 40%, rgba(255,255,255,0.16), transparent 26%),
    radial-gradient(ellipse at 48% 54%, rgba(237,28,46,0.24), transparent 66%);
  filter: blur(0.5px);
  transform: rotateY(-12deg);
}

.hero-glass {
  position: absolute;
  z-index: 6;
  inset: 8% 12% 9%;
  transform: rotateY(-11deg);
  pointer-events: none;
}

.hero-glass span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  transform: skewX(-13deg);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  filter: blur(10px);
  opacity: 0;
  animation: glassSweep 7.2s ease-in-out infinite;
}

.hero-glass span:nth-child(1) { left: 16%; animation-delay: -1.2s; }
.hero-glass span:nth-child(2) { left: 46%; width: 11%; animation-delay: -3.8s; }
.hero-glass span:nth-child(3) { right: 10%; width: 14%; animation-delay: -5.4s; }

.hero-field {
  position: absolute;
  z-index: 1;
  width: min(50vw, 660px);
  height: min(70svh, 740px);
  border-radius: 58px;
  overflow: hidden;
  transform: rotateY(-12deg) rotateX(3deg);
  opacity: 0.94;
  mix-blend-mode: screen;
}

.hero-field::before,
.hero-field::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-field::before {
  background:
    radial-gradient(circle at 52% 50%, transparent 0 18%, rgba(237,28,46,0.08) 19% 24%, transparent 25%),
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 18%, transparent 30%, rgba(237,28,46,0.22) 66%, transparent 88%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.055) 0 1px, transparent 1px 42px);
  opacity: 0.72;
  animation: scanDrift 7.5s ease-in-out infinite;
}

.hero-field::after {
  inset: 10% 16%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(237,28,46,0.18),
    0 0 70px rgba(237,28,46,0.24),
    inset 0 0 60px rgba(255,255,255,0.05);
  animation: aperturePulse 5.8s ease-in-out infinite;
}

.hero-field span {
  position: absolute;
  inset: auto;
  display: block;
  pointer-events: none;
}

.hero-field span:nth-child(1) {
  left: 22%;
  top: -10%;
  width: 18%;
  height: 120%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  filter: blur(14px);
  animation: verticalSheen 6.8s ease-in-out infinite;
}

.hero-field span:nth-child(2) {
  right: 14%;
  top: 10%;
  width: 2px;
  height: 76%;
  background: linear-gradient(180deg, transparent, rgba(237,28,46,0.92), rgba(255,255,255,0.52), transparent);
  box-shadow: 0 0 28px rgba(237,28,46,0.56);
  opacity: 0.72;
}

.hero-field span:nth-child(3) {
  left: 12%;
  right: 10%;
  bottom: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.26), rgba(237,28,46,0.72), transparent);
  box-shadow: 0 0 26px rgba(237,28,46,0.42);
  animation: floorLine 5.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  z-index: 4;
  width: min(42vw, 560px);
  height: min(54svh, 560px);
  border-radius: 50%;
  background: conic-gradient(from 18deg, transparent 0 10%, rgba(237,28,46,0.56) 13%, rgba(255,255,255,0.2) 16%, transparent 24% 48%, rgba(237,28,46,0.34) 54%, transparent 64% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  transform: rotate(-18deg) rotateY(-24deg) scaleX(0.72);
  filter: drop-shadow(0 0 26px rgba(237,28,46,0.3));
  animation: ringFloat 8s ease-in-out infinite;
}

.orbit-b {
  width: min(34vw, 460px);
  height: min(46svh, 500px);
  transform: rotate(16deg) rotateY(-18deg) scaleX(0.62);
  background: conic-gradient(from 210deg, transparent 0 18%, rgba(255,255,255,0.28) 21%, transparent 30% 60%, rgba(237,28,46,0.36) 68%, transparent 78% 100%);
  animation-delay: -2.2s;
}

.hero-particles {
  position: absolute;
  z-index: 6;
  inset: 10% 13% 12%;
  transform: rotateY(-11deg);
  pointer-events: none;
}

.hero-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  box-shadow:
    0 0 12px rgba(255,255,255,0.72),
    0 0 24px rgba(237,28,46,0.34);
  opacity: 0;
  animation: particleRise 6s ease-in-out infinite;
}

.hero-particles i:nth-child(1) { left: 28%; top: 68%; animation-delay: -0.2s; }
.hero-particles i:nth-child(2) { left: 42%; top: 54%; animation-delay: -1.4s; }
.hero-particles i:nth-child(3) { left: 58%; top: 63%; animation-delay: -2.6s; }
.hero-particles i:nth-child(4) { left: 64%; top: 38%; animation-delay: -3.2s; }
.hero-particles i:nth-child(5) { left: 36%; top: 32%; animation-delay: -4.1s; }
.hero-particles i:nth-child(6) { left: 72%; top: 72%; animation-delay: -4.8s; }
.hero-particles i:nth-child(7) { left: 22%; top: 46%; animation-delay: -5.4s; }
.hero-particles i:nth-child(8) { left: 52%; top: 24%; animation-delay: -5.9s; }

.hero-reflection {
  position: absolute;
  z-index: 4;
  bottom: 5.5%;
  width: min(34vw, 420px);
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(255,255,255,0.36), rgba(237,28,46,0.28) 34%, rgba(9,10,14,0.26) 58%, transparent 78%);
  filter: blur(13px);
  opacity: 0.86;
  transform: rotateX(68deg);
  animation: reflectionPulse 5.6s ease-in-out infinite;
}

.hero-plinth {
  position: absolute;
  z-index: 5;
  bottom: 7.4%;
  width: min(29vw, 350px);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.56), rgba(237,28,46,0.76), rgba(255,255,255,0.3), transparent);
  box-shadow:
    0 0 20px rgba(255,255,255,0.2),
    0 0 46px rgba(237,28,46,0.48);
  filter: blur(0.4px);
}

.aurora {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.7;
}

.aurora-one {
  width: 36vw;
  height: 36vw;
  top: 8%;
  right: 10%;
  background: rgba(104,226,248,0.18);
}

.aurora-two {
  width: 30vw;
  height: 30vw;
  left: -6%;
  bottom: 12%;
  background: rgba(157,232,255,0.12);
}

.aurora-three {
  width: 34vw;
  height: 34vw;
  top: 14%;
  right: 20%;
  background: rgba(104,226,248,0.16);
}

.spec-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 10px 0 0;
  overflow: visible;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.spec-rail::before {
  content: "";
  position: absolute;
  inset: -1px auto auto 0;
  width: min(220px, 34vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(104,226,248,0.86), rgba(255,255,255,0.52), transparent);
  opacity: 0.95;
}

.spec-rail div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86px;
  padding: 20px 22px 12px;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.spec-rail div:first-child {
  border-left: 0;
}

.spec-rail div::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(104,226,248,0.95);
  box-shadow: 0 0 18px rgba(104,226,248,0.72);
}

.spec-rail strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1;
  font-weight: 900;
}

.spec-rail span {
  display: block;
  padding-left: 16px;
  color: rgba(255,255,255,0.54);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.feature-split,
.tech-layout,
.finale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  min-height: 100svh;
  padding: 110px 0;
}

.feature-media,
.tech-visual,
.finale-product {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 620px;
}

.feature-media::before,
.finale-product::before {
  content: "";
  position: absolute;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,28,46,0.18), transparent 68%);
}

.feature-media img,
.finale-product img {
  width: min(47vw, 500px);
  max-height: 72svh;
  object-fit: contain;
  filter: drop-shadow(0 36px 70px rgba(15,25,35,0.24));
}

.feature-copy h2,
.tech-copy h2,
.cinema-copy h2,
.lifestyle-copy h2,
.section-head h2,
.finale-copy h2 {
  font-size: clamp(3.4rem, 7.8vw, 8rem);
  line-height: 0.88;
  font-weight: 900;
}

html[lang="ja"] .cinema-copy h2 {
  font-size: clamp(2.8rem, 6.6vw, 6.4rem);
  line-height: 1.02;
}

html[lang="ja"] .lifestyle-copy h2 {
  font-size: clamp(2.8rem, 6.8vw, 6.6rem);
  line-height: 1.04;
}

html[lang="ja"] .finale-copy h2 {
  line-height: 0.94;
}

.feature-copy p,
.tech-copy p,
.lifestyle-copy p,
.finale-copy p {
  max-width: 500px;
  margin-top: 24px;
  color: var(--dark-text);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  line-height: 1.56;
  font-weight: 680;
}

.tech-visual {
  border-radius: 46px;
  border: 1px solid rgba(104,226,248,0.16);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.46)),
    radial-gradient(circle at 80% 12%, rgba(104,226,248,0.14), transparent 40%);
  box-shadow: 0 40px 90px rgba(58,74,88,0.18), inset 0 1px 0 rgba(255,255,255,0.8);
}

.tech-visual img {
  width: min(56vw, 680px);
  object-fit: contain;
  filter: contrast(1.04) saturate(0.95);
}

.design {
  min-height: 112svh;
  padding: 120px 0 72px;
}

.design::before {
  content: "";
  position: absolute;
  inset: 10% 8% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.58), transparent);
}

.cinema-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.design-product {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  margin: 22px auto 0;
  width: min(760px, 92vw);
}

.design-product img {
  width: auto;
  height: min(62svh, 720px);
  max-width: 92vw;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 44px;
  box-shadow: 0 44px 100px rgba(0,0,0,0.48), inset 0 1px 0 rgba(255,255,255,0.12);
  filter: saturate(0.94) contrast(1.06);
}

.design-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.design-notes div {
  min-height: 122px;
  padding: 24px;
  border: 1px solid rgba(104,226,248,0.22);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(104,226,248,0.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.design-notes strong,
.moment strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 900;
}

.design-notes span,
.moment span {
  display: block;
  margin-top: 9px;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  font-weight: 680;
}

.lifestyle {
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: #fff;
}

.lifestyle-bg,
.lifestyle-bg img,
.lifestyle-overlay {
  position: absolute;
  inset: 0;
}

.lifestyle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-overlay {
  background:
    radial-gradient(circle at 22% 74%, rgba(104,226,248,0.24), transparent 34%),
    radial-gradient(circle at 72% 28%, rgba(255,255,255,0.14), transparent 30%),
    linear-gradient(180deg, rgba(0,10,16,0.04), rgba(2,22,34,0.34) 42%, rgba(0,6,12,0.84));
}

.lifestyle-copy {
  position: relative;
  z-index: 2;
  padding: 0 0 104px;
}

.lifestyle-copy p,
.finale-copy p {
  color: rgba(255,255,255,0.68);
}

.moments {
  padding: 126px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(104,226,248,0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #eef2f5 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 780px;
}

.moment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}

.moment {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  border: 1px solid rgba(8,14,22,0.08);
  border-radius: 30px;
  background: #111;
  box-shadow: 0 28px 70px rgba(20,30,42,0.12);
}

.moment-feature {
  min-height: 620px;
}

.moment-stack {
  display: grid;
  gap: 18px;
}

.moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 600ms ease;
}

.moment:hover img,
.moment-feature.is-switching img {
  transform: scale(1.06);
}

.moment:hover {
  box-shadow: 0 34px 82px rgba(20,30,42,0.16);
}

.moment-caption {
  position: absolute;
  inset: auto 20px 20px;
  max-width: min(420px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(0,0,0,0.52), rgba(3,25,38,0.42));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  color: #fff;
}

.moment-feature.is-switching img {
  opacity: 0.42;
}

.moment-feature img {
  opacity: 1;
  transition: transform 600ms ease, opacity 260ms ease;
}

.moment-feature .moment-caption {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
}

.moment-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(8,14,22,0.12);
}

.moment-choice {
  appearance: none;
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8,14,22,0.12);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 26px 0;
  transition: padding 260ms ease, background 260ms ease, border-color 260ms ease;
}

.moment-choice:hover,
.moment-choice.active,
.moment-choice:focus-visible {
  padding-left: 18px;
  padding-right: 18px;
  border-color: rgba(104,226,248,0.38);
  background: linear-gradient(90deg, rgba(104,226,248,0.1), rgba(255,255,255,0));
}

.moment-choice:focus-visible {
  outline: 2px solid rgba(104,226,248,0.48);
  outline-offset: -2px;
}

.moment-choice.active {
  box-shadow: inset 3px 0 0 var(--aqua);
}

.moment-list span {
  color: #248fa3;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.moment-list strong {
  color: #080b10;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  line-height: 0.96;
  font-weight: 900;
}

.moment-list p {
  grid-column: 2;
  max-width: 320px;
  margin: 10px 0 0;
  color: #68737e;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 680;
}

.finale {
  min-height: 100svh;
  background:
    radial-gradient(circle at 72% 40%, rgba(237,28,46,0.34), transparent 30%),
    radial-gradient(circle at 22% 72%, rgba(157,232,255,0.1), transparent 26%),
    linear-gradient(135deg, #030407 0%, #0a1017 46%, #170307 100%);
}

.finale::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(circle at 66% 48%, #000 0%, transparent 72%);
  opacity: 0.56;
  animation: gridFloat 12s ease-in-out infinite;
}

.finale::after {
  content: "";
  position: absolute;
  inset: auto 7% 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237,28,46,0.9), rgba(255,255,255,0.54), rgba(237,28,46,0.7), transparent);
  box-shadow: 0 0 38px rgba(237,28,46,0.42);
  opacity: 0.76;
}

.finale-atmosphere span:nth-child(1) {
  left: 6%;
  top: 20%;
  width: 22vw;
  height: 22vw;
  border: 1px solid rgba(255,255,255,0.08);
  transform: rotateX(68deg) rotateZ(18deg);
  animation: orbitDrift 11s ease-in-out infinite reverse;
}

.finale-atmosphere span:nth-child(2) {
  right: 12%;
  top: 15%;
  width: 54vw;
  height: 54vw;
  border: 1px solid rgba(237,28,46,0.12);
  transform: rotateX(70deg) rotateZ(-22deg);
  box-shadow: inset 0 0 80px rgba(237,28,46,0.08);
  animation: orbitDrift 13s ease-in-out infinite;
}

.finale-atmosphere span:nth-child(3) {
  right: -18%;
  bottom: 12%;
  width: 48vw;
  height: 48vw;
  background: radial-gradient(circle, rgba(237,28,46,0.22), transparent 64%);
  filter: blur(28px);
  animation: atmospherePulse 7s ease-in-out infinite;
}

.finale-price {
  margin-top: 32px;
  color: #fff;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.9;
  font-weight: 900;
  text-shadow: 0 0 42px rgba(237,28,46,0.3);
}

.finale-grid {
  position: relative;
  z-index: 2;
}

.finale-product {
  isolation: isolate;
  perspective: 1200px;
}

.finale-product::before {
  width: min(42vw, 580px);
  background:
    radial-gradient(circle, rgba(237,28,46,0.24), transparent 64%),
    radial-gradient(circle at 52% 42%, rgba(255,255,255,0.1), transparent 36%);
  filter: blur(4px);
  animation: finalAura 6.8s ease-in-out infinite;
}

.finale-product::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: min(44vw, 560px);
  height: min(44vw, 560px);
  border-radius: 48px;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02) 38%, transparent 68%),
    radial-gradient(circle at 72% 52%, rgba(237,28,46,0.28), transparent 56%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 48px 110px rgba(0,0,0,0.36);
  transform: rotateY(8deg) rotateX(2deg);
}

.finale-product img {
  position: relative;
  z-index: 7;
  filter:
    contrast(1.06)
    brightness(1.04)
    drop-shadow(0 44px 74px rgba(0,0,0,0.46))
    drop-shadow(0 0 42px rgba(237,28,46,0.2));
  animation: finalProductFloat 7.4s ease-in-out infinite;
}

.finale-field {
  position: absolute;
  z-index: 2;
  width: min(46vw, 620px);
  height: min(62svh, 680px);
  border-radius: 54px;
  overflow: hidden;
  transform: rotateY(10deg) rotateX(2deg);
  mix-blend-mode: screen;
}

.finale-field::before,
.finale-field::after,
.finale-field span {
  content: "";
  position: absolute;
  display: block;
}

.finale-field::before {
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 38px, rgba(255,255,255,0.05) 39px 40px),
    linear-gradient(90deg, transparent, rgba(237,28,46,0.2), transparent);
  animation: scanDrift 8.5s ease-in-out infinite reverse;
}

.finale-field::after {
  inset: 12% 18%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  box-shadow: 0 0 86px rgba(237,28,46,0.22), inset 0 0 70px rgba(255,255,255,0.05);
  animation: aperturePulse 6.2s ease-in-out infinite;
}

.finale-field span:nth-child(1) {
  inset: 16% auto 16% 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.72), rgba(237,28,46,0.72), transparent);
  box-shadow: 0 0 28px rgba(237,28,46,0.5);
  animation: sidePulse 5.2s ease-in-out infinite;
}

.finale-field span:nth-child(2) {
  left: 12%;
  right: 12%;
  bottom: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.36), rgba(237,28,46,0.72), transparent);
  box-shadow: 0 0 28px rgba(237,28,46,0.44);
  animation: floorLine 5.4s ease-in-out infinite;
}

.finale-field span:nth-child(3) {
  top: -8%;
  bottom: -8%;
  right: 20%;
  width: 18%;
  transform: skewX(-12deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  filter: blur(12px);
  animation: glassSweep 7.8s ease-in-out infinite -2s;
}

.finale-ring {
  position: absolute;
  z-index: 5;
  width: min(38vw, 500px);
  height: min(48svh, 520px);
  border-radius: 50%;
  background: conic-gradient(from 40deg, transparent 0 22%, rgba(237,28,46,0.56), rgba(255,255,255,0.2), transparent 42% 72%, rgba(237,28,46,0.3), transparent 86% 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 1px));
  filter: drop-shadow(0 0 28px rgba(237,28,46,0.28));
  transform: rotate(18deg) rotateY(20deg) scaleX(0.72);
  animation: ringFloat 8.4s ease-in-out infinite;
}

.finale-ring-b {
  width: min(30vw, 400px);
  height: min(40svh, 430px);
  transform: rotate(-18deg) rotateY(18deg) scaleX(0.58);
  opacity: 0.76;
  animation-delay: -2.6s;
}

.finale-sparks {
  position: absolute;
  z-index: 6;
  inset: 10% 18% 16%;
  pointer-events: none;
}

.finale-sparks i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 0 16px rgba(255,255,255,0.7), 0 0 28px rgba(237,28,46,0.34);
  opacity: 0;
  animation: particleRise 6.4s ease-in-out infinite;
}

.finale-sparks i:nth-child(1) { left: 28%; top: 70%; animation-delay: -0.4s; }
.finale-sparks i:nth-child(2) { left: 38%; top: 48%; animation-delay: -1.3s; }
.finale-sparks i:nth-child(3) { left: 54%; top: 62%; animation-delay: -2.1s; }
.finale-sparks i:nth-child(4) { left: 66%; top: 40%; animation-delay: -3.4s; }
.finale-sparks i:nth-child(5) { left: 46%; top: 24%; animation-delay: -4.6s; }
.finale-sparks i:nth-child(6) { left: 76%; top: 70%; animation-delay: -5.4s; }

.finale-plinth {
  position: absolute;
  z-index: 6;
  bottom: 12%;
  width: min(30vw, 360px);
  height: 13px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), rgba(237,28,46,0.78), rgba(255,255,255,0.28), transparent);
  box-shadow: 0 0 24px rgba(255,255,255,0.18), 0 0 54px rgba(237,28,46,0.48);
  filter: blur(0.3px);
  animation: reflectionPulse 6s ease-in-out infinite;
}

/* Ocean 3D theme overrides: keep the atmosphere in one cool Fulmor system. */
.hero-cinema span:nth-child(1) {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), rgba(104,226,248,0.58), transparent);
}

.hero-cinema span:nth-child(2),
.finale-atmosphere span:nth-child(2) {
  border-color: rgba(120,231,255,0.16);
  box-shadow: 0 0 78px rgba(104,226,248,0.16), inset 0 0 80px rgba(104,226,248,0.08);
}

.hero-cinema span:nth-child(3) {
  background: conic-gradient(from 120deg, transparent 0 68%, rgba(104,226,248,0.2), rgba(255,255,255,0.08), transparent 82% 100%);
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.72), rgba(255,255,255,0.42), transparent);
}

.hero::after {
  background:
    linear-gradient(104deg, transparent 0%, rgba(255,255,255,0.07) 38%, rgba(104,226,248,0.2) 52%, transparent 70%),
    repeating-linear-gradient(104deg, transparent 0 46px, rgba(255,255,255,0.03) 47px 48px);
  mask-image: radial-gradient(ellipse at 58% 44%, #000 0%, transparent 72%);
}

.hero-stage::before {
  display: none;
}

.hero-stage::after {
  right: 7%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.78), rgba(104,226,248,0.9), transparent);
  box-shadow: 0 0 30px rgba(104,226,248,0.64), 0 0 74px rgba(104,226,248,0.36);
  opacity: 0.58;
}

.hero-product {
  filter:
    contrast(1.06)
    brightness(1.04)
    drop-shadow(0 50px 68px rgba(0,0,0,0.52))
    drop-shadow(0 0 28px rgba(255,255,255,0.12))
    drop-shadow(0 0 58px rgba(104,226,248,0.2));
}

.halo {
  background:
    radial-gradient(ellipse at 52% 38%, rgba(255,255,255,0.18), transparent 22%),
    radial-gradient(ellipse at 48% 54%, rgba(104,226,248,0.24), transparent 62%);
  filter: blur(18px);
}

.hero-field::before {
  background:
    linear-gradient(102deg, transparent 6%, rgba(255,255,255,0.18) 17%, transparent 30%),
    linear-gradient(73deg, transparent 16%, rgba(104,226,248,0.18) 48%, transparent 68%),
    radial-gradient(ellipse at 54% 52%, rgba(104,226,248,0.18), transparent 62%);
  mask-image: radial-gradient(ellipse at 52% 52%, #000 0%, transparent 68%);
  opacity: 0.9;
}

.hero-field::after {
  inset: 14% 13%;
  border: 0;
  box-shadow:
    0 0 82px rgba(104,226,248,0.24),
    inset 0 0 44px rgba(255,255,255,0.06);
}

.hero-field,
.finale-field {
  display: none;
}

@media (min-width: 1041px) {
  .hero-stage {
    min-height: min(68svh, 660px);
    padding-top: 36px;
  }

  .hero-product {
    width: min(30vw, 345px);
    max-height: min(68svh, 650px);
  }

  .hero-reflection {
    width: min(30vw, 360px);
    bottom: 4.2%;
  }

  .hero-plinth {
    width: min(25vw, 310px);
    bottom: 6.2%;
  }
}

.hero-field span:nth-child(2),
.finale-field span:nth-child(1) {
  background: linear-gradient(180deg, transparent, rgba(104,226,248,0.86), rgba(255,255,255,0.52), transparent);
  box-shadow: 0 0 28px rgba(104,226,248,0.44);
}

.hero-field span:nth-child(3),
.finale-field span:nth-child(2) {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), rgba(104,226,248,0.68), transparent);
  box-shadow: 0 0 28px rgba(104,226,248,0.34);
}

.orbit,
.finale-ring {
  background: conic-gradient(from 18deg, transparent 0 10%, rgba(104,226,248,0.52) 13%, rgba(255,255,255,0.2) 16%, transparent 24% 48%, rgba(104,226,248,0.18) 54%, transparent 64% 100%);
  filter: drop-shadow(0 0 28px rgba(104,226,248,0.28));
}

.orbit-b,
.finale-ring-b {
  background: conic-gradient(from 210deg, transparent 0 18%, rgba(255,255,255,0.28) 21%, transparent 30% 60%, rgba(104,226,248,0.3) 68%, transparent 78% 100%);
}

.hero-particles i,
.finale-sparks i {
  box-shadow: 0 0 14px rgba(255,255,255,0.72), 0 0 26px rgba(104,226,248,0.34);
}

.hero-reflection {
  background: radial-gradient(ellipse, rgba(255,255,255,0.42), rgba(104,226,248,0.3) 34%, rgba(9,10,14,0.22) 58%, transparent 78%);
  opacity: 0.96;
}

.hero-plinth,
.finale-plinth {
  height: 9px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.64), rgba(104,226,248,0.86), rgba(255,255,255,0.32), transparent);
  box-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 62px rgba(104,226,248,0.5);
}

.finale {
  background:
    radial-gradient(circle at 74% 42%, rgba(90,218,242,0.32), transparent 30%),
    radial-gradient(circle at 18% 74%, rgba(104,226,248,0.12), transparent 30%),
    radial-gradient(circle at 46% 18%, rgba(255,255,255,0.06), transparent 34%),
    linear-gradient(135deg, #02070d 0%, #061925 48%, #021018 100%);
}

.finale::after {
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.9), rgba(255,255,255,0.58), rgba(104,226,248,0.72), transparent);
  box-shadow: 0 0 48px rgba(104,226,248,0.42);
}

.finale-atmosphere span:nth-child(3) {
  background: radial-gradient(circle, rgba(104,226,248,0.2), transparent 64%);
}

.finale-price {
  text-shadow: 0 0 42px rgba(104,226,248,0.24);
}

.finale-product::before {
  background:
    radial-gradient(circle, rgba(104,226,248,0.22), transparent 64%),
    radial-gradient(circle at 52% 42%, rgba(255,255,255,0.1), transparent 36%);
}

.finale-product::after {
  display: none;
}

.finale-product img {
  filter:
    contrast(1.06)
    brightness(1.04)
    drop-shadow(0 44px 74px rgba(0,0,0,0.46))
    drop-shadow(0 0 42px rgba(104,226,248,0.2));
}

.finale-field::before {
  background:
    linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.16) 18%, transparent 34%),
    linear-gradient(72deg, transparent 18%, rgba(104,226,248,0.16) 48%, transparent 70%),
    radial-gradient(ellipse at 52% 50%, rgba(104,226,248,0.16), transparent 60%);
  mask-image: radial-gradient(ellipse at 58% 52%, #000 0%, transparent 70%);
}

.finale-field::after {
  border: 0;
  box-shadow: 0 0 96px rgba(104,226,248,0.26), inset 0 0 46px rgba(255,255,255,0.06);
}

/* Premium stage polish: softer gallery lighting, cleaner product focus. */
.hero-stage::before {
  display: block;
  z-index: 1;
  width: min(38vw, 480px);
  height: min(72svh, 720px);
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 42%, rgba(255,255,255,0.18), transparent 22%),
    radial-gradient(ellipse at 50% 54%, rgba(104,226,248,0.22), rgba(104,226,248,0.1) 38%, transparent 70%);
  box-shadow: none;
  filter: blur(6px);
  opacity: 0.92;
  transform: rotateY(-8deg) rotateX(2deg);
}

.hero-stage::after {
  right: 5%;
  top: 18%;
  height: 56%;
  opacity: 0.42;
  filter: blur(0.2px);
}

.halo {
  width: min(42vw, 540px);
  height: min(70svh, 700px);
  background:
    radial-gradient(ellipse at 50% 36%, rgba(255,255,255,0.14), transparent 24%),
    radial-gradient(ellipse at 50% 55%, rgba(104,226,248,0.28), rgba(104,226,248,0.08) 48%, transparent 72%);
  filter: blur(20px);
  opacity: 0.92;
}

.orbit {
  opacity: 0.58;
  filter: drop-shadow(0 0 22px rgba(104,226,248,0.24));
}

.orbit-b {
  opacity: 0.46;
}

.hero-glass {
  inset: 9% 8% 8%;
}

.hero-glass span {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), rgba(104,226,248,0.08), transparent);
  filter: blur(14px);
}

.hero-product {
  filter:
    contrast(1.1)
    brightness(1.06)
    saturate(0.96)
    drop-shadow(0 54px 72px rgba(0,0,0,0.5))
    drop-shadow(0 0 30px rgba(255,255,255,0.14))
    drop-shadow(0 0 62px rgba(104,226,248,0.24));
}

.hero-reflection {
  height: 54px;
  background:
    radial-gradient(ellipse, rgba(255,255,255,0.34), rgba(104,226,248,0.34) 34%, rgba(9,10,14,0.18) 60%, transparent 80%);
  filter: blur(16px);
  opacity: 0.78;
}

.hero-plinth {
  height: 6px;
  opacity: 0.82;
}

.finale {
  background:
    radial-gradient(circle at 74% 42%, rgba(90,218,242,0.26), transparent 28%),
    radial-gradient(circle at 42% 70%, rgba(104,226,248,0.12), transparent 34%),
    radial-gradient(circle at 46% 18%, rgba(255,255,255,0.055), transparent 34%),
    linear-gradient(135deg, #02070d 0%, #061925 48%, #03111a 100%);
}

.finale::before {
  opacity: 0.34;
  background-size: 118px 118px;
  mask-image: radial-gradient(circle at 66% 48%, #000 0%, transparent 68%);
}

.finale-atmosphere span:nth-child(1) {
  border-color: rgba(104,226,248,0.14);
  box-shadow: inset 0 0 58px rgba(104,226,248,0.08);
}

.finale-atmosphere span:nth-child(2) {
  opacity: 0.68;
}

.finale-product::before {
  width: min(44vw, 610px);
  background:
    radial-gradient(circle, rgba(104,226,248,0.28), rgba(104,226,248,0.1) 38%, transparent 68%),
    radial-gradient(circle at 52% 42%, rgba(255,255,255,0.12), transparent 34%);
  filter: blur(10px);
  opacity: 0.95;
}

.finale-product img {
  filter:
    contrast(1.1)
    brightness(1.06)
    saturate(0.96)
    drop-shadow(0 48px 76px rgba(0,0,0,0.48))
    drop-shadow(0 0 36px rgba(255,255,255,0.1))
    drop-shadow(0 0 58px rgba(104,226,248,0.24));
}

.finale-plinth {
  height: 6px;
  opacity: 0.82;
}

.footer {
  background: #030407;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.55);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 126px;
  padding: 28px 0;
  font-size: 0.86rem;
  font-weight: 720;
}

.footer img {
  width: 106px;
  filter: brightness(0) invert(1);
}

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

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.985);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.8,.2,1);
}

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

@keyframes floatProduct {
  0%, 100% { transform: translateY(0) translateZ(48px); }
  50% { transform: translateY(-14px) translateZ(48px); }
}

@keyframes titleSheen {
  0%, 64%, 100% { background-position: 0% 50%; }
  78% { background-position: 100% 50%; }
}

@keyframes buttonShine {
  0%, 58%, 100% { transform: translateX(0) rotate(18deg); opacity: 0; }
  68% { opacity: 1; }
  84% { transform: translateX(360%) rotate(18deg); opacity: 0; }
}

@keyframes lightSweep {
  0%, 100% { transform: translateX(-2%) skewX(-10deg); opacity: 0.52; }
  50% { transform: translateX(3%) skewX(-10deg); opacity: 0.82; }
}

@keyframes scanDrift {
  0%, 100% { transform: translateY(-1.5%); opacity: 0.52; }
  50% { transform: translateY(2.2%); opacity: 0.82; }
}

@keyframes aperturePulse {
  0%, 100% { transform: scale(0.985); opacity: 0.58; }
  50% { transform: scale(1.025); opacity: 0.9; }
}

@keyframes verticalSheen {
  0%, 100% { transform: translateX(-36%) rotate(18deg); opacity: 0; }
  20%, 56% { opacity: 0.74; }
  72% { transform: translateX(260%) rotate(18deg); opacity: 0; }
}

@keyframes floorLine {
  0%, 100% { transform: scaleX(0.72); opacity: 0.44; }
  50% { transform: scaleX(1); opacity: 0.88; }
}

@keyframes ringFloat {
  0%, 100% { translate: 0 0; opacity: 0.56; }
  50% { translate: 0 -12px; opacity: 0.9; }
}

@keyframes stageBreath {
  0%, 100% { transform: rotateY(-9deg) rotateX(2deg) scale(1); opacity: 0.96; }
  50% { transform: rotateY(-7deg) rotateX(2.5deg) scale(1.012); opacity: 1; }
}

@keyframes sidePulse {
  0%, 100% { transform: scaleY(0.86); opacity: 0.34; }
  42%, 62% { transform: scaleY(1); opacity: 0.82; }
}

@keyframes particleRise {
  0%, 100% { transform: translate3d(0, 18px, 0) scale(0.6); opacity: 0; }
  18% { opacity: 0.84; }
  58% { opacity: 0.58; }
  78% { transform: translate3d(14px, -42px, 0) scale(1); opacity: 0; }
}

@keyframes reflectionPulse {
  0%, 100% { transform: rotateX(68deg) scaleX(0.86); opacity: 0.62; }
  50% { transform: rotateX(68deg) scaleX(1.05); opacity: 0.9; }
}

@keyframes glassSweep {
  0%, 100% { transform: translateX(-120%) skewX(-13deg); opacity: 0; }
  18% { opacity: 0.62; }
  58% { opacity: 0.28; }
  78% { transform: translateX(180%) skewX(-13deg); opacity: 0; }
}

@keyframes runwayLine {
  0%, 100% { transform: translateX(-8%) scaleX(0.68); opacity: 0.34; }
  50% { transform: translateX(5%) scaleX(1); opacity: 0.86; }
}

@keyframes orbitDrift {
  0%, 100% { translate: 0 0; opacity: 0.38; }
  50% { translate: 0 -18px; opacity: 0.78; }
}

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

@keyframes gridFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.42; }
  50% { transform: translate3d(-18px, 14px, 0); opacity: 0.68; }
}

@keyframes atmospherePulse {
  0%, 100% { transform: scale(0.92); opacity: 0.38; }
  50% { transform: scale(1.08); opacity: 0.72; }
}

@keyframes finalAura {
  0%, 100% { transform: scale(0.94); opacity: 0.62; }
  50% { transform: scale(1.06); opacity: 0.92; }
}

@keyframes finalProductFloat {
  0%, 100% { transform: translateY(0) translateZ(42px); }
  50% { transform: translateY(-12px) translateZ(42px); }
}

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

  .hero::after,
  .hero-product,
  .hero-field::before,
  .hero-field::after,
  .hero-field span,
  .orbit,
  .hero-stage::before,
  .hero-stage::after,
  .hero-particles i,
  .hero-reflection,
  .hero-cinema span,
  .hero-glass span,
  .finale::before,
  .finale-atmosphere span,
  .finale-product::before,
  .finale-product img,
  .finale-field::before,
  .finale-field::after,
  .finale-field span,
  .finale-ring,
  .finale-sparks i,
  .finale-plinth {
    animation: none;
  }

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

@media (max-width: 1040px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .feature-split,
  .tech-layout,
  .finale-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-grid {
    min-height: auto;
    gap: 18px;
  }

  .hero-copy {
    padding-top: 28px;
  }

  .hero-stage {
    min-height: 520px;
    order: -1;
  }

  .hero-product {
    width: min(48vw, 360px);
    max-height: 500px;
  }

  .hero-stage::before {
    width: min(76vw, 560px);
    height: min(62vw, 560px);
    border-radius: 46px;
  }

  .hero-field {
    width: min(80vw, 620px);
    height: min(66vw, 590px);
    border-radius: 46px;
  }

  .halo {
    width: min(76vw, 560px);
    height: min(58vw, 520px);
  }

  .orbit {
    width: min(76vw, 560px);
    height: min(58vw, 500px);
  }

  .hero-particles {
    inset: 11% 10% 14%;
  }

  .hero-reflection {
    width: min(58vw, 390px);
    bottom: 6.8%;
  }

  .hero-cinema span:nth-child(2),
  .hero-cinema span:nth-child(3) {
    width: 70vw;
    height: 70vw;
  }

  .feature-split,
  .tech-layout,
  .finale-grid {
    min-height: auto;
    padding: 92px 0;
  }

  .feature-media,
  .tech-visual,
  .finale-product {
    min-height: 460px;
  }

  .finale-product::after,
  .finale-field {
    width: min(76vw, 540px);
    height: min(64vw, 560px);
    border-radius: 44px;
  }

  .finale-ring {
    width: min(72vw, 520px);
    height: min(56vw, 500px);
  }

  .finale-ring-b {
    width: min(58vw, 420px);
    height: min(48vw, 420px);
  }

  .finale-plinth {
    width: min(56vw, 340px);
    bottom: 10%;
  }

  .feature-media img,
  .finale-product img {
    width: min(58vw, 420px);
  }

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

  .moment {
    min-height: 220px;
  }

  .moment-feature {
    min-height: 540px;
  }
}

@media (max-width: 700px) {
  .shell {
    width: calc(100% - 32px);
  }

  .nav {
    min-height: 64px;
  }

  .brand img {
    width: 104px;
  }

  .hero {
    min-height: auto;
    padding: 82px 0 22px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .hero-stage {
    min-height: 480px;
  }

  .hero-product {
    width: min(54vw, 270px);
    max-height: 420px;
  }

  .hero-stage::before {
    width: min(94vw, 430px);
    height: 430px;
    border-radius: 34px;
    transform: rotateY(-6deg) rotateX(2deg);
  }

  .hero-field {
    width: min(98vw, 440px);
    height: 450px;
    border-radius: 34px;
    transform: rotateY(-7deg) rotateX(2deg);
  }

  .halo {
    width: 92vw;
    height: 430px;
  }

  .orbit {
    width: 88vw;
    height: 360px;
  }

  .orbit-b {
    width: 72vw;
    height: 330px;
  }

  .hero-particles {
    inset: 12% 6% 15%;
  }

  .hero-particles i {
    width: 3px;
    height: 3px;
  }

  .hero-reflection {
    width: min(68vw, 270px);
    height: 58px;
    bottom: 6.5%;
  }

  .hero-plinth {
    width: min(64vw, 260px);
    bottom: 7%;
  }

  .hero-cinema {
    inset: 64px 0 0;
  }

  .finale .ocean-canvas {
    opacity: 0.58;
  }

  .hero-cinema span:nth-child(1) {
    left: 6%;
    top: 8%;
    width: 84vw;
  }

  .hero-cinema span:nth-child(2),
  .hero-cinema span:nth-child(3) {
    right: -24%;
    width: 96vw;
    height: 96vw;
  }

  .spec-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px;
    border-radius: 24px;
  }

  .spec-rail div {
    min-height: 92px;
    padding: 16px;
    border-left: 0;
  }

  .spec-rail div:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,0.12);
  }

  .spec-rail div:nth-child(n + 3) {
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .feature-copy h2,
  .tech-copy h2,
  .cinema-copy h2,
  .lifestyle-copy h2,
  .section-head h2,
  .finale-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .feature-split,
  .tech-layout,
  .finale-grid {
    padding: 76px 0;
    gap: 28px;
  }

  .feature-media,
  .tech-visual,
  .finale-product {
    min-height: 360px;
  }

  .feature-media img,
  .finale-product img {
    width: min(78vw, 330px);
  }

  .finale-grid {
    padding-top: 136px;
  }

  .finale-product {
    order: -1;
    min-height: 330px;
  }

  .finale::before {
    background-size: 58px 58px;
  }

  .finale-atmosphere span:nth-child(1) {
    display: none;
  }

  .finale-atmosphere span:nth-child(2) {
    right: -36%;
    width: 112vw;
    height: 112vw;
  }

  .finale-product::after,
  .finale-field {
    width: min(94vw, 420px);
    height: 360px;
    border-radius: 34px;
  }

  .finale-ring {
    width: 84vw;
    height: 330px;
  }

  .finale-ring-b {
    width: 68vw;
    height: 280px;
  }

  .finale-sparks {
    inset: 8% 10% 18%;
  }

  .finale-sparks i {
    width: 3px;
    height: 3px;
  }

  .finale-plinth {
    width: min(64vw, 250px);
    bottom: 8%;
  }

  .finale-product img {
    width: auto;
    height: min(42svh, 360px);
    max-width: 68vw;
  }

  .tech-visual {
    border-radius: 30px;
    min-height: 310px;
  }

  .tech-visual img {
    width: 92vw;
  }

  .design {
    min-height: auto;
    padding: 132px 0 56px;
  }

  .design-product {
    margin-top: 18px;
  }

  .design-product img {
    width: min(92vw, 620px);
    height: auto;
    max-height: none;
    border-radius: 28px;
  }

  html[lang="ja"] .cinema-copy h2 {
    font-size: clamp(2.25rem, 10.4vw, 3.25rem);
    line-height: 1.08;
  }

  html[lang="ja"] .lifestyle-copy h2 {
    font-size: clamp(2.25rem, 10.2vw, 3.2rem);
    line-height: 1.08;
  }

  .design-notes {
    grid-template-columns: 1fr;
  }

  .design-notes div {
    min-height: 96px;
  }

  .lifestyle {
    min-height: 86svh;
  }

  .lifestyle-copy {
    padding-bottom: 76px;
  }

  .moments {
    padding: 132px 0 76px;
  }

  .section-head {
    display: block;
    margin-bottom: 26px;
    padding-top: 144px;
  }

  .moments .section-head .eyebrow {
    display: none;
  }

  .moment-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .moment {
    min-height: 390px;
    border-radius: 28px;
  }

  .moment-feature {
    min-height: 420px;
  }

  .moment-choice {
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    padding: 22px 0;
  }

  .moment-choice:hover,
  .moment-choice.active,
  .moment-choice:focus-visible {
    padding-left: 12px;
    padding-right: 12px;
  }

  .moment-list strong {
    font-size: 1.55rem;
  }

  .moment-list p {
    font-size: 0.94rem;
  }

  .finale-price {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  html[lang="ja"] .finale-copy h2 {
    font-size: clamp(2.35rem, 9.4vw, 3.4rem);
    line-height: 1.08;
  }

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

/* Premium showcase pass: cleaner cutout, natural product proportions, deeper ocean stage. */
.hero {
  background:
    radial-gradient(ellipse at 75% 42%, rgba(104,226,248,0.28), transparent 34%),
    radial-gradient(ellipse at 46% 58%, rgba(54,122,145,0.18), transparent 42%),
    radial-gradient(circle at 18% 86%, rgba(255,255,255,0.045), transparent 32%),
    linear-gradient(135deg, #02070d 0%, #061925 46%, #02060a 100%);
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.46), rgba(255,255,255,0.28), transparent);
  opacity: 0.58;
}

.hero::after {
  right: -14vw;
  top: -2%;
  width: min(78vw, 1100px);
  height: 104%;
  background:
    linear-gradient(106deg, transparent 0%, rgba(255,255,255,0.035) 34%, rgba(104,226,248,0.16) 50%, transparent 69%),
    repeating-linear-gradient(106deg, transparent 0 58px, rgba(255,255,255,0.026) 59px 60px);
  mask-image: radial-gradient(ellipse at 62% 45%, #000 0%, transparent 76%);
  opacity: 0.72;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(36px, 5.5vw, 96px);
}

.hero-stage {
  min-height: min(76svh, 760px);
  padding-top: 18px;
}

.hero-stage::before {
  display: block;
  width: min(48vw, 650px);
  height: min(72svh, 720px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 52% 50%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(ellipse at 50% 56%, rgba(104,226,248,0.34), rgba(36,104,128,0.12) 42%, transparent 72%);
  box-shadow: none;
  filter: blur(10px);
  opacity: 0.92;
  transform: rotateY(-8deg) rotateX(2deg);
  animation: stageBreath 8s ease-in-out infinite;
}

.hero-stage::after {
  right: 9%;
  top: 13%;
  height: 68%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.72), rgba(104,226,248,0.84), transparent);
  box-shadow: 0 0 26px rgba(104,226,248,0.5), 0 0 72px rgba(104,226,248,0.22);
  opacity: 0.42;
}

.halo {
  width: min(46vw, 600px);
  height: min(68svh, 690px);
  background:
    radial-gradient(ellipse at 52% 34%, rgba(255,255,255,0.16), transparent 22%),
    radial-gradient(ellipse at 50% 58%, rgba(104,226,248,0.26), transparent 64%);
  filter: blur(22px);
  opacity: 0.95;
}

.orbit {
  width: min(43vw, 570px);
  height: min(55svh, 560px);
  opacity: 0.62;
}

.orbit-b {
  width: min(35vw, 460px);
  height: min(44svh, 470px);
  opacity: 0.48;
}

.hero-glass {
  inset: 5% 10% 8%;
  opacity: 0.88;
}

.hero-product {
  width: min(21vw, 255px);
  max-height: none;
  height: auto;
  filter:
    contrast(1.08)
    brightness(1.03)
    drop-shadow(0 54px 62px rgba(0,0,0,0.5))
    drop-shadow(0 0 30px rgba(255,255,255,0.14))
    drop-shadow(0 0 68px rgba(104,226,248,0.22));
}

.hero-reflection {
  bottom: 5.4%;
  width: min(31vw, 380px);
  height: 58px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.38), rgba(104,226,248,0.32) 34%, rgba(6,20,30,0.24) 58%, transparent 78%);
  filter: blur(14px);
}

.hero-plinth {
  bottom: 7.2%;
  width: min(24vw, 300px);
  height: 7px;
  opacity: 0.86;
}

.finale {
  background:
    radial-gradient(ellipse at 70% 48%, rgba(104,226,248,0.3), transparent 34%),
    radial-gradient(ellipse at 30% 72%, rgba(56,126,150,0.14), transparent 32%),
    radial-gradient(circle at 48% 18%, rgba(255,255,255,0.05), transparent 34%),
    linear-gradient(135deg, #02070d 0%, #061925 46%, #020c12 100%);
}

.finale::before {
  opacity: 0.34;
  background-size: 118px 118px;
}

.finale::after {
  inset: auto 9% 9%;
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.66), rgba(255,255,255,0.44), rgba(104,226,248,0.5), transparent);
  box-shadow: 0 0 42px rgba(104,226,248,0.28);
  opacity: 0.54;
}

.finale-grid {
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1.14fr);
}

.finale-product {
  min-height: min(78svh, 780px);
}

.finale-product::before {
  width: min(50vw, 680px);
  background:
    radial-gradient(circle, rgba(104,226,248,0.28), transparent 62%),
    radial-gradient(circle at 52% 42%, rgba(255,255,255,0.12), transparent 34%);
  filter: blur(14px);
  opacity: 0.92;
}

.finale-product img {
  width: min(21.5vw, 270px);
  max-height: none;
  height: auto;
  filter:
    contrast(1.08)
    brightness(1.03)
    drop-shadow(0 54px 70px rgba(0,0,0,0.48))
    drop-shadow(0 0 30px rgba(255,255,255,0.13))
    drop-shadow(0 0 70px rgba(104,226,248,0.2));
}

.finale-ring {
  width: min(42vw, 560px);
  height: min(56svh, 580px);
  opacity: 0.62;
}

.finale-ring-b {
  width: min(34vw, 450px);
  height: min(46svh, 480px);
  opacity: 0.46;
}

.finale-sparks {
  inset: 8% 16% 14%;
}

.finale-plinth {
  bottom: 9%;
  width: min(25vw, 310px);
  height: 7px;
  opacity: 0.82;
}

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

  .hero-stage {
    min-height: 560px;
  }

  .hero-product {
    width: min(35vw, 230px);
  }

  .finale-product img {
    width: min(38vw, 245px);
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 70px;
  }

  .hero-stage {
    min-height: 500px;
    padding-top: 12px;
  }

  .hero-stage::before {
    width: 94vw;
    height: 500px;
  }

  .hero-product {
    width: min(49vw, 200px);
  }

  .hero-reflection {
    bottom: 8.2%;
    width: min(64vw, 250px);
  }

  .hero-plinth {
    bottom: 10%;
    width: min(56vw, 220px);
  }

  .finale-grid {
    padding-top: 112px;
  }

  .finale-product {
    min-height: 430px;
  }

  .finale-product img {
    width: min(52vw, 210px);
  }

  .finale-product::before {
    width: 92vw;
  }

  .finale-plinth {
    bottom: 8.8%;
    width: min(58vw, 230px);
  }
}

/* Final premium ocean pass: calmer flagship lighting and cleaner first/final screens. */
.hero,
.finale {
  background:
    radial-gradient(ellipse at 72% 44%, rgba(80, 204, 230, 0.23), transparent 34%),
    radial-gradient(ellipse at 52% 74%, rgba(18, 86, 112, 0.28), transparent 46%),
    radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(135deg, #02070d 0%, #061823 48%, #010509 100%);
}

.hero::before,
.finale::after {
  background: linear-gradient(90deg, transparent, rgba(91, 213, 238, 0.5), rgba(255, 255, 255, 0.34), transparent);
  box-shadow: 0 0 42px rgba(91, 213, 238, 0.24);
  opacity: 0.5;
}

.hero::after {
  right: -12vw;
  top: 0;
  width: min(76vw, 1080px);
  height: 100%;
  background:
    radial-gradient(ellipse at 48% 50%, rgba(255, 255, 255, 0.07), transparent 22%),
    repeating-linear-gradient(112deg, transparent 0 72px, rgba(121, 231, 255, 0.055) 73px 74px),
    linear-gradient(112deg, transparent 0%, rgba(121, 231, 255, 0.13) 52%, transparent 76%);
  mask-image: radial-gradient(ellipse at 62% 48%, #000 0%, transparent 78%);
  opacity: 0.48;
}

.hero-cinema span,
.finale-atmosphere span {
  border: 0;
  background:
    linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.08), rgba(91, 213, 238, 0.12), transparent);
  box-shadow: none;
  filter: blur(16px);
  opacity: 0.14;
}

.hero-cinema span:nth-child(1),
.finale-atmosphere span:nth-child(1) {
  width: 46vw;
  height: 10vh;
  left: 48%;
  top: 30%;
  transform: rotate(-18deg);
}

.hero-cinema span:nth-child(2),
.hero-cinema span:nth-child(3),
.finale-atmosphere span:nth-child(2),
.finale-atmosphere span:nth-child(3) {
  opacity: 0.07;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.84fr) minmax(410px, 1.16fr);
  min-height: calc(100svh - 112px);
  align-items: center;
}

.hero-stage {
  min-height: min(72svh, 710px);
  padding-top: 0;
}

.hero-stage::before,
.finale-product::before {
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.15), transparent 20%),
    radial-gradient(ellipse at 50% 57%, rgba(91, 213, 238, 0.32), rgba(14, 77, 103, 0.12) 45%, transparent 74%);
  filter: blur(12px);
  opacity: 0.86;
}

.hero-stage::after {
  right: 12%;
  top: 14%;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), rgba(91, 213, 238, 0.74), transparent);
  box-shadow: 0 0 22px rgba(91, 213, 238, 0.45), 0 0 62px rgba(91, 213, 238, 0.2);
  opacity: 0.34;
}

.halo {
  opacity: 0.78;
  filter: blur(24px);
}

.hero-field,
.finale-field {
  opacity: 0.56;
}

.orbit,
.finale-ring {
  border-color: rgba(178, 242, 255, 0.28);
  opacity: 0.48;
}

.orbit-b,
.finale-ring-b {
  border-color: rgba(178, 242, 255, 0.22);
  opacity: 0.34;
}

.hero-product {
  width: min(19.4vw, 238px);
  filter:
    contrast(1.08)
    brightness(1.02)
    saturate(1.02)
    drop-shadow(0 44px 58px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 66px rgba(91, 213, 238, 0.2));
}

.hero-reflection {
  bottom: 7%;
  width: min(28vw, 340px);
  height: 48px;
  opacity: 0.7;
}

.hero-plinth {
  bottom: 8.5%;
  width: min(20vw, 255px);
  opacity: 0.7;
}

.finale-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(410px, 1.08fr);
  align-items: center;
}

.finale-copy h2 {
  max-width: 720px;
  font-size: clamp(3.9rem, 6.7vw, 7rem);
  line-height: 0.92;
}

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

.finale-price {
  margin-top: clamp(24px, 4vw, 46px);
  font-size: clamp(3.8rem, 7vw, 6.6rem);
}

.finale-product {
  min-height: min(74svh, 720px);
}

.finale-product img {
  width: min(19.8vw, 248px);
  filter:
    contrast(1.08)
    brightness(1.02)
    saturate(1.02)
    drop-shadow(0 44px 62px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 68px rgba(91, 213, 238, 0.2));
}

.finale-plinth {
  bottom: 10.5%;
  width: min(21vw, 265px);
  opacity: 0.72;
}

@media (max-width: 1040px) {
  .hero-grid,
  .finale-grid {
    min-height: auto;
  }

  .hero-stage {
    min-height: 510px;
  }

  .hero-product {
    width: min(31vw, 210px);
  }

  .finale-product {
    min-height: 500px;
  }

  .finale-product img {
    width: min(33vw, 220px);
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 62px;
  }

  .hero-grid {
    gap: 10px;
    padding-bottom: 34px;
  }

  .hero-stage {
    min-height: 408px;
    padding-top: 6px;
  }

  .hero-stage::before {
    width: 88vw;
    height: 420px;
  }

  .hero-product {
    width: min(42vw, 172px);
  }

  .hero-reflection {
    bottom: 9.5%;
    width: min(56vw, 220px);
    height: 34px;
  }

  .hero-plinth {
    bottom: 11.2%;
    width: min(48vw, 190px);
  }

  .hero-cinema span:nth-child(1),
  .finale-atmosphere span:nth-child(1) {
    width: 76vw;
    height: 8vh;
    left: 34%;
    top: 26%;
  }

  .finale-grid {
    padding-top: 86px;
    gap: 18px;
  }

  .finale-product {
    min-height: 360px;
  }

  .finale-product img {
    width: min(45vw, 184px);
  }

  .finale-product::before {
    width: 82vw;
  }

  .finale-plinth {
    bottom: 11%;
    width: min(50vw, 200px);
  }

  .finale-copy h2 {
    font-size: clamp(3.2rem, 13vw, 4.8rem);
  }
}

/* Final premium art direction pass. */
.hero,
.finale {
  background:
    radial-gradient(ellipse at 72% 46%, rgba(104,226,248,0.24), transparent 34%),
    radial-gradient(ellipse at 44% 64%, rgba(38,112,136,0.18), transparent 40%),
    radial-gradient(circle at 18% 86%, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(135deg, #02070d 0%, #061925 48%, #02070d 100%);
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.38), rgba(255,255,255,0.24), transparent);
  opacity: 0.46;
}

.hero::after {
  right: -18vw;
  top: -4%;
  width: min(80vw, 1160px);
  height: 108%;
  background:
    linear-gradient(108deg, transparent 0%, rgba(255,255,255,0.026) 34%, rgba(104,226,248,0.12) 51%, transparent 70%),
    repeating-linear-gradient(108deg, transparent 0 72px, rgba(255,255,255,0.018) 73px 74px);
  mask-image: radial-gradient(ellipse at 62% 47%, #000 0%, transparent 74%);
  opacity: 0.64;
}

.hero-grid {
  min-height: calc(100svh - 168px);
}

.hero-stage::before,
.finale-product::before {
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 52% 36%, rgba(255,255,255,0.13), transparent 22%),
    radial-gradient(ellipse at 50% 58%, rgba(104,226,248,0.24), rgba(50,132,154,0.1) 44%, transparent 73%);
  filter: blur(18px);
  opacity: 0.78;
}

.hero-field,
.finale-field {
  border-radius: 999px;
  opacity: 0.3;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 72%);
}

.hero-glass {
  opacity: 0.68;
}

.hero-product,
.finale-product img {
  filter:
    contrast(1.06)
    brightness(1)
    saturate(0.95)
    drop-shadow(0 54px 72px rgba(0,0,0,0.5))
    drop-shadow(0 0 24px rgba(255,255,255,0.12))
    drop-shadow(0 0 64px rgba(104,226,248,0.18));
}

.hero-product {
  width: min(22vw, 275px);
}

.hero-reflection {
  background: radial-gradient(ellipse, rgba(255,255,255,0.32), rgba(104,226,248,0.28) 34%, rgba(6,20,30,0.22) 60%, transparent 80%);
  opacity: 0.7;
}

.moments {
  position: relative;
  padding: clamp(96px, 10vw, 150px) 0;
  background:
    radial-gradient(ellipse at 78% 16%, rgba(104,226,248,0.12), transparent 34%),
    linear-gradient(180deg, #fbfdfe 0%, #eef4f7 58%, #e8eff3 100%);
}

.moments::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,14,22,0.16), transparent);
}

.moment-grid {
  grid-template-columns: minmax(0, 1.24fr) minmax(330px, 0.76fr);
}

.moment-feature {
  min-height: min(68svh, 680px);
  border-radius: 34px;
  background: #e9f0f3;
  box-shadow: 0 38px 110px rgba(11,28,39,0.16);
}

.moment-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 42%, rgba(1,12,18,0.28)),
    radial-gradient(ellipse at 78% 20%, rgba(104,226,248,0.16), transparent 42%);
  pointer-events: none;
}

.moment-feature img {
  filter: saturate(0.88) contrast(1.04) brightness(1.02);
}

.moment-caption {
  z-index: 2;
  inset: auto 24px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(3,16,24,0.78), rgba(4,32,45,0.58));
  backdrop-filter: blur(18px);
}

.moment-list {
  border-top-color: rgba(8,14,22,0.16);
}

.moment-choice {
  padding: 28px 0;
}

.moment-choice:hover,
.moment-choice.active,
.moment-choice:focus-visible {
  background: linear-gradient(90deg, rgba(104,226,248,0.12), rgba(255,255,255,0));
}

.finale {
  min-height: 100svh;
}

.finale .ocean-canvas {
  opacity: 0.5;
}

.finale::before {
  opacity: 0.2;
  mask-image: radial-gradient(ellipse at 68% 48%, #000 0%, transparent 62%);
}

.finale::after {
  inset: auto 12% 10%;
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.5), rgba(255,255,255,0.38), rgba(104,226,248,0.36), transparent);
  box-shadow: 0 0 42px rgba(104,226,248,0.22);
  opacity: 0.44;
}

.finale-grid {
  min-height: 100svh;
  padding: 92px 0 72px;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
}

.finale-copy {
  position: relative;
  z-index: 4;
  max-width: 610px;
}

.finale-copy h2 {
  color: transparent;
  background: linear-gradient(106deg, #fff 0%, #fff 42%, #c7f7ff 58%, #fff 72%, #8d99a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.finale-copy p {
  max-width: 500px;
  color: rgba(235,248,252,0.72);
}

.finale-price {
  margin-top: 26px;
  color: #fff;
  text-shadow: 0 0 34px rgba(104,226,248,0.18);
}

.finale-product {
  min-height: min(78svh, 780px);
}

.finale-product::before {
  width: min(48vw, 620px);
  z-index: 0;
}

.finale-product::after {
  display: none;
}

.finale-field {
  width: min(44vw, 600px);
  height: min(70svh, 680px);
}

.finale-field::before {
  background:
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(255,255,255,0.035) 47px 48px),
    linear-gradient(90deg, transparent, rgba(104,226,248,0.18), transparent);
}

.finale-field::after {
  box-shadow: 0 0 82px rgba(104,226,248,0.16), inset 0 0 70px rgba(255,255,255,0.04);
}

.finale-ring {
  background: conic-gradient(from 40deg, transparent 0 24%, rgba(104,226,248,0.42), rgba(255,255,255,0.2), transparent 43% 72%, rgba(104,226,248,0.24), transparent 88% 100%);
  filter: drop-shadow(0 0 28px rgba(104,226,248,0.22));
  opacity: 0.48;
}

.finale-sparks i {
  box-shadow: 0 0 16px rgba(255,255,255,0.66), 0 0 28px rgba(104,226,248,0.32);
}

.finale-product img {
  width: min(22vw, 278px);
  max-height: none;
  height: auto;
}

.finale-plinth {
  bottom: 8%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.46), rgba(104,226,248,0.62), rgba(255,255,255,0.28), transparent);
  box-shadow: 0 0 22px rgba(255,255,255,0.14), 0 0 48px rgba(104,226,248,0.32);
}

@media (max-width: 1040px) {
  .hero-grid,
  .finale-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 540px;
  }

  .hero-product {
    width: min(34vw, 232px);
  }

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

  .moment-feature {
    min-height: 520px;
  }

  .finale-grid {
    padding: 92px 0 68px;
  }

  .finale-product {
    order: -1;
    min-height: 460px;
  }

  .finale-product img {
    width: min(34vw, 230px);
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 58px;
  }

  .hero-grid {
    gap: 4px;
  }

  .hero-copy {
    padding-top: 4px;
  }

  .hero-stage {
    min-height: 398px;
    padding-top: 0;
  }

  .hero-stage::before {
    width: 92vw;
    height: 440px;
  }

  .hero-product {
    width: min(43vw, 170px);
  }

  .hero-reflection {
    bottom: 9.5%;
  }

  .section-head {
    padding-top: 0;
  }

  .moments {
    padding: 92px 0 64px;
  }

  .moment-feature {
    min-height: 360px;
    border-radius: 26px;
  }

  .moment-caption {
    inset: auto 14px 14px;
    border-radius: 16px;
  }

  .moment-choice {
    padding: 20px 0;
  }

  .finale-grid {
    padding: 82px 0 56px;
    gap: 18px;
  }

  .finale-product {
    min-height: 292px;
  }

  .finale-product img {
    width: min(40vw, 160px);
    max-width: 64vw;
  }

  .finale-field,
  .finale-ring {
    height: 274px;
  }

  .finale-ring {
    width: 82vw;
  }

  .finale-ring-b {
    width: 64vw;
    height: 232px;
  }

  .finale-price {
    margin-top: 20px;
  }

  .finale-copy h2 {
    font-size: clamp(2.65rem, 11.8vw, 3.9rem);
  }
}

/* 2026 premium finish: cleaner launch-scene hero and finale */
.hero,
.finale {
  background:
    radial-gradient(ellipse at 70% 24%, rgba(104,226,248,0.2), transparent 34%),
    radial-gradient(ellipse at 48% 12%, rgba(255,255,255,0.12), transparent 26%),
    radial-gradient(ellipse at 18% 78%, rgba(237,28,46,0.08), transparent 30%),
    linear-gradient(135deg, #02060b 0%, #061724 44%, #02070d 100%);
}

.hero .ocean-canvas,
.finale .ocean-canvas {
  opacity: 0.72;
  filter: saturate(0.9);
}

.hero-cinema span:nth-child(2),
.hero-cinema span:nth-child(3),
.hero-field,
.hero-glass,
.finale-field {
  display: none;
}

.hero-cinema span:nth-child(1) {
  left: 5%;
  top: auto;
  bottom: 18%;
  width: 46vw;
  background: linear-gradient(90deg, transparent, rgba(104,226,248,0.42), rgba(255,255,255,0.38), transparent);
  opacity: 0.54;
}

.hero::before,
.finale::before {
  inset: 72px 0 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(ellipse at 68% 48%, rgba(255,255,255,0.16), transparent 30%),
    repeating-linear-gradient(115deg, transparent 0 68px, rgba(255,255,255,0.018) 69px 70px);
  opacity: 0.58;
}

.hero::after,
.finale::after {
  right: -12vw;
  top: 0;
  width: min(74vw, 980px);
  height: 100%;
  transform: skewX(-8deg);
  background:
    linear-gradient(102deg, transparent 0%, rgba(104,226,248,0.08) 35%, rgba(255,255,255,0.1) 50%, transparent 68%),
    radial-gradient(ellipse at 44% 58%, rgba(104,226,248,0.14), transparent 42%);
  opacity: 0.55;
  animation: lightSweep 12s ease-in-out infinite;
}

.hero-grid {
  min-height: min(760px, calc(100svh - 232px));
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  gap: clamp(26px, 5vw, 86px);
}

.hero-copy {
  transform: translateY(-1.4vh);
}

.hero h1 {
  max-width: 720px;
  letter-spacing: 0;
  text-wrap: balance;
  background: linear-gradient(106deg, #fff 0%, #f7fbff 38%, #b8f4ff 56%, #fff 72%, #91a1ad 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p {
  max-width: 575px;
  color: rgba(238,248,252,0.76);
}

.hero-stage {
  min-height: min(76svh, 780px);
  transform: translateY(-1.5vh);
}

.hero-stage::before,
.finale-product::before {
  width: min(40vw, 520px);
  height: min(74svh, 760px);
  aspect-ratio: auto;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255,255,255,0.78), rgba(218,247,255,0.36) 24%, rgba(104,226,248,0.12) 46%, transparent 70%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  box-shadow:
    0 0 80px rgba(104,226,248,0.2),
    0 56px 150px rgba(0,0,0,0.42);
  opacity: 0.84;
  transform: none;
  animation: stageBreath 8.8s ease-in-out infinite;
}

.hero-stage::after {
  right: 20%;
  top: 16%;
  height: 62%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.58), rgba(104,226,248,0.78), transparent);
  box-shadow: 0 0 32px rgba(104,226,248,0.46);
  opacity: 0.42;
}

.halo {
  width: min(42vw, 560px);
  height: min(70svh, 720px);
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(ellipse at 50% 60%, rgba(104,226,248,0.2), transparent 66%);
  transform: none;
}

.orbit {
  width: min(38vw, 500px);
  height: min(48svh, 520px);
  background: conic-gradient(from 18deg, transparent 0 14%, rgba(104,226,248,0.5) 17%, rgba(255,255,255,0.18) 21%, transparent 30% 58%, rgba(104,226,248,0.22) 66%, transparent 78% 100%);
  filter: drop-shadow(0 0 24px rgba(104,226,248,0.24));
  opacity: 0.72;
}

.orbit-b {
  background: conic-gradient(from 210deg, transparent 0 18%, rgba(255,255,255,0.24) 22%, transparent 31% 62%, rgba(237,28,46,0.18) 70%, transparent 82% 100%);
  opacity: 0.52;
}

.hero-product,
.finale-product img {
  width: min(25vw, 315px);
  max-height: min(76svh, 740px);
  filter:
    contrast(1.04)
    brightness(1.03)
    saturate(0.92)
    drop-shadow(0 52px 70px rgba(0,0,0,0.54))
    drop-shadow(0 0 28px rgba(255,255,255,0.16))
    drop-shadow(0 0 72px rgba(104,226,248,0.26));
}

.hero-reflection,
.finale-plinth {
  background: radial-gradient(ellipse, rgba(255,255,255,0.48), rgba(104,226,248,0.44) 32%, rgba(7,26,37,0.2) 62%, transparent 78%);
  box-shadow: 0 0 34px rgba(104,226,248,0.26);
}

.hero-plinth {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), rgba(104,226,248,0.74), rgba(255,255,255,0.28), transparent);
  box-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 52px rgba(104,226,248,0.42);
}

.spec-rail {
  padding-top: 14px;
  border-top-color: rgba(255,255,255,0.14);
}

.spec-rail div {
  min-height: 78px;
  padding: 18px 22px 12px;
}

.spec-rail div::after {
  background: rgba(237,28,46,0.96);
  box-shadow: 0 0 18px rgba(237,28,46,0.6);
}

.spec-rail strong {
  font-size: clamp(1.32rem, 2.25vw, 2.05rem);
}

.finale-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  min-height: 100svh;
}

.finale-copy {
  transform: translateY(-1.2vh);
}

.finale-product {
  min-height: min(78svh, 790px);
}

.finale-ring {
  background: conic-gradient(from 40deg, transparent 0 25%, rgba(104,226,248,0.34), rgba(255,255,255,0.18), transparent 44% 72%, rgba(237,28,46,0.16), transparent 88% 100%);
  opacity: 0.38;
}

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

  .hero-stage,
  .finale-product {
    transform: none;
  }

  .hero-product,
  .finale-product img {
    width: min(34vw, 250px);
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    min-height: auto;
    gap: 0;
  }

  .hero-copy {
    transform: none;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: clamp(3.05rem, 14vw, 4.45rem);
    line-height: 0.9;
  }

  .hero p {
    margin-top: 18px;
    font-size: 0.96rem;
  }

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

  .hero-stage {
    min-height: 390px;
    margin-top: -4px;
  }

  .hero-stage::before {
    width: 76vw;
    height: 372px;
  }

  .hero-product {
    width: min(47vw, 176px);
    max-height: 372px;
  }

  .orbit {
    width: 78vw;
    height: 310px;
  }

  .orbit-b {
    width: 62vw;
    height: 250px;
  }

  .spec-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 4px;
  }

  .spec-rail div {
    min-height: 76px;
    padding: 16px 14px 10px;
  }

  .spec-rail div:nth-child(3) {
    border-left: 0;
  }

  .finale-grid {
    padding: 70px 0 54px;
  }

  .finale-product {
    min-height: 348px;
  }

  .finale-product::before {
    width: 78vw;
    height: 330px;
  }

  .finale-product img {
    width: min(46vw, 176px);
    max-height: 340px;
  }

  .finale-copy h2 {
    font-size: clamp(2.55rem, 10.8vw, 3.7rem);
    line-height: 0.95;
  }
}

/* Brand-premium pass: Fulmor red, satin black, metallic silver */
:root {
  --brand-black: #040406;
  --brand-graphite: #111216;
  --brand-graphite-2: #1b1c21;
  --brand-silver: #eef1f3;
  --brand-silver-2: #c8d0d6;
  --brand-red: #ed1c2e;
  --brand-red-hot: #ff3348;
  --brand-red-deep: #8f0612;
}

body {
  background:
    radial-gradient(ellipse at 54% -10%, rgba(255,255,255,0.12), transparent 32%),
    radial-gradient(ellipse at 12% 18%, rgba(237,28,46,0.1), transparent 28%),
    var(--brand-black);
}

.site-header {
  background: linear-gradient(180deg, rgba(4,4,6,0.97), rgba(4,4,6,0.88));
  border-bottom-color: rgba(237,28,46,0.24);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 24px 70px rgba(0,0,0,0.34);
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(237,28,46,0.36);
}

.button-ghost {
  border-color: rgba(237,28,46,0.42);
  background: rgba(237,28,46,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 12px 28px rgba(237,28,46,0.08);
}

.scene-dark,
.scene-black,
.hero,
.finale {
  background:
    radial-gradient(ellipse at 70% 28%, rgba(255,255,255,0.16), transparent 30%),
    radial-gradient(ellipse at 72% 58%, rgba(237,28,46,0.12), transparent 34%),
    radial-gradient(ellipse at 18% 72%, rgba(255,255,255,0.055), transparent 28%),
    linear-gradient(135deg, #030304 0%, #111216 48%, #050506 100%);
}

.scene-white {
  background:
    radial-gradient(ellipse at 86% 10%, rgba(237,28,46,0.065), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f3f4f5 100%);
}

.scene-silver {
  background:
    radial-gradient(ellipse at 72% 12%, rgba(237,28,46,0.08), transparent 28%),
    radial-gradient(ellipse at 24% 74%, rgba(255,255,255,0.72), transparent 36%),
    linear-gradient(180deg, #f7f8f9 0%, #dfe3e7 100%);
}

.ocean-canvas {
  opacity: 0.5;
  filter: grayscale(0.75) saturate(0.65) contrast(1.08);
  mix-blend-mode: screen;
}

.finale .ocean-canvas {
  opacity: 0.42;
}

.hero::before,
.finale::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), transparent 18%),
    radial-gradient(ellipse at 68% 48%, rgba(255,255,255,0.18), transparent 30%),
    radial-gradient(ellipse at 60% 62%, rgba(237,28,46,0.12), transparent 42%),
    repeating-linear-gradient(115deg, transparent 0 82px, rgba(255,255,255,0.016) 83px 84px);
  opacity: 0.62;
}

.hero::after,
.finale::after {
  background:
    linear-gradient(102deg, transparent 0%, rgba(255,255,255,0.07) 34%, rgba(237,28,46,0.16) 51%, rgba(255,255,255,0.08) 60%, transparent 72%),
    radial-gradient(ellipse at 44% 58%, rgba(237,28,46,0.14), transparent 44%);
  opacity: 0.58;
}

.hero-cinema span:nth-child(1) {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), rgba(237,28,46,0.55), transparent);
}

.hero h1,
.finale-copy h2 {
  background: linear-gradient(106deg, #ffffff 0%, #f7f7f8 36%, #cfd4d8 52%, #ffffff 66%, #7f858b 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p,
.finale-copy p {
  color: rgba(235,238,240,0.76);
}

.eyebrow {
  color: rgba(255,255,255,0.64);
}

.eyebrow.red {
  color: var(--brand-red);
}

.hero-stage::before,
.finale-product::before {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255,255,255,0.78), rgba(235,238,240,0.34) 24%, rgba(237,28,46,0.12) 48%, transparent 72%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  box-shadow:
    0 0 78px rgba(255,255,255,0.12),
    0 0 96px rgba(237,28,46,0.12),
    0 56px 150px rgba(0,0,0,0.5);
}

.hero-stage::after {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.62), rgba(237,28,46,0.72), transparent);
  box-shadow: 0 0 36px rgba(237,28,46,0.46);
  opacity: 0.5;
}

.halo {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(ellipse at 50% 60%, rgba(237,28,46,0.18), transparent 66%);
}

.orbit {
  background: conic-gradient(from 18deg, transparent 0 14%, rgba(255,255,255,0.42) 17%, rgba(237,28,46,0.4) 21%, transparent 31% 58%, rgba(237,28,46,0.24) 66%, transparent 78% 100%);
  filter: drop-shadow(0 0 24px rgba(237,28,46,0.24));
  opacity: 0.62;
}

.orbit-b {
  background: conic-gradient(from 210deg, transparent 0 18%, rgba(255,255,255,0.26) 22%, transparent 31% 62%, rgba(237,28,46,0.32) 70%, transparent 82% 100%);
  opacity: 0.5;
}

.hero-product,
.finale-product img {
  filter:
    contrast(1.06)
    brightness(1.03)
    saturate(0.88)
    drop-shadow(0 56px 76px rgba(0,0,0,0.58))
    drop-shadow(0 0 28px rgba(255,255,255,0.16))
    drop-shadow(0 0 70px rgba(237,28,46,0.18));
}

.hero-reflection,
.finale-plinth {
  background: radial-gradient(ellipse, rgba(255,255,255,0.5), rgba(237,28,46,0.36) 32%, rgba(20,7,10,0.22) 62%, transparent 78%);
  box-shadow: 0 0 34px rgba(237,28,46,0.22);
}

.hero-plinth {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.58), rgba(237,28,46,0.78), rgba(255,255,255,0.3), transparent);
  box-shadow: 0 0 20px rgba(255,255,255,0.2), 0 0 52px rgba(237,28,46,0.42);
}

.spec-rail {
  border-top-color: rgba(255,255,255,0.16);
}

.spec-rail::before {
  background: linear-gradient(90deg, rgba(237,28,46,0.95), rgba(255,255,255,0.54), transparent);
}

.spec-rail span {
  color: rgba(255,255,255,0.5);
}

.feature-media::before,
.finale-product::before {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,0.72), rgba(237,28,46,0.16) 36%, transparent 70%);
}

.tech-visual {
  border-color: rgba(237,28,46,0.12);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(245,246,247,0.58)),
    radial-gradient(circle at 80% 12%, rgba(237,28,46,0.08), transparent 42%);
  box-shadow: 0 40px 90px rgba(24,26,30,0.14), inset 0 1px 0 rgba(255,255,255,0.85);
}

.design-notes div {
  border-color: rgba(237,28,46,0.2);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(237,28,46,0.055));
}

.lifestyle-overlay {
  background:
    radial-gradient(circle at 20% 76%, rgba(237,28,46,0.2), transparent 30%),
    radial-gradient(circle at 72% 28%, rgba(255,255,255,0.13), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.06), rgba(10,10,12,0.36) 42%, rgba(2,2,4,0.86));
}

.moments {
  background:
    radial-gradient(ellipse at 88% 12%, rgba(237,28,46,0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f0f1f3 100%);
}

.moment-choice:hover,
.moment-choice.active,
.moment-choice:focus-visible {
  background: linear-gradient(90deg, rgba(237,28,46,0.09), rgba(255,255,255,0));
}

.finale-ring {
  background: conic-gradient(from 40deg, transparent 0 25%, rgba(255,255,255,0.3), rgba(237,28,46,0.32), transparent 44% 72%, rgba(237,28,46,0.16), transparent 88% 100%);
  filter: drop-shadow(0 0 28px rgba(237,28,46,0.2));
}

@media (max-width: 700px) {
  .ocean-canvas {
    opacity: 0.36;
  }

  .hero,
  .finale {
    background:
      radial-gradient(ellipse at 54% 22%, rgba(255,255,255,0.18), transparent 32%),
      radial-gradient(ellipse at 58% 44%, rgba(237,28,46,0.12), transparent 34%),
      linear-gradient(180deg, #030304 0%, #111216 52%, #050506 100%);
  }
}

/* Apple/Samsung inspired flagship finish: monochrome, spacious, cinematic */
:root {
  --flagship-black: #000000;
  --flagship-ink: #08090b;
  --flagship-charcoal: #15161a;
  --flagship-silver: #f5f6f7;
  --flagship-silver-2: #d8dde1;
  --flagship-line: rgba(255,255,255,0.16);
}

body {
  background:
    radial-gradient(ellipse at 50% -12%, rgba(255,255,255,0.14), transparent 32%),
    var(--flagship-black);
}

.site-header {
  background: rgba(0,0,0,0.78);
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 18px 60px rgba(0,0,0,0.28);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
}

.nav-links {
  color: rgba(255,255,255,0.62);
}

.nav-links a:hover {
  color: #fff;
  text-shadow: none;
}

.nav-cta,
.button-light {
  color: #07080a;
  background: linear-gradient(180deg, #ffffff, #e9edf0);
  box-shadow: 0 18px 44px rgba(255,255,255,0.14), inset 0 1px 0 rgba(255,255,255,0.9);
}

.button-light::after {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.scene-dark,
.scene-black,
.hero,
.finale {
  background:
    radial-gradient(ellipse at 68% 34%, rgba(255,255,255,0.24), transparent 30%),
    radial-gradient(ellipse at 52% 68%, rgba(120,126,132,0.16), transparent 38%),
    linear-gradient(145deg, #000000 0%, #141519 52%, #020203 100%);
}

.scene-white,
.moments {
  background:
    radial-gradient(ellipse at 78% 10%, rgba(0,0,0,0.04), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%);
}

.scene-silver {
  background:
    radial-gradient(ellipse at 72% 12%, rgba(255,255,255,0.82), transparent 30%),
    linear-gradient(180deg, #f8f9fa 0%, #e3e6e9 100%);
}

.ocean-canvas {
  opacity: 0.34;
  filter: grayscale(1) saturate(0.2) contrast(1.08);
}

.finale .ocean-canvas {
  opacity: 0.28;
}

.hero::before,
.finale::before {
  background:
    radial-gradient(ellipse at 69% 46%, rgba(255,255,255,0.2), transparent 30%),
    repeating-linear-gradient(115deg, transparent 0 96px, rgba(255,255,255,0.012) 97px 98px);
  opacity: 0.72;
}

.hero::after,
.finale::after {
  background:
    linear-gradient(103deg, transparent 0%, rgba(255,255,255,0.045) 35%, rgba(255,255,255,0.13) 52%, transparent 68%),
    radial-gradient(ellipse at 48% 54%, rgba(255,255,255,0.14), transparent 46%);
  opacity: 0.6;
}

.hero-cinema span:nth-child(1) {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), rgba(216,221,225,0.46), transparent);
  opacity: 0.42;
}

.hero h1,
.finale-copy h2 {
  background: linear-gradient(106deg, #ffffff 0%, #ffffff 42%, #d5dade 58%, #ffffff 72%, #878d93 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p,
.finale-copy p {
  color: rgba(245,247,248,0.72);
}

.eyebrow,
.eyebrow.red {
  color: rgba(255,255,255,0.55);
}

.scene-white .eyebrow:not(.red),
.scene-silver .eyebrow:not(.red),
.scene-white .eyebrow.red,
.scene-silver .eyebrow.red {
  color: rgba(8,14,22,0.45);
}

.hero-stage::before,
.finale-product::before {
  background:
    radial-gradient(ellipse at 50% 38%, rgba(255,255,255,0.86), rgba(245,247,248,0.34) 26%, rgba(180,187,194,0.08) 52%, transparent 74%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  box-shadow:
    0 0 90px rgba(255,255,255,0.14),
    0 60px 160px rgba(0,0,0,0.54);
}

.hero-stage::after {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.56), rgba(216,221,225,0.5), transparent);
  box-shadow: 0 0 36px rgba(255,255,255,0.22);
  opacity: 0.36;
}

.halo {
  background:
    radial-gradient(ellipse at 50% 42%, rgba(255,255,255,0.18), transparent 28%),
    radial-gradient(ellipse at 50% 60%, rgba(210,216,220,0.14), transparent 66%);
}

.orbit {
  background: conic-gradient(from 18deg, transparent 0 14%, rgba(255,255,255,0.32) 17%, rgba(216,221,225,0.22) 22%, transparent 32% 60%, rgba(255,255,255,0.14) 68%, transparent 80% 100%);
  filter: drop-shadow(0 0 22px rgba(255,255,255,0.12));
  opacity: 0.48;
}

.orbit-b {
  background: conic-gradient(from 210deg, transparent 0 18%, rgba(255,255,255,0.2) 22%, transparent 31% 62%, rgba(255,255,255,0.12) 70%, transparent 82% 100%);
  opacity: 0.36;
}

.hero-product,
.finale-product img {
  filter:
    contrast(1.06)
    brightness(1.04)
    saturate(0.82)
    drop-shadow(0 58px 78px rgba(0,0,0,0.58))
    drop-shadow(0 0 30px rgba(255,255,255,0.14));
}

.hero-reflection,
.finale-plinth {
  background: radial-gradient(ellipse, rgba(255,255,255,0.54), rgba(214,220,224,0.28) 34%, rgba(6,7,8,0.24) 64%, transparent 80%);
  box-shadow: 0 0 34px rgba(255,255,255,0.16);
}

.hero-plinth {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.62), rgba(219,224,228,0.5), rgba(255,255,255,0.26), transparent);
  box-shadow: 0 0 20px rgba(255,255,255,0.18), 0 0 52px rgba(255,255,255,0.16);
}

.spec-rail {
  border-top-color: rgba(255,255,255,0.15);
}

.spec-rail::before {
  background: linear-gradient(90deg, rgba(255,255,255,0.58), rgba(216,221,225,0.42), transparent);
}

.spec-rail div::after {
  background: rgba(255,255,255,0.88);
  box-shadow: 0 0 18px rgba(255,255,255,0.34);
}

.spec-rail span {
  color: rgba(255,255,255,0.45);
}

.feature-media::before {
  background: radial-gradient(ellipse at 50% 42%, rgba(0,0,0,0.06), transparent 66%);
}

.tech-visual {
  border-color: rgba(8,14,22,0.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.98), rgba(244,246,247,0.78)),
    radial-gradient(circle at 80% 12%, rgba(0,0,0,0.04), transparent 42%);
  box-shadow: 0 42px 100px rgba(30,35,40,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.design-notes div {
  border-color: rgba(255,255,255,0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
}

.lifestyle-overlay {
  background:
    radial-gradient(circle at 22% 74%, rgba(255,255,255,0.16), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(10,10,12,0.28) 42%, rgba(0,0,0,0.84));
}

.moment-choice:hover,
.moment-choice.active,
.moment-choice:focus-visible {
  background: linear-gradient(90deg, rgba(8,14,22,0.055), rgba(255,255,255,0));
}

.moment-caption {
  background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(12,13,15,0.46));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.finale-ring {
  background: conic-gradient(from 40deg, transparent 0 25%, rgba(255,255,255,0.28), rgba(216,221,225,0.18), transparent 44% 72%, rgba(255,255,255,0.12), transparent 88% 100%);
  filter: drop-shadow(0 0 28px rgba(255,255,255,0.12));
}

@media (max-width: 700px) {
  .hero,
  .finale {
    background:
      radial-gradient(ellipse at 54% 20%, rgba(255,255,255,0.2), transparent 32%),
      radial-gradient(ellipse at 54% 46%, rgba(150,156,162,0.12), transparent 34%),
      linear-gradient(180deg, #000000 0%, #15161a 54%, #030303 100%);
  }
}

/* Cinematic motion layer inspired by flagship product pages */
.cinematic-ready .hero-copy,
.cinematic-ready .finale-copy,
.cinematic-ready .hero-stage,
.cinematic-ready .finale-product {
  will-change: transform;
  transition: transform 140ms linear;
}

.cinematic-ready .hero-copy,
.cinematic-ready .finale-copy {
  transform: translate3d(0, var(--copy-lift, 0px), 0);
}

.cinematic-ready .hero-stage,
.cinematic-ready .finale-product {
  transform: translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0);
}

.cinematic-ready .hero-product,
.cinematic-ready .finale-product img {
  animation: none;
  will-change: transform, filter;
  transform: translate3d(0, var(--scene-lift, 0px), 0) scale(var(--product-scale, 1));
  transition: transform 140ms linear, filter 500ms cubic-bezier(.16,1,.3,1);
}

.cinematic-ready .hero-stage::before,
.cinematic-ready .finale-product::before {
  animation: none;
  transform: scale(var(--stage-scale, 1));
  opacity: var(--halo-opacity, 0.74);
  transition: transform 180ms linear, opacity 180ms linear;
}

.cinematic-ready .reveal {
  filter: blur(14px);
  transition:
    opacity 900ms cubic-bezier(.16,1,.3,1),
    transform 900ms cubic-bezier(.16,1,.3,1),
    filter 900ms cubic-bezier(.16,1,.3,1);
}

.cinematic-ready .reveal.visible {
  filter: blur(0);
}

.button,
.nav-cta,
.moment-choice,
.moment-feature,
.tech-visual,
.design-notes div {
  transition:
    transform 260ms cubic-bezier(.16,1,.3,1),
    box-shadow 260ms cubic-bezier(.16,1,.3,1),
    border-color 260ms ease,
    background-color 260ms ease,
    opacity 260ms ease;
}

.button:active,
.nav-cta:active {
  transform: translateY(0) scale(0.975);
}

.moment-feature:hover,
.tech-visual:hover,
.design-notes div:hover {
  transform: translateY(-4px);
}

.moment-choice strong,
.moment-choice p {
  transition: transform 260ms cubic-bezier(.16,1,.3,1), opacity 260ms ease;
}

.moment-choice:hover strong,
.moment-choice.active strong {
  transform: translateX(4px);
}

.moment-choice:hover p,
.moment-choice.active p {
  opacity: 0.82;
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-ready .hero-copy,
  .cinematic-ready .finale-copy,
  .cinematic-ready .hero-stage,
  .cinematic-ready .finale-product,
  .cinematic-ready .hero-product,
  .cinematic-ready .finale-product img,
  .cinematic-ready .hero-stage::before,
  .cinematic-ready .finale-product::before,
  .cinematic-ready .reveal {
    transform: none;
    transition: none;
    filter: none;
  }
}

/* Flagship refinement: quieter black-silver stage, cleaner product focus */
.hero,
.finale {
  background:
    radial-gradient(ellipse at 71% 38%, rgba(255,255,255,0.18), transparent 29%),
    radial-gradient(ellipse at 58% 72%, rgba(112,118,124,0.12), transparent 38%),
    linear-gradient(145deg, #000 0%, #0f1013 48%, #020203 100%);
}

.hero .ocean-canvas,
.finale .ocean-canvas {
  opacity: 0.22;
  filter: grayscale(1) saturate(0.08) contrast(1.03);
}

.aurora,
.hero-cinema span:nth-child(1),
.finale-atmosphere span {
  opacity: 0.18;
}

.hero::before,
.finale::before {
  background:
    radial-gradient(ellipse at 69% 46%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,0.024) 43%, transparent 52%);
  opacity: 0.68;
}

.hero::after,
.finale::after {
  right: -18vw;
  width: min(68vw, 860px);
  background:
    linear-gradient(104deg, transparent 0%, rgba(255,255,255,0.036) 35%, rgba(255,255,255,0.1) 51%, transparent 68%),
    radial-gradient(ellipse at 48% 56%, rgba(255,255,255,0.11), transparent 44%);
  opacity: 0.38;
}

.hero-stage::before,
.finale-product::before {
  background:
    radial-gradient(ellipse at 50% 37%, rgba(255,255,255,0.62), rgba(238,242,245,0.24) 26%, rgba(160,168,174,0.08) 54%, transparent 75%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.11), transparent);
  box-shadow:
    0 0 72px rgba(255,255,255,0.1),
    0 64px 170px rgba(0,0,0,0.62);
}

.hero-stage::after {
  opacity: 0.2;
}

.orbit {
  opacity: 0.34;
}

.orbit-b {
  opacity: 0.24;
}

.hero-particles i,
.finale-sparks i {
  opacity: 0.38;
}

.hero-product,
.finale-product img {
  width: min(24vw, 306px);
  filter:
    contrast(1.05)
    brightness(0.98)
    saturate(0.76)
    drop-shadow(0 58px 82px rgba(0,0,0,0.62))
    drop-shadow(0 0 22px rgba(255,255,255,0.12));
}

.hero-reflection,
.finale-plinth {
  opacity: 0.72;
  background: radial-gradient(ellipse, rgba(255,255,255,0.42), rgba(214,220,224,0.22) 34%, rgba(0,0,0,0.24) 64%, transparent 82%);
}

.hero-plinth {
  opacity: 0.58;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), rgba(218,224,228,0.34), transparent);
}

.spec-rail {
  margin-top: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.spec-rail::before {
  display: none;
}

.spec-rail div {
  min-height: 70px;
  padding: 16px 20px 10px;
  border-left-color: rgba(255,255,255,0.1);
}

.spec-rail div::after {
  width: 5px;
  height: 5px;
  top: 20px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 0 16px rgba(255,255,255,0.26);
}

.spec-rail span {
  color: rgba(255,255,255,0.4);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
}

.spec-rail strong {
  margin-top: 8px;
  font-size: clamp(1.32rem, 2.05vw, 1.9rem);
  letter-spacing: 0;
}

.finale {
  background:
    radial-gradient(ellipse at 67% 38%, rgba(255,255,255,0.17), transparent 30%),
    radial-gradient(ellipse at 22% 70%, rgba(255,255,255,0.045), transparent 31%),
    linear-gradient(150deg, #000 0%, #101114 50%, #020203 100%);
}

.finale-copy {
  max-width: 600px;
}

.finale-price {
  color: #fff;
  text-shadow: 0 18px 54px rgba(255,255,255,0.12);
}

@media (max-width: 1040px) {
  .hero-product,
  .finale-product img {
    width: min(32vw, 236px);
  }
}

@media (max-width: 700px) {
  .hero,
  .finale {
    background:
      radial-gradient(ellipse at 50% 18%, rgba(255,255,255,0.18), transparent 30%),
      radial-gradient(ellipse at 55% 48%, rgba(126,132,138,0.12), transparent 36%),
      linear-gradient(180deg, #000 0%, #121317 54%, #020203 100%);
  }

  .hero-stage {
    min-height: 352px;
  }

  .hero-stage::before {
    width: 72vw;
    height: 340px;
  }

  .hero-product {
    width: min(42vw, 162px);
    max-height: 344px;
  }

  .hero-reflection {
    width: 62vw;
    bottom: 18px;
  }

  .spec-rail {
    border-radius: 24px 24px 0 0;
    padding: 8px;
  }

  .spec-rail div {
    min-height: 68px;
    padding: 14px 12px 9px;
  }

  .finale-product img {
    width: min(42vw, 164px);
  }
}

/* Fulmor brand return: premium red, graphite, and silver */
:root {
  --fulmor-red: #ed1c2e;
  --fulmor-red-hot: #ff354b;
  --fulmor-red-deep: #860713;
  --fulmor-black: #030305;
  --fulmor-graphite: #111216;
  --fulmor-silver: #eef1f3;
}

body {
  background:
    radial-gradient(ellipse at 16% 6%, rgba(237,28,46,0.14), transparent 28%),
    radial-gradient(ellipse at 82% 0%, rgba(255,255,255,0.12), transparent 30%),
    #030305;
}

.site-header {
  background: rgba(3,3,5,0.82);
  border-bottom-color: rgba(237,28,46,0.24);
  box-shadow: 0 18px 60px rgba(0,0,0,0.34), inset 0 -1px 0 rgba(255,255,255,0.035);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--fulmor-red), transparent);
  opacity: 0;
  transform: scaleX(0.62);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover {
  color: #fff;
  text-shadow: 0 0 20px rgba(237,28,46,0.34);
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button-light {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), transparent 38%),
    linear-gradient(135deg, var(--fulmor-red-hot), var(--fulmor-red) 48%, var(--fulmor-red-deep));
  box-shadow:
    0 18px 46px rgba(237,28,46,0.32),
    inset 0 1px 0 rgba(255,255,255,0.28);
}

.button-ghost {
  color: #fff;
  border-color: rgba(237,28,46,0.44);
  background: rgba(237,28,46,0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero,
.finale {
  background:
    radial-gradient(ellipse at 70% 36%, rgba(255,255,255,0.2), transparent 28%),
    radial-gradient(ellipse at 74% 61%, rgba(237,28,46,0.18), transparent 34%),
    radial-gradient(ellipse at 18% 72%, rgba(237,28,46,0.08), transparent 30%),
    linear-gradient(145deg, #040405 0%, #151215 50%, #050506 100%);
}

.hero .ocean-canvas,
.finale .ocean-canvas {
  opacity: 0.34;
  filter: saturate(0.95) contrast(1.08);
}

.hero::before,
.finale::before {
  background:
    radial-gradient(ellipse at 69% 46%, rgba(255,255,255,0.17), transparent 28%),
    radial-gradient(ellipse at 72% 64%, rgba(237,28,46,0.16), transparent 38%),
    linear-gradient(115deg, transparent 0 35%, rgba(237,28,46,0.055) 43%, rgba(255,255,255,0.03) 49%, transparent 58%);
  opacity: 0.76;
}

.hero::after,
.finale::after {
  background:
    linear-gradient(104deg, transparent 0%, rgba(255,255,255,0.045) 34%, rgba(237,28,46,0.18) 52%, transparent 70%),
    radial-gradient(ellipse at 48% 56%, rgba(237,28,46,0.14), transparent 44%);
  opacity: 0.56;
}

.aurora,
.hero-cinema span:nth-child(1),
.finale-atmosphere span {
  opacity: 0.32;
}

.hero-cinema span:nth-child(1) {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.34), rgba(237,28,46,0.62), transparent);
}

.hero h1,
.finale-copy h2 {
  background: linear-gradient(106deg, #fff 0%, #fff 38%, #ffd8dd 52%, #ed1c2e 58%, #f7f8f9 74%, #8f969d 100%);
  background-size: 245% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p,
.finale-copy p {
  color: rgba(245,247,248,0.74);
}

.eyebrow,
.eyebrow.red {
  color: rgba(255,255,255,0.58);
}

.hero-stage::before,
.finale-product::before {
  background:
    radial-gradient(ellipse at 50% 37%, rgba(255,255,255,0.7), rgba(238,242,245,0.25) 26%, rgba(237,28,46,0.14) 54%, transparent 76%),
    linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  box-shadow:
    0 0 82px rgba(255,255,255,0.11),
    0 0 112px rgba(237,28,46,0.15),
    0 64px 170px rgba(0,0,0,0.62);
}

.hero-stage::after {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.58), rgba(237,28,46,0.76), transparent);
  box-shadow: 0 0 34px rgba(237,28,46,0.36);
  opacity: 0.36;
}

.orbit {
  background: conic-gradient(from 18deg, transparent 0 14%, rgba(255,255,255,0.34) 17%, rgba(237,28,46,0.5) 22%, transparent 32% 60%, rgba(237,28,46,0.2) 68%, transparent 80% 100%);
  filter: drop-shadow(0 0 24px rgba(237,28,46,0.2));
  opacity: 0.48;
}

.orbit-b {
  background: conic-gradient(from 210deg, transparent 0 18%, rgba(255,255,255,0.2) 22%, transparent 31% 62%, rgba(237,28,46,0.32) 70%, transparent 82% 100%);
  opacity: 0.34;
}

.hero-product,
.finale-product img {
  filter:
    contrast(1.06)
    brightness(1)
    saturate(0.86)
    drop-shadow(0 58px 82px rgba(0,0,0,0.62))
    drop-shadow(0 0 24px rgba(255,255,255,0.12))
    drop-shadow(0 0 58px rgba(237,28,46,0.14));
}

.hero-reflection,
.finale-plinth {
  background: radial-gradient(ellipse, rgba(255,255,255,0.46), rgba(237,28,46,0.28) 34%, rgba(0,0,0,0.24) 64%, transparent 82%);
  box-shadow: 0 0 34px rgba(237,28,46,0.18);
}

.hero-plinth {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.52), rgba(237,28,46,0.62), rgba(255,255,255,0.24), transparent);
  box-shadow: 0 0 22px rgba(255,255,255,0.16), 0 0 54px rgba(237,28,46,0.32);
}

.spec-rail {
  border-color: rgba(237,28,46,0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
    radial-gradient(ellipse at 12% 50%, rgba(237,28,46,0.12), transparent 32%);
}

.spec-rail div {
  border-left-color: rgba(237,28,46,0.18);
}

.spec-rail div::after {
  background: var(--fulmor-red);
  box-shadow: 0 0 18px rgba(237,28,46,0.58);
}

.spec-rail span {
  color: rgba(255,255,255,0.48);
}

.scene-white,
.moments {
  background:
    radial-gradient(ellipse at 82% 8%, rgba(237,28,46,0.07), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f6 100%);
}

.scene-silver {
  background:
    radial-gradient(ellipse at 72% 12%, rgba(255,255,255,0.82), transparent 30%),
    radial-gradient(ellipse at 18% 78%, rgba(237,28,46,0.055), transparent 28%),
    linear-gradient(180deg, #f8f9fa 0%, #e3e6e9 100%);
}

.tech-visual,
.moment-feature {
  border-color: rgba(237,28,46,0.1);
}

.moment-choice:hover,
.moment-choice.active,
.moment-choice:focus-visible {
  background: linear-gradient(90deg, rgba(237,28,46,0.075), rgba(255,255,255,0));
}

.finale-price {
  color: #fff;
  text-shadow: 0 20px 58px rgba(237,28,46,0.24);
}

.finale-ring {
  background: conic-gradient(from 40deg, transparent 0 25%, rgba(255,255,255,0.28), rgba(237,28,46,0.34), transparent 44% 72%, rgba(237,28,46,0.14), transparent 88% 100%);
  filter: drop-shadow(0 0 28px rgba(237,28,46,0.18));
}

@media (max-width: 700px) {
  .hero,
  .finale {
    background:
      radial-gradient(ellipse at 50% 18%, rgba(255,255,255,0.18), transparent 30%),
      radial-gradient(ellipse at 58% 48%, rgba(237,28,46,0.16), transparent 36%),
      linear-gradient(180deg, #030304 0%, #151114 54%, #050506 100%);
  }

  .hero h1,
  .finale-copy h2 {
    background: linear-gradient(106deg, #fff 0%, #fff 58%, #ffd0d7 72%, #ed1c2e 92%);
    background-size: 160% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
