:root,
[data-theme="dark"] {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --ink: #f4f0ea;
  --muted: #a39b92;
  --fire: #ff6a00;
  --fire-2: #ff3b00;
  --gold: #e59d3d;
  --chrome: #d8d8d8;
  --line: rgba(255, 255, 255, 0.08);
  --nav-bg: rgba(5, 5, 5, 0.78);
  --nav-mobile: rgba(5, 5, 5, 0.96);
  --surface: rgba(255, 255, 255, 0.03);
  --hero-grad: linear-gradient(180deg, #050505 0%, #0a0705 55%, #050505 100%);
  --hero-glow-a: rgba(255, 80, 0, 0.12);
  --hero-glow-b: rgba(255, 50, 0, 0.06);
  --hero-fade: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.72) 28%);
  --brand-grad: linear-gradient(180deg, #ffffff 10%, #b8b8b8 45%, #7a7a7a 100%);
  --ghost-border: rgba(255, 255, 255, 0.22);
  --can-shadow: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.45));
  --ember-opacity: 0.55;
  --noise-opacity: 0.04;
  --catalog-bg: #0e0e0e;
  --catalog-ink: #f4f0ea;
  --catalog-muted: #a39b92;
  --catalog-panel: #1a1a1a;
  --catalog-bar: #2a2a2a;
  --pill-bar: #111;
  --case-arc: #c87a28;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 72px;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f3f3f3;
  --bg-2: #ffffff;
  --ink: #141414;
  --muted: #5a5a5a;
  --fire: #e85d00;
  --fire-2: #d94300;
  --gold: #e59d3d;
  --chrome: #4a4a4a;
  --line: rgba(20, 20, 20, 0.1);
  --nav-bg: rgba(255, 255, 255, 0.9);
  --nav-mobile: rgba(255, 255, 255, 0.98);
  --surface: rgba(20, 20, 20, 0.04);
  --hero-grad: linear-gradient(180deg, #f7f7f7 0%, #f0f0f0 55%, #ebebeb 100%);
  --hero-glow-a: rgba(0, 0, 0, 0.03);
  --hero-glow-b: rgba(0, 0, 0, 0.02);
  --hero-fade: linear-gradient(180deg, transparent, rgba(243, 243, 243, 0.92) 28%);
  --brand-grad: linear-gradient(180deg, #1a1a1a 10%, #3d3d3d 50%, #6a6a6a 100%);
  --ghost-border: rgba(20, 20, 20, 0.2);
  --can-shadow: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.22)) drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
  --ember-opacity: 0.12;
  --noise-opacity: 0.015;
  --catalog-bg: #ffffff;
  --catalog-ink: #1a1a1a;
  --catalog-muted: #555;
  --catalog-panel: #ececec;
  --catalog-bar: #e6e6e6;
  --pill-bar: #111;
  --case-arc: #d6923e;
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.35s ease, color 0.35s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; letter-spacing: -0.015em; }
p { margin: 0; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: var(--noise-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.embers { pointer-events: none; position: fixed; inset: 0; z-index: 1; overflow: hidden; }
.ember {
  position: absolute; bottom: -10px; width: 3px; height: 3px; border-radius: 50%;
  background: var(--fire); box-shadow: 0 0 10px var(--fire);
  animation: rise linear infinite; opacity: var(--ember-opacity);
}
@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  15% { opacity: 0.7; }
  100% { transform: translateY(-110vh) scale(0.4); opacity: 0; }
}

/* Nav — corporate bar */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0;
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}
.nav__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 0;
}
.nav__brand img {
  width: 34px; height: auto;
  filter: none;
}
.nav__brand-text {
  display: grid;
  gap: 0.1rem;
  line-height: 1.1;
}
.nav__brand-text strong {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1rem;
}
.nav__brand-text em {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 18ch;
}
.nav__links {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.35rem, 1.5vw, 0.55rem);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.nav__links a {
  opacity: 0.72;
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  transition: opacity 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.nav__links a:hover {
  opacity: 1;
  color: var(--ink);
  background: var(--surface);
}
.nav__cta {
  margin-left: 0.35rem;
  padding: 0.6rem 1.15rem !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-2) 100%) !important;
  color: #140800 !important;
  opacity: 1 !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 18px rgba(255, 80, 0, 0.28);
}
.nav__cta:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff4a00 100%) !important;
  box-shadow: 0 8px 22px rgba(255, 80, 0, 0.38);
  color: #140800 !important;
}
.nav__actions {
  display: flex; align-items: center; gap: 0.45rem; z-index: 2;
  padding-left: 0.85rem;
  border-left: 1px solid var(--line);
}
@media (max-width: 720px) {
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__brand-text em { display: none; }
  .nav__actions { border-left: 0; padding-left: 0; margin-left: 0; }
}
.nav__toggle {
  display: none; width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer;
}
.nav__toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--ink); margin: 5px auto;
  transition: transform 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

.theme-toggle {
  width: 38px; height: 38px; border: 1px solid var(--line);
  background: transparent; border-radius: 8px; cursor: pointer;
  position: relative; display: grid; place-items: center;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.theme-toggle:hover {
  border-color: rgba(255, 106, 0, 0.45);
  background: var(--surface);
  box-shadow: none;
}
.theme-toggle__sun, .theme-toggle__moon {
  position: absolute; width: 16px; height: 16px;
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.theme-toggle__sun {
  border-radius: 50%; background: var(--fire); box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.2);
}
.theme-toggle__moon {
  border-radius: 50%; background: transparent; box-shadow: inset -3px -2px 0 0 var(--ink);
}
[data-theme="dark"] .theme-toggle__sun { opacity: 0; transform: scale(0.6) rotate(-40deg); }
[data-theme="dark"] .theme-toggle__moon { opacity: 1; transform: scale(1); }
[data-theme="light"] .theme-toggle__sun { opacity: 1; transform: scale(1); }
[data-theme="light"] .theme-toggle__moon { opacity: 0; transform: scale(0.6) rotate(40deg); }
[data-theme="light"] .embers { opacity: 0.45; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.85rem 1.5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
  border: 0; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--fire {
  background: linear-gradient(135deg, var(--fire) 0%, var(--fire-2) 100%);
  color: #140800; box-shadow: 0 10px 40px rgba(255, 70, 0, 0.35);
}
.btn--ghost {
  background: transparent; color: var(--ink); border: 1px solid var(--ghost-border);
}
.btn--ghost:hover { border-color: rgba(255, 106, 0, 0.7); box-shadow: 0 0 28px rgba(255, 106, 0, 0.18); }

/* Hero */
.hero {
  position: relative; min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(320px, 1.25fr);
  align-items: center;
  gap: clamp(0.4rem, 1.5vw, 1.2rem);
  padding: calc(var(--nav-h) + 1.2rem) clamp(1.2rem, 4vw, 3rem) 3.5rem;
  isolation: isolate; overflow: visible;
  --hero-accent: rgba(255, 106, 0, 0.32);
  background:
    radial-gradient(ellipse 80% 55% at 70% 35%, var(--hero-glow-a), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, var(--hero-glow-b), transparent 55%),
    var(--hero-grad);
  transition: background 0.55s ease, --hero-accent 0.55s ease;
}
.hero[data-flavor="classic"] {
  --hero-glow-a: rgba(255, 90, 0, 0.1);
  --hero-glow-b: rgba(255, 60, 0, 0.04);
  --hero-accent: rgba(255, 106, 0, 0.16);
}
.hero[data-flavor="zero"] {
  --hero-glow-a: rgba(70, 160, 220, 0.09);
  --hero-glow-b: rgba(40, 110, 180, 0.04);
  --hero-accent: rgba(80, 170, 230, 0.14);
}
.hero[data-flavor="peach"] {
  --hero-glow-a: rgba(255, 170, 60, 0.09);
  --hero-glow-b: rgba(255, 120, 40, 0.04);
  --hero-accent: rgba(255, 160, 50, 0.14);
}
.hero[data-flavor="mojito"] {
  --hero-glow-a: rgba(60, 220, 110, 0.22);
  --hero-glow-b: rgba(160, 255, 80, 0.1);
  --hero-accent: rgba(90, 255, 140, 0.28);
}
/* Light mode: keep hero stable — no flavor color wash */
[data-theme="light"] .hero[data-flavor] {
  --hero-glow-a: rgba(0, 0, 0, 0.03);
  --hero-glow-b: rgba(0, 0, 0, 0.02);
  --hero-accent: rgba(0, 0, 0, 0.06);
  --hero-grad: linear-gradient(180deg, #f7f7f7 0%, #f0f0f0 55%, #ebebeb 100%);
}
[data-theme="light"] .hero__glow {
  opacity: 0.25;
  animation: none;
}
[data-theme="light"] .embers {
  opacity: 0.08;
}
.hero__glow {
  position: absolute; inset: 10% 5% auto auto;
  width: min(70vw, 720px); height: min(70vw, 720px); border-radius: 50%;
  background: radial-gradient(circle, var(--hero-accent), transparent 68%);
  filter: blur(40px); animation: pulse 5.5s ease-in-out infinite; z-index: 0;
  pointer-events: none;
  transition: background 0.55s ease;
}
@keyframes pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.08); }
}
.hero__media {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: flex-start;
  order: 2;
  min-width: 0;
  overflow: visible;
  margin-left: 0;
}
.hero__stage {
  position: absolute;
  inset: 4% 0 8%;
  pointer-events: none;
  z-index: 0;
}
.hero__ring {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(92%, 520px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.28);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.14), transparent 62%);
  box-shadow: inset 0 0 60px rgba(255, 80, 0, 0.06);
}
.hero__mist {
  position: absolute;
  inset: 18% 8% 28%;
  background:
    radial-gradient(ellipse 60% 40% at 50% 70%, rgba(255, 255, 255, 0.05), transparent 70%);
  filter: blur(18px);
  opacity: 0.7;
}
.hero__floor {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 6%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45), transparent 70%);
  filter: blur(10px);
}
.hero__specs {
  list-style: none;
  margin: 0.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
}
.hero__specs li {
  margin: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
[data-theme="light"] .hero__specs li {
  color: rgba(20, 20, 20, 0.7);
  border-color: rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
}
[data-theme="light"] .hero__ring {
  border-color: rgba(255, 106, 0, 0.22);
  background: radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.08), transparent 62%);
}
[data-theme="light"] .hero__floor {
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.12), transparent 70%);
}
.hero__copy {
  order: 1;
  z-index: 2;
}

.hero__media .can-carousel {
  width: 100%;
  max-width: 1100px;
  margin: 0;
  display: grid;
  justify-items: start;
  gap: 0.65rem;
  animation: logoIn 1.2s var(--ease) both;
  overflow: visible;
  pointer-events: auto;
  transform: none;
  position: relative;
  z-index: 1;
}
.can-track {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: clamp(1.2rem, 3.5vw, 2.8rem);
  width: 100%;
  min-height: min(52vh, 440px);
  padding: 1rem 0 0.5rem;
  overflow: visible;
  transform: none;
}
.can-slide {
  flex: 0 0 auto;
  width: min(18vw, 160px);
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  cursor: pointer;
  background: none;
  border: 0;
  overflow: visible;
  position: relative;
  isolation: isolate;
  opacity: var(--can-o, 0);
  transform: translate3d(0, var(--can-y, -120px), 0) scale(var(--can-s, 0.92));
  transform-origin: 50% 80%;
  filter: none;
  z-index: 1;
  pointer-events: none;
  transition: none;
  will-change: transform, opacity;
}
.can-slide.is-ready {
  pointer-events: auto;
}
@media (hover: none), (pointer: coarse) {
  .hero:not(.is-focused) .can-slide {
    pointer-events: auto;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
}
.can-slide img {
  width: 100%;
  height: auto;
  max-height: none;
  display: block;
  object-fit: contain;
  background: none !important;
  background-color: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  mix-blend-mode: normal;
  filter: var(--can-shadow);
  animation: none;
  transform: none;
  transform-origin: 50% 80%;
  transition: transform 0.35s var(--ease), filter 0.55s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.can-slide,
.can-track,
.can-carousel,
.hero__media {
  background: transparent !important;
  background-color: transparent !important;
}
.can-slide span {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.35s ease, color 0.35s ease;
}
.can-slide.is-ready span { opacity: 0.55; }
.can-slide.is-ready.is-active {
  z-index: 1;
}
.hero:not(.is-focused) .can-slide.is-ready:hover span {
  opacity: 1;
  font-weight: 600;
}

/* Hero can focus — same full scene as .ph */
.hero {
  --ph-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ph-accent: #ff6a00;
  --ph-accent-2: #ff3b00;
  --ph-glow: rgba(255, 106, 0, 0.4);
  --ph-deep: #1a0c04;
  --hero-can-glow: var(--ph-glow);
}
.hero[data-flavor="classic"] {
  --ph-accent: #ff6a00;
  --ph-accent-2: #ff3b00;
  --ph-glow: rgba(255, 106, 0, 0.36);
  --ph-deep: #140804;
  --hero-can-glow: rgba(255, 106, 0, 0.45);
}
.hero[data-flavor="zero"] {
  --ph-accent: #00cfff;
  --ph-accent-2: #3db4ff;
  --ph-glow: rgba(0, 207, 255, 0.32);
  --ph-deep: #040b14;
  --hero-can-glow: rgba(0, 207, 255, 0.4);
}
.hero[data-flavor="peach"] {
  --ph-accent: #e07a3a;
  --ph-accent-2: #d4924a;
  --ph-glow: rgba(200, 110, 55, 0.28);
  --ph-deep: #140a06;
  --hero-can-glow: rgba(200, 110, 55, 0.3);
}
.hero[data-flavor="mojito"] {
  --ph-accent: #3aa86a;
  --ph-accent-2: #7fbf4a;
  --ph-glow: rgba(70, 160, 90, 0.28);
  --ph-deep: #06140a;
  --hero-can-glow: rgba(70, 160, 90, 0.3);
}
.hero__atmosphere {
  z-index: 0;
  opacity: 0;
  transition: opacity 0.55s var(--ph-ease);
}
.hero.is-focused .hero__atmosphere { opacity: 1; }
.hero.is-focused .hero__glow { opacity: 0; }
.hero.is-focused .hero__scroll { opacity: 0; pointer-events: none; }
.hero.is-focused {
  overflow: hidden;
  grid-template-columns: 1fr;
  place-items: center;
}
.hero.is-focused .hero__copy {
  position: absolute;
  inset: auto;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s var(--ease);
}
.hero__copy { transition: opacity 0.45s var(--ease), visibility 0.45s; }
.hero.is-focused .hero__media {
  position: absolute;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  margin: 0;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
}
.hero.is-focused .can-carousel {
  width: min(1100px, 96%);
  max-width: none;
  justify-items: center;
  pointer-events: auto;
}
.hero.is-focused .can-track {
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: min(68vh, 560px);
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}
.hero.is-focused .can-slide.is-ready {
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease,
    width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.is-focused .can-slide.is-ready:not(.is-active) {
  opacity: 0.22;
  transform: translate3d(0, 28px, 0) scale(0.78);
  filter: blur(1.5px);
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    filter 0.22s ease,
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero.is-focused .can-slide.is-ready:not(.is-active):hover {
  z-index: 60;
  opacity: 0.55;
  filter: blur(0.4px);
  transform: translate3d(0, 18px, 0) scale(0.86);
}
.hero.is-focused .can-slide.is-ready:not(.is-active) span {
  opacity: 0.35;
}
.hero.is-focused .can-slide.is-ready.is-active {
  z-index: 50;
  width: min(20vw, 170px);
  opacity: 1 !important;
  isolation: isolate;
  mix-blend-mode: normal;
  transform:
    translate3d(var(--hero-dx, 0px), var(--hero-dy, 0px), 0)
    scale(1.12)
    rotate(var(--hero-rot, -8deg));
  filter: none;
  pointer-events: auto;
  outline: none;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    filter 0.2s ease,
    width 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.can-slide:focus,
.can-slide:focus-visible {
  outline: none;
}
.hero.is-focused .can-slide.is-ready.is-active img {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.hero.is-focused .can-slide.is-ready.is-active span {
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .hero:not(.is-focused) .can-slide.is-ready:hover {
    z-index: 3;
    cursor: pointer;
  }
  .hero:not(.is-focused) .can-slide.is-ready:hover span { opacity: 1; font-weight: 600; }
  .hero:not(.is-focused) .can-slide.is-ready:hover img {
    transform: translateY(-8px) scale(1.08);
    filter: var(--can-shadow);
  }
}
[data-theme="light"] .hero:not(.is-focused) .can-slide.is-ready:hover img {
  transform: translateY(-6px) scale(1.06);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}
[data-theme="light"] .can-slide img,
[data-theme="light"] .ph__can img,
[data-theme="light"] .why__can {
  mix-blend-mode: normal !important;
  isolation: isolate;
  opacity: 1 !important;
}
.can-carousel__controls {
  display: none !important;
}
.can-nav {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--ghost-border);
  background: var(--surface); color: var(--ink);
  font-size: 1.6rem; line-height: 1; cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.can-nav:hover {
  border-color: rgba(255,106,0,0.6);
  box-shadow: 0 0 24px rgba(255,106,0,0.2);
  transform: scale(1.05);
}
.can-dots { display: flex; gap: 0.45rem; }
.can-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0;
  background: var(--muted); opacity: 0.45; cursor: pointer;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}
.can-dots button.is-active {
  background: var(--fire); opacity: 1; transform: scale(1.35);
}
@keyframes logoIn {
  from { opacity: 0; transform: translateY(28px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero__copy {
  position: relative; z-index: 2; max-width: 34rem;
  display: grid; gap: 1.15rem; align-content: center;
}
.hero__brand {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  animation: none;
  margin: 0;
}
.hero__copy h1 {
  max-width: 12ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--ink);
}
.hero__lead {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.65;
  max-width: 36ch;
  font-weight: 400;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.4rem; }
.hero__scroll {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 3;
  grid-column: 1 / -1;
  width: 24px; height: 38px; border: 1px solid var(--ghost-border); border-radius: 20px;
  display: grid; place-items: start center; padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px; border-radius: 4px; background: var(--fire);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* Sections */
.section {
  position: relative; z-index: 2;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.2rem, 4vw, 3rem);
}
.section__head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); display: grid; gap: 0.75rem; }
.eyebrow {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--fire); margin: 0;
}
.section__sub { color: var(--muted); font-size: 1.05rem; max-width: 40ch; }
.orange-sub {
  color: var(--gold); font-weight: 700; font-size: 1.05rem; margin: 0.2rem 0 1.2rem;
}

/* Catalog light panels — follow brochure look in both themes */
.catalog-light {
  background: var(--catalog-bg);
  color: var(--catalog-ink);
}
.catalog-light .section__sub,
.catalog-light .flavor__desc,
.catalog-light .feat p,
.catalog-light .why__story > p,
.catalog-light .case__col p,
.catalog-light .case__head > p {
  color: var(--catalog-muted);
}

/* Claw pattern */
.claw {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.08;
  background:
    repeating-linear-gradient(-32deg, transparent, transparent 16px, currentColor 16px, currentColor 18px),
    repeating-linear-gradient(38deg, transparent, transparent 26px, currentColor 26px, currentColor 27px);
  color: #9a9a9a;
}

/* Catalog showcase — transparent cans, no brown scene */
.showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, var(--vitrin-glow, transparent), transparent 70%),
    var(--vitrin-bg, var(--bg));
  color: var(--ink);
  padding: 2.5rem clamp(1rem, 3vw, 2rem) 2.8rem;
  box-shadow: none;
  transition: background 0.55s ease, color 0.4s ease;
}
.showcase[data-flavor="peach"] {
  --vitrin-glow: rgba(255, 160, 40, 0.38);
  --vitrin-bg: linear-gradient(180deg, #1a1004 0%, #2a1606 50%, #0e0904 100%);
  color: #fff;
}
.showcase[data-flavor="classic"] {
  --vitrin-glow: rgba(255, 70, 20, 0.4);
  --vitrin-bg: linear-gradient(180deg, #1a0804 0%, #2a0c06 50%, #100504 100%);
  color: #fff;
}
.showcase[data-flavor="zero"] {
  --vitrin-glow: rgba(60, 170, 230, 0.36);
  --vitrin-bg: linear-gradient(180deg, #041018 0%, #0a1a28 50%, #040a12 100%);
  color: #fff;
}
.showcase[data-flavor="mojito"] {
  --vitrin-glow: rgba(70, 210, 90, 0.34);
  --vitrin-bg: linear-gradient(180deg, #041208 0%, #0a1c10 50%, #040e08 100%);
  color: #fff;
}
[data-theme="light"] .showcase[data-flavor="peach"],
[data-theme="light"] .showcase[data-flavor="classic"],
[data-theme="light"] .showcase[data-flavor="zero"],
[data-theme="light"] .showcase[data-flavor="mojito"] {
  --vitrin-glow: rgba(0, 0, 0, 0.04);
  --vitrin-bg: #f3f3f3;
  color: var(--ink);
}
.vitrin {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.vitrin__mark {
  position: absolute;
  top: 0;
  right: clamp(0rem, 1vw, 0.5rem);
  width: clamp(88px, 12vw, 128px);
  height: auto;
  z-index: 5;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.15));
}
.vitrin__board {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0.4rem;
  overflow: visible;
  background: transparent;
}
.vitrin__cans {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1.1rem, 3.5vw, 2.4rem);
  min-height: min(62vh, 520px);
  padding: 1rem 0 0.5rem;
  pointer-events: auto;
  overflow: visible;
}
.vitrin__cans > img {
  height: min(58vh, 480px);
  width: auto;
  max-width: 24%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.22));
  background: transparent !important;
  opacity: var(--can-o, 0);
  transform: translate3d(0, calc(var(--can-y, 140px) + var(--can-base, 0px)), 0) scale(var(--can-s, 0.94));
  will-change: transform, opacity;
  cursor: pointer;
  transition: filter 0.35s ease;
}
.vitrin__cans > img:nth-child(1) { --can-base: 56px; }
.vitrin__cans > img:nth-child(2) { --can-base: 28px; }
.vitrin__cans > img:nth-child(3) { --can-base: 10px; }
.vitrin__cans > img:nth-child(4) { --can-base: -8px; }
@media (hover: hover) and (pointer: fine) {
  .vitrin__cans > img:hover {
    filter: drop-shadow(0 22px 36px rgba(255, 106, 0, 0.35)) drop-shadow(0 12px 18px rgba(0,0,0,0.3));
    z-index: 2;
  }
}
.vitrin__contact {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2rem;
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  color: var(--ink);
}
.vitrin__contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 34ch;
}
.vitrin__contact a { color: inherit; }
.vitrin__contact a:hover { color: var(--fire); }
.vitrin__ico {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: inline-grid;
  place-items: center;
  margin-top: 0.05rem;
}

/* Why section — clean corporate */
.why {
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
}
.why__wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(260px, 0.95fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 1;
}
.why__head { margin-bottom: 2rem; }
.why__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fire);
}
.why__head h2 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  color: var(--ink);
  line-height: 1.15;
}
.why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.feat {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  margin: 0;
  transition: background 0.25s ease;
}
.feat:last-child { border-bottom: 1px solid var(--line); }
.feat__num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--fire);
  line-height: 1.2;
  padding-top: 0.1rem;
}
.feat h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
}
.feat p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 40ch;
}
@media (hover: hover) and (pointer: fine) {
  .feat:hover { background: var(--surface); }
  .feat:hover .feat__num { color: var(--fire-2); }
}

.why__story {
  display: grid;
  place-items: center;
  align-self: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  position: relative;
  min-height: 420px;
}
.why__stage {
  position: relative;
  margin: 0;
  width: min(100%, 440px);
  aspect-ratio: 5 / 5.2;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
}
.why__ring {
  position: absolute;
  inset: 8% 6%;
  border-radius: 50%;
  border: 1px solid rgba(255, 106, 0, 0.3);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.16), transparent 62%),
    radial-gradient(circle at 50% 70%, rgba(0,0,0,0.06), transparent 55%);
  z-index: 0;
  animation: whyPulse 5s ease-in-out infinite;
}
.why__beam {
  position: absolute;
  top: 4%;
  left: 50%;
  width: 2px;
  height: 28%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 106, 0, 0.5), transparent);
  z-index: 0;
  opacity: 0.7;
}
.why__floor {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.18), transparent 70%);
  filter: blur(6px);
  z-index: 1;
}
.why__cans {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 10% 0 12%;
  min-height: 280px;
}
.why__can {
  position: relative;
  height: auto;
  object-fit: contain;
  background: transparent !important;
  flex: 0 0 auto;
  transition: transform 0.55s var(--ease), filter 0.55s ease;
  transform-origin: 50% 100%;
}
/* Simetrik: Peach | Classic | Zero — Mojito arkada */
.why__can--back {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: min(34%, 120px);
  transform: translateX(-50%) translateY(-18px) scale(0.92);
  filter: drop-shadow(0 10px 14px rgba(0,0,0,0.2));
  opacity: 0.55;
  z-index: 1;
  pointer-events: none;
}
.why__can--a {
  width: min(32%, 112px);
  margin-right: -36px;
  transform: rotate(-11deg) translateY(6px);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.24));
  opacity: 0.9;
  z-index: 2;
}
.why__can--c {
  width: min(44%, 164px);
  margin: 0;
  transform: rotate(0deg) translateY(0);
  filter: drop-shadow(0 22px 28px rgba(0,0,0,0.3));
  opacity: 1;
  z-index: 4;
  animation: whyFloat 4.8s ease-in-out infinite;
}
.why__can--d {
  width: min(32%, 112px);
  margin-left: -36px;
  transform: rotate(11deg) translateY(6px);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.24));
  opacity: 0.9;
  z-index: 2;
}
.why__spark {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 10px var(--fire);
  z-index: 4;
  opacity: 0.75;
  animation: whySpark 3.2s ease-in-out infinite;
}
.why__spark--a { top: 22%; left: 28%; animation-delay: 0s; }
.why__spark--b { top: 36%; right: 24%; animation-delay: 0.8s; width: 4px; height: 4px; }
.why__spark--c { bottom: 34%; left: 22%; animation-delay: 1.4s; width: 3px; height: 3px; }

@keyframes whyFloat {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(0deg) translateY(-10px); }
}
@keyframes whyPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.03); opacity: 0.85; }
}
@keyframes whySpark {
  0%, 100% { opacity: 0.25; transform: translateY(0) scale(0.8); }
  50% { opacity: 0.9; transform: translateY(-8px) scale(1.15); }
}

@media (hover: hover) and (pointer: fine) {
  .why__stage:hover .why__can--c {
    transform: rotate(0deg) translateY(-14px) scale(1.04);
    filter: drop-shadow(0 28px 40px rgba(255, 106, 0, 0.28)) drop-shadow(0 18px 24px rgba(0,0,0,0.25));
  }
  .why__stage:hover .why__can--a {
    transform: rotate(-14deg) translateY(0) translateX(-6px);
    opacity: 1;
  }
  .why__stage:hover .why__can--d {
    transform: rotate(14deg) translateY(0) translateX(6px);
    opacity: 1;
  }
  .why__stage:hover .why__can--back {
    opacity: 0.7;
    transform: translateX(-50%) translateY(-24px) scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why__can--c, .why__ring, .why__spark { animation: none !important; }
}

html[dir="rtl"] .why__head,
html[dir="rtl"] .why__features,
html[dir="rtl"] .feat p {
  text-align: right;
}
html[dir="rtl"] .why__wrap { direction: rtl; }


/* ========== Premium product hero ========== */
.ph {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 1rem) clamp(1rem, 3vw, 2.5rem) 2.5rem;
  background: var(--bg);
  color: var(--ink);
  --ph-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ph-accent: #ff6a00;
  --ph-accent-2: #ff3b00;
  --ph-glow: rgba(255, 106, 0, 0.35);
  --ph-deep: #120804;
}
.ph__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ph__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, var(--ph-glow), transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,255,255,0.04), transparent 60%),
    linear-gradient(160deg, var(--ph-deep) 0%, #050505 55%, #0a0a0a 100%);
  opacity: 0;
  transition: opacity 0.65s var(--ph-ease), background 0.65s var(--ph-ease);
}
.ph.is-focused .ph__wash,
.hero.is-focused .ph__wash { opacity: 1; }
[data-theme="light"] .ph__wash {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, var(--ph-glow), transparent 70%),
    linear-gradient(160deg, #f7f7f7 0%, #efefef 50%, #e8e8e8 100%);
}
.ph__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.7s var(--ph-ease), transform 0.7s var(--ph-ease);
}
.ph__orb--a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  left: 8%;
  top: 12%;
  background: var(--ph-accent);
}
.ph__orb--b {
  width: min(45vw, 380px);
  height: min(45vw, 380px);
  right: 5%;
  bottom: 10%;
  background: var(--ph-accent-2);
}
.ph.is-focused .ph__orb,
.hero.is-focused .ph__orb { opacity: 0.14; }
.ph.is-focused .ph__orb--a,
.hero.is-focused .ph__orb--a { transform: translate(-4%, 6%); }
.ph.is-focused .ph__orb--b,
.hero.is-focused .ph__orb--b { transform: translate(6%, -4%); }
.ph__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ph__layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ph__layer--back { z-index: 1; }
.ph__layer--mid { z-index: 2; }
.ph__layer--front { z-index: 3; }
.ph__bit {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}
.ph.is-focused .ph__bit,
.hero.is-focused .ph__bit {
  opacity: var(--bit-o, 0.85);
  animation: phFloat var(--bit-dur, 12s) ease-in-out var(--bit-delay, 0s) infinite;
}
.ph__bit--photo {
  display: block;
  line-height: 0;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
}
.ph__bit--photo img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ph__layer--back .ph__bit--photo {
  filter: blur(7px) drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}
.ph__layer--mid .ph__bit--photo {
  filter: blur(2.5px) drop-shadow(0 12px 18px rgba(0, 0, 0, 0.4));
}
.ph__layer--front .ph__bit--photo {
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}
.ph__layer--front .ph__bit--photo.ph__bit--front img {
  /* keep product-adjacent props sharp */
  filter: none;
}
.ph__bit--mist {
  width: 120px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(180, 220, 170, 0.16), transparent 70%);
  filter: blur(18px);
}
.ph__bit--mist-peach {
  background: radial-gradient(ellipse at center, rgba(230, 150, 90, 0.18), transparent 70%);
}
.ph__bit--mist-green {
  background: radial-gradient(ellipse at center, rgba(160, 210, 150, 0.15), transparent 70%);
}
/* legacy small bits for other flavors */
.ph__bit--ice {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: linear-gradient(135deg, rgba(255,255,255,0.55), rgba(200,220,235,0.25));
}
.ph__bit--drop {
  width: 5px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-accent);
  opacity: 0.35;
}
.ph__bit--splash { display: none; }
.ph__bit--lemon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #f0d24a, #c9a010 70%);
}
.ph__bit--lemon::after { display: none; }
.ph__bit--mint {
  width: 22px;
  height: 10px;
  border-radius: 40%;
  background: #2f9a52;
}
.ph__bit--peach {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e86a3c;
}
.ph__bit--spark {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}
@keyframes phFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--bit-s, 1));
  }
  50% {
    transform: translate3d(var(--bit-x, 8px), var(--bit-y, -10px), 0) rotate(var(--bit-r, 6deg)) scale(var(--bit-s, 1));
  }
}

.ph__watermark {
  display: none !important;
}

.ph__ui {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: min(280px, 28vw);
  opacity: 0;
  transform: translateY(-50%) translateX(0);
  pointer-events: none;
  transition: opacity 0.55s var(--ph-ease), transform 0.55s var(--ph-ease), filter 0.55s ease;
  filter: blur(6px);
}
.ph.is-focused .ph__ui,
.hero.is-focused .ph__ui {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
}
.ph__ui--left {
  left: clamp(1rem, 4vw, 3.5rem);
  transform: translateY(-50%) translateX(-24px);
}
.ph.is-focused .ph__ui--left,
.hero.is-focused .ph__ui--left { transform: translateY(-50%) translateX(0); }
.ph__ui--right {
  right: clamp(1rem, 4vw, 3.5rem);
  transform: translateY(-50%) translateX(24px);
  width: auto;
}
.ph.is-focused .ph__ui--right,
.hero.is-focused .ph__ui--right { transform: translateY(-50%) translateX(0); }
.ph__eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ph-accent);
}
.ph__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}
[data-theme="light"] .ph.is-focused .ph__title,
[data-theme="light"] .hero.is-focused .ph__title { color: #121212; }
.ph:not(.is-focused) .ph__title { color: var(--ink); }
.ph__sub {
  margin: 0.85rem 0 1.25rem;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.72);
  max-width: 24ch;
}
[data-theme="light"] .ph.is-focused .ph__sub,
[data-theme="light"] .hero.is-focused .ph__sub { color: rgba(20,20,20,0.7); }
.ph__panel[hidden] { display: none !important; }
.ph__detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  margin-top: 0.15rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #140800;
  background: linear-gradient(135deg, var(--ph-accent, var(--fire)) 0%, var(--ph-accent-2, var(--fire-2)) 100%);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--ph-accent, var(--fire)) 35%, transparent);
  pointer-events: auto;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}
.ph__detail-btn:hover { transform: translateY(-1px); }
.ph__detail-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: none;
}
[data-theme="light"] .ph__detail-btn--ghost {
  color: #121212;
  border-color: rgba(0,0,0,0.2);
}
.ph__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: color-mix(in srgb, var(--ph-accent, var(--fire)) 22%, transparent);
  border: 1px solid color-mix(in srgb, var(--ph-accent, var(--fire)) 45%, transparent);
}
.ph__title--detail {
  font-size: clamp(1.55rem, 3.4vw, 2.4rem);
  max-width: 12ch;
}
.hero.is-detail .ph__panel--product { display: none; }
.hero.is-detail .ph__panel--detail { display: block; }
.ph.is-detail .ph__panel--product { display: none; }
.ph.is-detail .ph__panel--detail { display: block; }
.ph__feat-dots {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}
.ph__feat-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.04);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.ph__feat-dot:hover {
  border-color: color-mix(in srgb, var(--ph-accent, var(--fire)) 70%, #fff);
  transform: scale(1.05);
}
.ph__feat-dot.is-active {
  border-color: #fff;
  background: color-mix(in srgb, var(--ph-accent, var(--fire)) 28%, transparent);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.35), 0 0 22px color-mix(in srgb, var(--ph-accent, var(--fire)) 45%, transparent);
}
.ph__feat-dot__ico {
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.ph__feat-dot__ico--bolt {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2 4 14h7l-1 8 10-14h-7l1-6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2 4 14h7l-1 8 10-14h-7l1-6z'/%3E%3C/svg%3E");
}
.ph__feat-dot__ico--plus {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 5h2v6h6v2h-6v6h-2v-6H5v-2h6z'/%3E%3C/svg%3E");
}
.ph__feat-dot__ico--drop {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2s6 7.2 6 12a6 6 0 1 1-12 0c0-4.8 6-12 6-12z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2s6 7.2 6 12a6 6 0 1 1-12 0c0-4.8 6-12 6-12z'/%3E%3C/svg%3E");
}
.ph__feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: phfeat;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.ph__feats li {
  position: relative;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  background: none;
  border-left: 0;
  border-right: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.88);
  box-shadow: none;
}
.ph__feats li::before {
  content: counter(phfeat, decimal-leading-zero);
  counter-increment: phfeat;
  position: static;
  left: auto;
  top: auto;
  bottom: auto;
  width: auto;
  border-radius: 0;
  background: none;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ph-accent);
}
[data-theme="light"] .ph.is-focused .ph__feats,
[data-theme="light"] .hero.is-focused .ph__feats {
  border-top-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .ph.is-focused .ph__feats li,
[data-theme="light"] .hero.is-focused .ph__feats li {
  background: none;
  border-bottom-color: rgba(0,0,0,0.1);
  color: #1a1a1a;
}

.ph__rail {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(1.2rem, 3.5vw, 2.8rem);
  width: min(1100px, 96%);
  min-height: min(62vh, 520px);
  margin: 0 auto;
  isolation: isolate;
}
.ph__can {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  width: min(18vw, 160px);
  position: relative;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  transform-origin: 50% 80%;
  transition:
    transform 0.65s var(--ph-ease),
    opacity 0.55s var(--ph-ease),
    filter 0.55s ease;
  will-change: transform, opacity;
  z-index: 1;
}
.ph__can img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 22px 28px rgba(0,0,0,0.45));
  transition: filter 0.55s var(--ph-ease);
  user-select: none;
  -webkit-user-drag: none;
}
.ph__can span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.35s ease, color 0.35s ease;
}
.ph.is-focused .ph__can span { color: rgba(255,255,255,0.75); }
[data-theme="light"] .ph.is-focused .ph__can span { color: rgba(20,20,20,0.65); }
.ph__can:hover span,
.ph__can.is-active span { opacity: 1; }

.ph.is-focused .ph__can:not(.is-active) {
  opacity: 0.22;
  transform: scale(0.78) translateY(28px);
  filter: blur(1.5px);
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  transition:
    transform 0.28s var(--ph-ease),
    opacity 0.22s ease,
    filter 0.22s ease,
    width 0.28s var(--ph-ease);
}
.ph.is-focused .ph__can:not(.is-active):hover {
  z-index: 60;
  opacity: 0.55;
  filter: blur(0.4px);
  transform: scale(0.86) translateY(18px);
}
.ph.is-focused .ph__can.is-active {
  z-index: 50;
  width: min(20vw, 170px);
  opacity: 1 !important;
  isolation: isolate;
  mix-blend-mode: normal;
  transform:
    translate3d(var(--ph-dx, 0px), var(--ph-dy, 0px), 0)
    scale(1.12)
    rotate(var(--ph-rot, -8deg));
  filter: none;
  outline: none;
  pointer-events: auto;
  transition:
    transform 0.28s var(--ph-ease),
    opacity 0.2s ease,
    filter 0.2s ease,
    width 0.28s var(--ph-ease);
}
.ph__can:focus,
.ph__can:focus-visible {
  outline: none;
}
.ph.is-focused .ph__can.is-active img {
  position: relative;
  z-index: 2;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
  /* solid composite — no see-through */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.ph.is-focused .ph__can.is-active span {
  opacity: 0;
}

/* Themes */
.ph[data-flavor="classic"] {
  --ph-accent: #ff6a00;
  --ph-accent-2: #ff3b00;
  --ph-glow: rgba(255, 106, 0, 0.36);
  --ph-deep: #140804;
}

/* Energy Drink cinematic fire scene */
.ph[data-flavor="classic"].is-focused .ph__wash,
.hero[data-flavor="classic"].is-focused .ph__wash {
  background:
    radial-gradient(ellipse 54% 48% at 50% 58%, rgba(255, 90, 10, 0.32), transparent 68%),
    radial-gradient(ellipse 40% 34% at 30% 40%, rgba(180, 40, 0, 0.14), transparent 62%),
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(0, 0, 0, 0.58), transparent 55%),
    linear-gradient(165deg, #0a0402 0%, #1a0a04 42%, #080301 100%);
}
.ph[data-flavor="classic"].is-focused .ph__atmosphere::after,
.hero[data-flavor="classic"].is-focused .hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, transparent 38%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.34));
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.ph[data-flavor="classic"].is-focused .ph__orb,
.hero[data-flavor="classic"].is-focused .ph__orb {
  opacity: 0.18;
}
.ph[data-flavor="classic"].is-focused .ph__orb--a,
.hero[data-flavor="classic"].is-focused .ph__orb--a {
  background: #ff6a00;
  filter: blur(95px);
}
.ph[data-flavor="classic"].is-focused .ph__orb--b,
.hero[data-flavor="classic"].is-focused .ph__orb--b {
  background: #ff2a00;
  filter: blur(110px);
}
.ph[data-flavor="classic"].is-focused .ph__watermark,
.hero[data-flavor="classic"].is-focused .ph__watermark {
  opacity: 0.15;
  color: rgba(255, 160, 80, 0.85);
}
.ph[data-flavor="classic"].is-focused .ph__can.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(var(--ph-dx, 0px), var(--ph-dy, 0px), 0)
    scale(1.14)
    rotate(var(--ph-rot, -8deg));
  filter: none;
  animation: fireFloat 3.6s ease-in-out infinite;
}
.ph[data-flavor="classic"].is-focused .ph__can.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
  transition: filter 0.18s ease;
}
.hero[data-flavor="classic"].is-focused .can-slide.is-ready.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(var(--hero-dx, 0px), var(--hero-dy, 0px), 0)
    scale(1.14)
    rotate(var(--hero-rot, -8deg));
  animation: fireFloat 3.6s ease-in-out infinite;
}
.hero[data-flavor="classic"].is-focused .can-slide.is-ready.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
  transition: filter 0.18s ease;
}
.ph.has-fire.is-flicking .ph__can.is-active img,
.hero.has-fire.is-flicking .can-slide.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}
.ph.has-fire.is-flicking .ph__can.is-active::after,
.hero.has-fire.is-flicking .can-slide.is-active::after {
  opacity: 0.35;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 49%,
    transparent 60%
  );
  animation: none;
}
@keyframes fireFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -3px; }
}
@supports not (translate: 0) {
  @keyframes fireFloat {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -6px; }
  }
}

/* Canvas pressurized fire jet (flamethrower / dragon breath) */
.fire-jet {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}
.has-fire.is-fire-lit .fire-jet {
  opacity: 1;
}
.has-fire.is-fire-out .fire-jet,
.has-fire.is-fire-out .fire-heat,
.has-fire.is-fire-out .fire-ambient {
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}
.fire-jet--back {
  z-index: 1;
  filter: blur(6px) saturate(0.9);
}
.fire-jet--mid {
  z-index: 2;
  filter: blur(0.8px) contrast(1.05);
}
.fire-jet--front {
  z-index: 3;
  filter: contrast(1.08) saturate(0.95);
}
.fire-ambient {
  position: absolute;
  left: 8%;
  right: 35%;
  top: 22%;
  bottom: 18%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(
    ellipse 70% 55% at 85% 55%,
    rgba(255, 110, 25, 0.28),
    transparent 70%
  );
  mix-blend-mode: screen;
  transition: opacity 0.12s linear;
}
.fire-heat {
  position: absolute;
  left: 4%;
  right: 38%;
  top: 28%;
  bottom: 20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: rotate(12deg);
  transform-origin: 100% 55%;
  transition: opacity 0.35s ease;
}
.has-fire.is-fire-lit .fire-heat {
  opacity: 0.45;
}
.fire-heat__plate {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 50% at 90% 55%,
    rgba(255, 100, 20, 0.14),
    transparent 72%
  );
  mix-blend-mode: soft-light;
}
.ph.has-fire .ph__layer--mid,
.hero.has-fire .ph__layer--mid {
  z-index: 2;
}
.ph.has-fire .ph__layer--front,
.hero.has-fire .ph__layer--front {
  z-index: 3;
}
.ph.has-fire.is-fire-burst .ph__can.is-active::before,
.hero.has-fire.is-fire-burst .can-slide.is-active::before {
  opacity: calc(0.45 + 0.35 * var(--fire-intensity, 1));
}

/* Warm rim light behind can during fire (does not recolor artwork) */
.ph.has-fire.is-fire-lit .ph__can.is-active::before,
.hero.has-fire.is-fire-lit .can-slide.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 125%;
  height: 95%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(ellipse at 28% 50%, rgba(255, 120, 30, 0.32), transparent 60%);
  filter: blur(26px);
  opacity: calc(0.28 + 0.35 * var(--fire-intensity, 1));
  mix-blend-mode: normal;
}

.ph[data-flavor="zero"] {
  --ph-accent: #00cfff;
  --ph-accent-2: #3db4ff;
  --ph-glow: rgba(0, 207, 255, 0.32);
  --ph-deep: #040b14;
}

/* Zero Sugar lightning cinematic scene */
.ph[data-flavor="zero"].is-focused .ph__wash,
.hero[data-flavor="zero"].is-focused .ph__wash {
  background:
    radial-gradient(ellipse 52% 46% at 50% 48%, rgba(0, 140, 200, 0.28), transparent 70%),
    radial-gradient(ellipse 36% 30% at 70% 30%, rgba(0, 200, 255, 0.1), transparent 62%),
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(0, 0, 0, 0.6), transparent 55%),
    linear-gradient(165deg, #02060c 0%, #071522 44%, #03070e 100%);
}
.ph[data-flavor="zero"].is-focused .ph__atmosphere::after,
.hero[data-flavor="zero"].is-focused .hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, transparent 42%, rgba(0, 0, 0, 0.4) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.32));
  mix-blend-mode: multiply;
  opacity: 0.88;
}
.ph[data-flavor="zero"].is-focused .ph__orb,
.hero[data-flavor="zero"].is-focused .ph__orb {
  opacity: 0.16;
}
.ph[data-flavor="zero"].is-focused .ph__orb--a,
.hero[data-flavor="zero"].is-focused .ph__orb--a {
  background: #00cfff;
  filter: blur(95px);
}
.ph[data-flavor="zero"].is-focused .ph__orb--b,
.hero[data-flavor="zero"].is-focused .ph__orb--b {
  background: #1a6fb5;
  filter: blur(110px);
}
.ph[data-flavor="zero"].is-focused .ph__watermark,
.hero[data-flavor="zero"].is-focused .ph__watermark {
  opacity: 0.14;
  color: rgba(140, 220, 255, 0.85);
}
.ph[data-flavor="zero"].is-focused .ph__can.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(
      calc(var(--ph-dx, 0px) + var(--storm-sx, 0px)),
      calc(var(--ph-dy, 0px) + var(--storm-sy, 0px)),
      0
    )
    scale(1.14)
    rotate(var(--ph-rot, 8deg));
  filter: none;
}
.ph[data-flavor="zero"].is-focused .ph__can.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
  transition: filter 0.12s ease;
}
.hero[data-flavor="zero"].is-focused .can-slide.is-ready.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(
      calc(var(--hero-dx, 0px) + var(--storm-sx, 0px)),
      calc(var(--hero-dy, 0px) + var(--storm-sy, 0px)),
      0
    )
    scale(1.14)
    rotate(var(--hero-rot, 8deg));
}
.hero[data-flavor="zero"].is-focused .can-slide.is-ready.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
  transition: filter 0.12s ease;
}
.ph[data-flavor="zero"].is-striking .ph__can.is-active img,
.hero[data-flavor="zero"].is-striking .can-slide.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}
.ph.has-storm.is-striking .ph__can.is-active,
.hero.has-storm.is-striking .can-slide.is-active {
  will-change: transform;
}
.ph.has-storm.is-flicker .ph__can.is-active::after,
.hero.has-storm.is-flicker .can-slide.is-active::after {
  opacity: 0.35;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255, 255, 255, 0.28) 49%,
    transparent 60%
  );
  animation: none;
  mix-blend-mode: normal;
}
.ph.has-storm.is-storm-burst .ph__can.is-active::before,
.hero.has-storm.is-storm-burst .can-slide.is-active::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 130%;
  height: 95%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at var(--storm-impact-x, 50%) var(--storm-impact-y, 45%),
    rgba(120, 210, 255, 0.35),
    transparent 65%
  );
  filter: blur(26px);
  opacity: 0.7;
  animation: stormImpactGlow 0.55s ease-out forwards;
  mix-blend-mode: normal;
}
@keyframes stormImpactGlow {
  0% { opacity: 0.75; }
  100% { opacity: 0; }
}
.ph__flash {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      ellipse 48% 42% at var(--flash-x, 50%) var(--flash-y, 45%),
      rgba(210, 245, 255, calc(0.42 * var(--flash-str, 1))),
      transparent 68%
    ),
    rgba(180, 220, 255, calc(0.1 * var(--flash-str, 1)));
  mix-blend-mode: screen;
}
.ph__flash.is-burst {
  animation: stormFlash 0.42s cubic-bezier(0.15, 0.85, 0.25, 1) forwards;
}
@keyframes stormFlash {
  0% { opacity: 0; }
  8% { opacity: 1; }
  28% { opacity: 0.55; }
  45% { opacity: 0.85; }
  100% { opacity: 0; }
}
.storm-canvas,
.storm-sparks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
  mix-blend-mode: screen;
}
.storm-canvas { z-index: 2; }
.storm-sparks { z-index: 4; }
.storm-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(
      ellipse 42% 38% at var(--amb-x, 50%) var(--amb-y, 48%),
      rgba(0, 180, 255, 0.34),
      transparent 70%
    );
  mix-blend-mode: screen;
}
.storm-ambient.is-pulse {
  animation: stormAmbientPulse 0.7s ease-out forwards;
}
@keyframes stormAmbientPulse {
  0% { opacity: 0; transform: scale(0.88); }
  18% { opacity: 1; transform: scale(1.02); }
  100% { opacity: 0; transform: scale(1.18); }
}
.storm-shock-host {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}
.storm-shockwave {
  position: absolute;
  width: 14px;
  height: 14px;
  margin: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(180, 235, 255, 0.7);
  box-shadow:
    0 0 14px rgba(0, 200, 255, 0.5),
    inset 0 0 8px rgba(200, 245, 255, 0.28);
  transform: translate(-50%, -50%) scale(0.35);
  opacity: 0.9;
  pointer-events: none;
  mix-blend-mode: screen;
  animation: stormShock var(--sw-dur, 0.7s) cubic-bezier(0.12, 0.8, 0.2, 1) forwards;
}
@keyframes stormShock {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.3);
    border-color: rgba(255, 255, 255, 0.9);
  }
  40% { opacity: 0.5; }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8);
    border-color: rgba(0, 160, 255, 0.04);
  }
}
.ph__bit--espark {
  width: 2px;
  height: 7px;
  border-radius: 1px;
  background: linear-gradient(180deg, #fff, #7adfff 55%, transparent);
  box-shadow: 0 0 8px rgba(0, 207, 255, 0.65), 0 0 14px rgba(0, 160, 255, 0.3);
  transition: translate 0.08s linear;
}
.ph.has-storm .ph__layer--mid,
.hero.has-storm .ph__layer--mid {
  z-index: 2;
}
.ph.has-storm .ph__layer--front,
.hero.has-storm .ph__layer--front {
  z-index: 3;
}

.ph[data-flavor="peach"] {
  --ph-accent: #e07a3a;
  --ph-accent-2: #d4924a;
  --ph-glow: rgba(200, 110, 55, 0.28);
  --ph-deep: #140a06;
}

/* Peach Ice Tea cinematic hover scene */
.ph[data-flavor="peach"].is-focused .ph__wash,
.hero[data-flavor="peach"].is-focused .ph__wash {
  background:
    radial-gradient(ellipse 54% 48% at 50% 46%, rgba(180, 90, 40, 0.26), transparent 70%),
    radial-gradient(ellipse 40% 34% at 72% 70%, rgba(210, 140, 60, 0.1), transparent 65%),
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(0, 0, 0, 0.55), transparent 55%),
    linear-gradient(165deg, #0c0704 0%, #1a100a 45%, #080504 100%);
}
.ph[data-flavor="peach"].is-focused .ph__atmosphere::after,
.hero[data-flavor="peach"].is-focused .hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.3));
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.ph[data-flavor="peach"].is-focused .ph__orb,
.hero[data-flavor="peach"].is-focused .ph__orb {
  opacity: 0.12;
}
.ph[data-flavor="peach"].is-focused .ph__orb--a,
.hero[data-flavor="peach"].is-focused .ph__orb--a {
  background: #c45a28;
  filter: blur(90px);
}
.ph[data-flavor="peach"].is-focused .ph__orb--b,
.hero[data-flavor="peach"].is-focused .ph__orb--b {
  background: #d49240;
  filter: blur(100px);
}
.ph[data-flavor="peach"].is-focused .ph__watermark,
.hero[data-flavor="peach"].is-focused .ph__watermark {
  opacity: 0.14;
  color: rgba(230, 170, 120, 0.85);
  letter-spacing: 0.02em;
}
.ph[data-flavor="peach"].is-focused .ph__can.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(var(--ph-dx, 0px), var(--ph-dy, 0px), 0)
    scale(1.14)
    rotate(var(--ph-rot, -8deg));
  filter: none;
}
.ph[data-flavor="peach"].is-focused .ph__can.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}
.hero[data-flavor="peach"].is-focused .can-slide.is-ready.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(var(--hero-dx, 0px), var(--hero-dy, 0px), 0)
    scale(1.14)
    rotate(var(--hero-rot, -8deg));
}
.hero[data-flavor="peach"].is-focused .can-slide.is-ready.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}

.ph[data-flavor="mojito"] {
  --ph-accent: #3aa86a;
  --ph-accent-2: #7fbf4a;
  --ph-glow: rgba(70, 160, 90, 0.28);
  --ph-deep: #06140a;
}

/* Mojito cinematic hover scene — commercial grade */
.ph[data-flavor="mojito"].is-focused .ph__wash,
.hero[data-flavor="mojito"].is-focused .ph__wash {
  background:
    radial-gradient(ellipse 54% 48% at 50% 46%, rgba(55, 130, 75, 0.28), transparent 70%),
    radial-gradient(ellipse 40% 34% at 72% 70%, rgba(120, 150, 70, 0.1), transparent 65%),
    radial-gradient(ellipse 100% 80% at 50% 120%, rgba(0, 0, 0, 0.55), transparent 55%),
    linear-gradient(165deg, #040c07 0%, #0a1810 45%, #050a07 100%);
}
.ph[data-flavor="mojito"].is-focused .ph__atmosphere::after,
.hero[data-flavor="mojito"].is-focused .hero__atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.35) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.28));
  mix-blend-mode: multiply;
  opacity: 0.85;
}
.ph[data-flavor="mojito"].is-focused .ph__orb,
.hero[data-flavor="mojito"].is-focused .ph__orb {
  opacity: 0.12;
}
.ph[data-flavor="mojito"].is-focused .ph__orb--a,
.hero[data-flavor="mojito"].is-focused .ph__orb--a {
  background: #2f8f55;
  filter: blur(90px);
}
.ph[data-flavor="mojito"].is-focused .ph__orb--b,
.hero[data-flavor="mojito"].is-focused .ph__orb--b {
  background: #6a9a40;
  filter: blur(100px);
}
.ph[data-flavor="mojito"].is-focused .ph__watermark,
.hero[data-flavor="mojito"].is-focused .ph__watermark {
  opacity: 0.14;
  color: rgba(170, 210, 160, 0.85);
  letter-spacing: 0.02em;
}
.ph[data-flavor="mojito"].is-focused .ph__can.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(var(--ph-dx, 0px), var(--ph-dy, 0px), 0)
    scale(1.14)
    rotate(var(--ph-rot, 8deg));
  filter: none;
}
.ph[data-flavor="mojito"].is-focused .ph__can.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}
.hero[data-flavor="mojito"].is-focused .can-slide.is-ready.is-active {
  width: min(22vw, 190px);
  transform:
    translate3d(var(--hero-dx, 0px), var(--hero-dy, 0px), 0)
    scale(1.14)
    rotate(var(--hero-rot, 8deg));
}
.hero[data-flavor="mojito"].is-focused .can-slide.is-ready.is-active img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.55));
}
.ph__can {
  isolation: isolate;
  mix-blend-mode: normal;
}
.ph__can img,
.can-slide img {
  mix-blend-mode: normal !important;
}

.ph__can.is-active::after,
.can-slide.is-active::after {
  content: "";
  position: absolute;
  left: 30%;
  top: 10%;
  width: 22%;
  height: 62%;
  border-radius: 40%;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 49%,
    transparent 58%
  );
  pointer-events: none;
  opacity: 0;
  /* soft-light was punching “holes” through the can over siblings */
  mix-blend-mode: normal;
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}
.ph.is-focused .ph__can.is-active::after,
.hero.is-focused .can-slide.is-active::after {
  opacity: 0.35;
  animation: phShine 5.5s ease-in-out infinite;
}
@keyframes phShine {
  0%, 100% { transform: translateX(-4%) skewX(-6deg); opacity: 0.1; }
  50% { transform: translateX(8%) skewX(-6deg); opacity: 0.22; }
}

@media (max-width: 900px) {
  .ph__ui { display: none; }
  .ph__rail { gap: 0.7rem; min-height: min(48vh, 380px); }
  .ph__can { width: min(22vw, 110px); }
  .ph.is-focused .ph__can.is-active {
    width: min(32vw, 150px);
    transform: translate3d(var(--ph-dx, 0px), var(--ph-dy, -10px), 0) scale(1.12) rotate(-8deg);
  }
  .ph__watermark { font-size: clamp(3rem, 22vw, 7rem); top: 40%; }

  /* Hero focus: clean mobile product shot (centered can + tidy props) */
  .hero.is-focused {
    min-height: 100svh;
    padding-bottom: 2rem;
    align-items: center;
  }
  .hero.is-focused .hero__copy {
    display: none;
  }
  .hero.is-focused .hero__media {
    order: 1;
    width: 100%;
    inset: auto;
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: 0.25rem 0 0;
  }
  .hero.is-focused .can-carousel {
    width: 100%;
    max-width: 100%;
  }
  .hero.is-focused .can-track {
    position: relative;
    min-height: min(58svh, 520px);
    height: min(58svh, 520px);
    justify-content: center;
    align-items: center;
    overflow: visible;
    /* Active can alone in flow → always truly centered */
    display: flex;
  }
  .hero.is-focused .can-slide.is-ready:not(.is-active) {
    position: absolute;
    left: 50%;
    top: 52%;
    margin: 0;
    opacity: 0.08;
    filter: blur(6px);
    transform: translate(-50%, -40%) scale(0.42);
    width: min(22vw, 88px);
    pointer-events: none;
    z-index: 0;
  }
  /* Fan inactive cans slightly L/R so they stay as soft backdrop */
  .hero.is-focused .can-slide.is-ready:not(.is-active):nth-child(1) {
    transform: translate(calc(-50% - 28vw), -38%) scale(0.4);
  }
  .hero.is-focused .can-slide.is-ready:not(.is-active):nth-child(2) {
    transform: translate(calc(-50% - 12vw), -42%) scale(0.38);
  }
  .hero.is-focused .can-slide.is-ready:not(.is-active):nth-child(3) {
    transform: translate(calc(-50% + 12vw), -42%) scale(0.38);
  }
  .hero.is-focused .can-slide.is-ready:not(.is-active):nth-child(4) {
    transform: translate(calc(-50% + 28vw), -38%) scale(0.4);
  }
  .hero.is-focused .hero__media {
    touch-action: pan-y;
  }
  .hero.is-focused .can-track {
    touch-action: pan-y;
  }
  .hero.is-focused .can-slide.is-ready.is-active {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    width: min(70vw, 280px);
    transform:
      translate3d(0, 0, 0)
      scale(1.18)
      rotate(var(--hero-rot, -6deg));
  }
  .hero.is-focused .can-slide.is-ready.is-active img {
    filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.6));
  }
  .hero.is-focused .can-carousel__controls {
    margin-top: 0.35rem;
  }
  .hero.is-focused .ph__watermark {
    opacity: 0.08;
    font-size: clamp(2.4rem, 16vw, 4.5rem);
    top: 18%;
  }
  .hero.is-focused .hero__atmosphere {
    opacity: 0.85;
  }
  .hero.is-focused #heroParticles {
    inset: 8% 4% 12%;
  }
  .hero.is-focused .ph__bit--photo {
    max-width: 22vw;
  }
  .hero.is-focused .ph__layer--back .ph__bit--photo {
    filter: blur(3px) drop-shadow(0 8px 14px rgba(0, 0, 0, 0.3));
  }
  /* Compact title under the shot */
  .hero.is-focused .ph__ui--left {
    display: grid !important;
    position: relative;
    inset: auto;
    transform: none;
    width: min(92%, 360px);
    margin: 0.25rem auto 0;
    text-align: center;
    justify-items: center;
    gap: 0.35rem;
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    order: 2;
  }
  .hero.is-focused .ph__ui--left .ph__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }
  .hero.is-focused .ph__ui--left .ph__title {
    margin: 0;
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }
  .hero.is-focused .ph__ui--left .ph__sub {
    margin: 0;
    font-size: 0.92rem;
    max-width: 28ch;
  }
  .hero.is-focused .ph__ui--right {
    display: flex !important;
    position: relative;
    inset: auto;
    transform: none;
    width: min(92%, 360px);
    margin: 0.75rem auto 0.35rem;
    text-align: left;
    justify-content: center;
    justify-items: center;
    z-index: 5;
    opacity: 1;
    pointer-events: auto;
    filter: none;
    order: 3;
  }
  .hero.is-focused .ph__feat-dots {
    grid-auto-flow: column;
    gap: 0.65rem;
  }
  .hero.is-focused .ph__ui--left .ph__detail-btn {
    width: min(100%, 220px);
  }
  .hero.is-focused .ph__ui--left .ph__badge {
    justify-self: center;
  }
  .hero.is-focused .ph__ui--left .ph__title--detail {
    text-align: center;
    max-width: 16ch;
  }
  .hero.is-focused .ph__ui--right .ph__feats {
    width: 100%;
  }
  .hero.is-focused .ph__ui--right .ph__feats li {
    font-size: 0.92rem;
    padding: 0.7rem 0;
  }
}
@media (max-width: 560px) {
  .hero.is-focused .can-slide.is-ready.is-active {
    width: min(78vw, 300px);
    transform:
      translate3d(0, 0, 0)
      scale(1.22)
      rotate(var(--hero-rot, -6deg));
  }
  .hero.is-focused .can-track {
    min-height: min(56svh, 480px);
    height: min(56svh, 480px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ph__can, .ph__ui, .ph__wash, .ph__bit { transition: none !important; animation: none !important; }
}


/* Fleet showcase — truck drive */
.fleet {
  background: #050505;
  color: #f2f2f2;
  overflow: hidden;
}
.fleet .section__sub { color: rgba(255,255,255,0.62); }
.fleet .eyebrow { color: var(--fire); }
.fleet .section__head h2 { color: #fff; }
[data-theme="light"] .fleet {
  background: #f0f0f0;
  color: #141414;
}
[data-theme="light"] .fleet .section__sub { color: #5a5a5a; }
[data-theme="light"] .fleet .section__head h2 { color: #141414; }
[data-theme="light"] .fleet__stage {
  background: #f0f0f0;
}
.fleet__stage {
  position: relative;
  margin: 0.6rem auto 0;
  width: 100%;
  max-width: none;
  min-height: min(58vh, 520px);
  display: grid;
  place-items: end center;
  isolation: isolate;
  overflow: hidden;
  --truck-x: 0px;
  --truck-o: 1;
  background: #050505;
}
.fleet__glow {
  display: none;
}
.fleet__rig {
  position: relative;
  z-index: 4;
  width: min(100%, 920px);
  transform: translate3d(calc(-2% + var(--truck-x)), 0, 0);
  opacity: var(--truck-o, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}
.fleet__ground {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: 2%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.5), transparent 72%);
  filter: blur(12px);
  z-index: 1;
  pointer-events: none;
  transform: translate3d(calc(var(--truck-x) * 0.85), 0, 0);
  opacity: calc(var(--truck-o, 1) * 0.9);
  will-change: transform, opacity;
}
.fleet__truck {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  transform: none;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: normal;
  background: transparent;
}
[data-theme="light"] .fleet__truck {
  mix-blend-mode: normal !important;
  filter: none !important;
}
@media (max-width: 720px) {
  .fleet__stage { min-height: min(42vh, 360px); }
  .fleet__rig { width: 108%; max-width: none; transform: translate3d(calc(-4% + var(--truck-x)), 0, 0); }
}

/* Lineup */
.lineup__wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch;
}
.dot-list {
  list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.7rem;
}
.dot-list li {
  position: relative; padding-left: 1.2rem; color: var(--catalog-ink); font-size: 0.98rem;
}
.dot-list li::before {
  content: ""; position: absolute; left: 0; top: 0.45em;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.bars { display: grid; gap: 0.55rem; max-width: 28rem; }
.bar {
  border-radius: 999px; padding: 0.75rem 1.1rem; font-size: 0.92rem; font-weight: 600;
}
.bar--muted { background: var(--catalog-bar); color: var(--catalog-ink); }
.bar--fire { background: var(--gold); color: #111; }

.lineup__panel {
  background: var(--catalog-panel);
  border-radius: 40px 40px 40px 120px;
  padding: clamp(1.2rem, 3vw, 2rem);
}
.flavor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem;
}
.flavor {
  background: var(--catalog-bg); border-radius: 22px; padding: 0.85rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}
.flavor__img {
  border-radius: 16px; overflow: visible; aspect-ratio: 1 / 1.25;
  display: grid; place-items: end center; margin-bottom: 0.7rem;
  padding: 0.8rem 0.4rem 0;
}
.flavor__img img { width: 70%; height: auto; max-height: 100%; object-fit: contain; background: transparent; filter: drop-shadow(0 12px 18px rgba(0,0,0,0.25)); }
.flavor__img--classic { background: linear-gradient(160deg, #2a1808, #ff8a2a 120%); }
.flavor__img--zero { background: linear-gradient(160deg, #0d1b2a, #3d7ea6 120%); }
.flavor__img--peach { background: linear-gradient(160deg, #3a1c0a, #ff9a5a 120%); }
.flavor__img--mojito { background: linear-gradient(160deg, #102418, #6bcf6b 120%); }
.flavor h3 {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 800;
  letter-spacing: 0; color: var(--gold); line-height: 1.1;
}
.flavor h3 span { font-weight: 600; }
.flavor__type {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  margin: 0.25rem 0 0.2rem; color: var(--catalog-ink);
}
.flavor__desc { font-size: 0.8rem; }

/* Case study */
.case { overflow: hidden; padding-bottom: 0; }
.case__head { max-width: 36rem; margin-bottom: 2.5rem; display: grid; gap: 0.8rem; }
.case__head h2 { font-family: var(--font-body); font-weight: 800; letter-spacing: 0; line-height: 1; font-size: clamp(2rem, 5vw, 3.4rem); }
.case__head h2 span { color: var(--catalog-ink); }
.case__head h2 em { font-style: normal; color: var(--case-arc); }
.case__head > p { font-weight: 600; font-style: italic; }
.case__cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; position: relative; z-index: 2; margin-bottom: -2rem;
}
.case__col { display: grid; grid-template-columns: auto 1fr; gap: 0.85rem; align-items: start; }
.case__num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--case-arc); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.04em;
}
.case__col h3 {
  font-family: var(--font-body); font-weight: 800; font-size: 1.05rem;
  letter-spacing: 0; margin-bottom: 0.4rem; color: var(--catalog-ink);
}
.case__col p { font-size: 0.92rem; }
.case__arc {
  margin-top: 3rem; height: clamp(180px, 28vw, 280px);
  background: var(--case-arc);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  display: grid; align-items: end; justify-items: end;
  padding: 0 clamp(1.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
}
.case__arc::before {
  content: ""; position: absolute; left: 35%; bottom: 40%;
  width: 140px; height: 140px; border-radius: 50%;
  background: #2d2d35; z-index: 0;
}
.case__arc blockquote {
  position: relative; z-index: 1; margin: 0; max-width: 22rem; color: #fff;
}
.case__quote {
  display: block; font-size: 3rem; line-height: 0.6; font-family: Georgia, serif; opacity: 0.9;
}
.case__arc p { font-weight: 700; font-style: italic; font-size: 1.05rem; }

/* Contact */
.contact { background: var(--bg); }
.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.contact__visual {
  margin: 0;
  position: relative;
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 100%;
  max-width: 520px;
  justify-self: center;
  perspective: 900px;
}
.contact__stand {
  width: 100%;
  max-width: 520px;
  max-height: min(700px, 85vh);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
}
.shelf-cans {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  width: 68%;
  height: 28%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2%;
  pointer-events: none;
}
canvas.shelf-can {
  flex: 1 1 0;
  width: 24%;
  height: 100%;
  max-width: 28%;
  display: block;
  background: transparent !important;
  background-color: transparent !important;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.25));
}
.contact__box { max-width: 40rem; display: grid; gap: 0.9rem; width: 100%; }
@media (max-width: 900px) {
  .contact__layout {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .contact__visual { order: -1; }
  .contact__visual { max-width: 360px; }
  .contact__stand { max-width: 360px; max-height: 580px; }
  .shelf-cans { top: 26%; width: 56%; }
  .contact__box { max-width: 100%; }
}
.contact-details {
  list-style: none; margin: 0.5rem 0 0.2rem; padding: 0; display: grid; gap: 0.7rem;
}
.contact-details li {
  display: grid; grid-template-columns: 6rem 1fr; gap: 0.75rem;
  padding-bottom: 0.7rem; border-bottom: 1px solid var(--line); font-size: 0.98rem;
}
.contact-details a:hover { color: var(--fire); }
.form { margin-top: 0.6rem; display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form label { display: grid; gap: 0.45rem; }
.form label span {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
}
.form input, .form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--surface);
  color: var(--ink); padding: 0.95rem 1rem; font: inherit; outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form input:focus, .form textarea:focus {
  border-color: rgba(255, 106, 0, 0.65); box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}
.form__note { color: #9be27a; font-size: 0.95rem; }

.country-field { position: relative; }
.country-picker { position: relative; }
.country-picker__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 0.85rem 1rem;
  font: inherit;
  text-align: start;
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.country-picker__btn:hover,
.country-picker.is-open .country-picker__btn {
  border-color: rgba(255, 106, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}
.country-picker__flag { font-size: 1.25rem; line-height: 1; }
.country-picker__name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
}
.country-picker__chev {
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.25s ease;
}
.country-picker.is-open .country-picker__chev {
  transform: rotate(-135deg);
  margin-top: 2px;
}
.country-picker__panel {
  position: absolute;
  left: 0; right: 0; top: calc(100% + 6px);
  z-index: 40;
  background: var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  display: grid;
  grid-template-rows: auto minmax(0, 240px);
  overflow: hidden;
}
.country-picker__panel[hidden] { display: none; }
.country-picker__search {
  width: 100%;
  border: 0 !important;
  border-bottom: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 0.8rem 1rem !important;
}
.country-picker__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  overflow: auto;
  display: grid;
  gap: 0.15rem;
}
.country-picker__list button {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0.65rem 0.75rem;
  font: inherit;
  text-align: start;
  cursor: pointer;
  border-radius: 6px;
}
.country-picker__list button:hover,
.country-picker__list button.is-active {
  background: rgba(255, 106, 0, 0.12);
}
.country-picker__list .flag { font-size: 1.2rem; line-height: 1; }
.country-picker__list .meta {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}
.phone-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.phone-input:focus-within {
  border-color: rgba(255, 106, 0, 0.65);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.12);
}
.phone-input__dial {
  display: grid;
  place-items: center;
  padding: 0 0.85rem;
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.phone-input input {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0.95rem 1rem !important;
}

.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 3rem clamp(1.2rem, 4vw, 3rem) 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.4fr) repeat(3, minmax(120px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1.2rem, 3vw, 2.5rem);
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}
.footer__col { display: grid; gap: 0.85rem; align-content: start; }
.footer__brand {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none; color: inherit;
}
.footer__brand img { width: 42px; height: auto; }
.footer__brand strong {
  display: block; font-family: var(--font-display); letter-spacing: 0.06em; font-size: 1.1rem; font-weight: 700;
}
.footer__brand span { color: var(--muted); font-size: 0.85rem; }
.footer__about {
  margin: 0.35rem 0 0; color: var(--muted); font-size: 0.92rem;
  line-height: 1.55; max-width: 28ch;
}
.footer__heading {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}
.footer__links,
.footer__contact,
.footer__legal {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 0.55rem;
}
.footer__links a {
  color: var(--muted); font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer__links a:hover { color: var(--fire); }
.footer__contact li {
  display: grid; gap: 0.15rem;
  font-size: 0.92rem;
}
.footer__contact span:first-child {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.footer__contact a { color: var(--ink); }
.footer__contact a:hover { color: var(--fire); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-top: 1.35rem;
}
.footer__copy { margin: 0; color: var(--muted); font-size: 0.85rem; }
.footer__legal {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1.25rem;
}
.footer__legal a {
  color: var(--muted); font-size: 0.85rem;
  transition: color 0.2s ease;
}
.footer__legal a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__col--brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .why__wrap, .lineup__wrap, .case__cols { grid-template-columns: 1fr; }
  .why__story { display: none; }
  .lineup__panel { border-radius: 32px; }
  .showcase { padding-top: 1.5rem; padding-bottom: 2rem; }
  .vitrin__mark { width: 70px; }
  .vitrin__board { margin-top: 0.2rem; }
  .vitrin__cans { min-height: min(48vh, 380px); }
  .vitrin__cans > img { height: min(44vh, 360px); max-width: 24%; }
  .vitrin__contact { flex-direction: column; gap: 0.7rem; }
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    padding: calc(var(--nav-h) + 0.45rem) clamp(1rem, 4vw, 1.5rem) 2.75rem;
    min-width: 0;
    overflow-x: clip;
    gap: 0.2rem;
    background:
      radial-gradient(ellipse 90% 50% at 50% 28%, rgba(255, 90, 0, 0.16), transparent 58%),
      radial-gradient(ellipse 70% 40% at 50% 75%, rgba(0, 0, 0, 0.35), transparent 65%),
      var(--hero-grad);
  }
  [data-theme="light"] .hero {
    background:
      radial-gradient(ellipse 90% 50% at 50% 30%, rgba(255, 106, 0, 0.1), transparent 58%),
      var(--hero-grad);
  }
  .hero__media {
    order: 2;
    padding-top: 0.35rem;
    margin-left: 0;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
  .hero__stage {
    inset: 0 0 4%;
  }
  .hero__ring {
    width: min(88vw, 360px);
    top: 46%;
  }
  .hero__copy {
    order: 1;
    background: none;
    padding: 0.35rem 0 0.1rem;
    max-width: 100%;
    min-width: 0;
    gap: 0.7rem;
    text-align: center;
    justify-items: center;
  }
  .hero__brand {
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    color: var(--fire);
    font-weight: 700;
  }
  .hero__copy h1 {
    max-width: 14ch;
    font-size: clamp(2.1rem, 9.5vw, 2.85rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }
  .hero__lead {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 30ch;
    margin-inline: auto;
  }
  .hero__specs {
    justify-content: center;
    margin-top: 0.1rem;
  }
  .hero__actions {
    width: 100%;
    max-width: 20rem;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.25rem;
  }
  .hero__actions .btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    text-align: center;
    border-radius: 4px;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }
  .hero__actions .btn--fire {
    box-shadow: 0 12px 36px rgba(255, 70, 0, 0.4);
  }
  .hero__media .can-carousel {
    margin: 0 auto;
    justify-items: center;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
  .can-track {
    min-height: min(38vh, 300px);
    gap: 0.35rem;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding-top: 0.5rem;
  }
  .can-slide { width: min(22vw, 102px); }
  .can-slide.is-active { width: min(22vw, 102px); }
  .can-carousel__controls { display: none; }
  .can-nav { width: 40px; height: 40px; }
  .section { padding-inline: clamp(1rem, 4vw, 2rem); }
  .why__can--a,
  .why__can--d,
  .why__can--back { display: none; }
  .why__can--c { width: min(58%, 200px); margin: 0; }
  .why__cans { min-height: 220px; padding: 6% 0 10%; }
}

@media (max-width: 720px) {
  :root { --nav-h: 64px; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    justify-content: flex-start;
    background: var(--nav-mobile); border-bottom: 1px solid var(--line); padding: 0.5rem 0;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
    letter-spacing: 0.06em;
    max-height: calc(100dvh - var(--nav-h));
    overflow-y: auto;
    z-index: 80;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 1rem 1.4rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__cta {
    margin: 0.8rem 1.2rem 1rem;
    text-align: center;
    display: block;
  }
  .nav__brand img { height: 34px; width: auto; }
  .form__row { grid-template-columns: 1fr; }
  .flavor-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .contact-details li { grid-template-columns: 1fr; gap: 0.2rem; }
  .hero__copy h1 {
    font-size: clamp(2.05rem, 9vw, 2.7rem);
  }
  .hero__lead {
    font-size: 1rem;
    max-width: 26ch;
  }
  .hero__actions {
    width: min(100%, 20rem);
  }
  .hero__actions .btn {
    flex: none;
    width: 100%;
  }
  .contact__form input,
  .contact__form textarea,
  .contact__form select {
    font-size: 16px; /* iOS zoom prevent */
  }
  .ph__spin-hint { margin-top: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}


/* Language switcher */
.lang { position: relative; }
.lang-toggle {
  min-width: 42px; height: 38px; padding: 0 0.65rem;
  border: 1px solid var(--line); background: transparent;
  border-radius: 8px; cursor: pointer; color: var(--ink);
  font-family: var(--font-body); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.lang-toggle:hover {
  border-color: rgba(255,106,0,0.45);
  background: var(--surface);
  box-shadow: none;
}
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 148px; padding: 0.35rem;
  background: var(--nav-mobile); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  z-index: 60; display: grid; gap: 0.15rem;
}
html[dir="rtl"] .lang-menu { right: auto; left: 0; }
.lang-menu[hidden] { display: none; }
.lang-menu button {
  border: 0; background: transparent; color: var(--ink);
  text-align: start; padding: 0.65rem 0.75rem; border-radius: 8px;
  cursor: pointer; font: inherit; font-size: 0.9rem;
}
.lang-menu button:hover,
.lang-menu button.is-active {
  background: rgba(255,106,0,0.14); color: var(--fire);
}

html[dir="rtl"] .nav__actions {
  padding-left: 0;
  padding-right: 0.85rem;
  border-left: 0;
  border-right: 1px solid var(--line);
}
html[dir="rtl"] .nav__cta { margin-left: 0; margin-right: 0.35rem; }
html[dir="rtl"] body { font-family: "Noto Sans Arabic", var(--font-body); }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .hero__brand,
html[dir="rtl"] .nav__brand,
html[dir="rtl"] .case__num {
  font-family: "Noto Sans Arabic", var(--font-display);
  letter-spacing: 0;
}
html[dir="rtl"] .hero__copy { text-align: right; order: 1; }
html[dir="rtl"] .hero__media { order: 2; }
@media (max-width: 900px) {
  html[dir="rtl"] .hero__copy {
    text-align: center;
    justify-items: center;
  }
}
@media (min-width: 901px) {
  html[dir="rtl"] .hero { grid-template-columns: minmax(280px, 1.15fr) minmax(260px, 0.95fr); }
  html[dir="rtl"] .hero__media { order: 1; }
  html[dir="rtl"] .hero__copy { order: 2; }
}
html[dir="rtl"] .section__head { text-align: right; }
html[dir="rtl"] .contact__box { text-align: right; }
html[dir="rtl"] .case__head { text-align: right; }
html[dir="rtl"] .contact-details li {
  grid-template-columns: 1fr;
}
/* Vitrin: Arapça yazı kutuların üstüne binmesin — sağa al */
html[dir="rtl"] .ph.ph--static.is-preview:not(.is-focused) .ph__ui--left,
html[dir="rtl"] .ph.ph--static.is-focused .ph__ui--left,
html[dir="rtl"] .ph.ph--static.is-focused.is-open .ph__ui--left {
  left: auto !important;
  right: clamp(0.75rem, 2.5vw, 2.5rem) !important;
  text-align: right;
  direction: rtl;
  grid-template-columns: 14px 1fr;
  justify-items: stretch;
}
html[dir="rtl"] .ph.ph--static.is-preview:not(.is-focused) .ph__ui--left .ph__panel,
html[dir="rtl"] .ph.ph--static.is-focused .ph__ui--left .ph__panel {
  text-align: right;
}
html[dir="rtl"] .ph.ph--static.is-preview:not(.is-focused) .ph__title,
html[dir="rtl"] .ph.ph--static.is-focused .ph__title {
  font-style: normal;
}
html[dir="rtl"] .ph.ph--static.is-preview:not(.is-focused) .ph__rail,
html[dir="rtl"] .ph.ph--static.is-focused .ph__rail {
  padding-inline-end: min(36vw, 320px);
}
@media (min-width: 901px) {
  html[dir="rtl"] .ph.ph--static.is-focused .ph__ui--left {
    right: clamp(1.5rem, 5vw, 4rem) !important;
  }
}
@media (max-width: 900px) {
  html[dir="rtl"] .ph.ph--static.is-focused .ph__ui--left {
    left: auto !important;
    right: auto !important;
    text-align: right;
    justify-items: end;
    grid-template-columns: 1fr 12px;
  }
  html[dir="rtl"] .ph.ph--static.is-preview:not(.is-focused) .ph__rail,
  html[dir="rtl"] .ph.ph--static.is-focused .ph__rail {
    padding-inline-end: 0;
  }
}
@media (min-width: 901px) {
  html[dir="rtl"] .contact__layout {
    grid-template-columns: minmax(280px, 1.05fr) minmax(240px, 0.95fr);
  }
  html[dir="rtl"] .contact__visual { order: 2; }
  html[dir="rtl"] .contact__box { order: 1; }
}

/* —— 3D can showcase —— */
.can3d {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 90, 20, 0.12), transparent 60%),
    linear-gradient(180deg, #07080b 0%, #0e1016 50%, #08090c 100%);
  color: #f2f2f2;
  overflow: hidden;
}
.can3d .section__sub { color: rgba(255, 255, 255, 0.62); max-width: 46ch; }
.can3d .eyebrow { color: var(--fire, #ff5a14); }
.can3d__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.can3d__head { margin-inline: auto; text-align: center; }
.can3d__head h2 { color: #fff; }
.can3d__stage {
  position: relative;
  margin: 0 auto;
  max-width: 720px;
}
.can3d__glow {
  position: absolute;
  inset: 12% 18% 8%;
  background: radial-gradient(circle at 50% 55%, rgba(255, 110, 30, 0.28), transparent 65%);
  filter: blur(28px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 0.75;
  z-index: 0;
}
.can3d__stage:has(.can3d__mount.is-hover) .can3d__glow {
  opacity: 1;
  transform: scale(1.06);
}
.can3d__mount {
  position: relative;
  z-index: 1;
  height: min(62vh, 560px);
  min-height: 380px;
  background:
    radial-gradient(ellipse 55% 40% at 50% 78%, rgba(0, 0, 0, 0.55), transparent 70%),
    linear-gradient(180deg, #12141a 0%, #0a0b0f 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 30px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}
.can3d__mount:active { cursor: grabbing; }
.can3d__mount.is-hover {
  box-shadow:
    inset 0 0 0 1px rgba(255, 140, 60, 0.22),
    0 0 40px rgba(255, 100, 30, 0.18),
    0 30px 80px rgba(0, 0, 0, 0.45);
}
.can3d__canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  outline: none;
}
.can3d__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.can3d__mount.is-ready .can3d__fallback { opacity: 0; visibility: hidden; }
.can3d__hint {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}
[data-theme="light"] .can3d {
  background:
    radial-gradient(ellipse 70% 55% at 50% 45%, rgba(255, 90, 20, 0.1), transparent 60%),
    linear-gradient(180deg, #1a1c22 0%, #12141a 100%);
}
@media (max-width: 640px) {
  .can3d__mount {
    height: min(58vh, 460px);
    min-height: 320px;
  }
}

/* —— Vitrin: static lineup + CHRO focus / GURU detail —— */
.ph.ph--static {
  --vitrin-stage-h: min(54vh, 480px);
  --vitrin-section-h: calc(var(--nav-h) + var(--vitrin-stage-h) + 7.5rem);
  min-height: var(--vitrin-section-h);
  height: var(--vitrin-section-h);
  padding: calc(var(--nav-h) + 1.75rem) clamp(1rem, 4vw, 3rem) 2.25rem;
  background: #0a0a0a;
  color: #eee;
  place-items: stretch;
  overflow: hidden;
  box-sizing: border-box;
  transition: background 0.55s var(--ph-ease);
}
.ph.ph--static .ph__watermark {
  display: none !important;
}
.ph.ph--static .ph__atmosphere {
  display: block;
  opacity: 1;
  transition: opacity 0.55s var(--ph-ease);
}
.ph.ph--static .ph__wash {
  opacity: 0;
}
.ph.ph--static .ph__orb {
  opacity: 0 !important;
}
.ph.ph--static.is-focused .ph__wash {
  opacity: 1;
}
.ph.ph--static.is-preview:not(.is-focused) .ph__wash {
  opacity: 0.45;
}
.ph.ph--static.is-focused .ph__orb {
  opacity: 0.14 !important;
}
.ph.ph--static.is-preview .ph__atmosphere {
  opacity: 1;
}
.ph.ph--static .ph__ui {
  display: none;
}
.ph.ph--static.is-focused .ph__ui,
.ph.ph--static.is-preview .ph__ui--left {
  display: block;
}
.ph.ph--static.is-focused .ph__ui--right {
  display: grid;
}
.ph.ph--static .ph__close {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) + 0.75rem);
  right: clamp(0.85rem, 3vw, 1.75rem);
  z-index: 8;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.ph.ph--static.is-focused .ph__close {
  display: grid;
  place-items: center;
}
.ph.ph--static .ph__stage {
  position: relative;
  z-index: 3;
  width: 100%;
  height: var(--vitrin-stage-h);
  min-height: var(--vitrin-stage-h);
  max-height: var(--vitrin-stage-h);
}
.ph.ph--static .ph__nav {
  display: none;
}
.ph.ph--static .ph__rail {
  height: var(--vitrin-stage-h);
  min-height: var(--vitrin-stage-h);
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  width: min(1080px, 96%);
  margin-inline: auto;
}
.ph.ph--static .ph__can {
  cursor: pointer;
  width: min(20vw, 180px);
  transform: none;
  opacity: 1;
  filter: none;
  transition:
    opacity 0.45s var(--ph-ease),
    filter 0.45s ease,
    transform 0.65s var(--ph-ease),
    width 0.65s var(--ph-ease) !important;
  will-change: transform, opacity;
  z-index: 1;
}
.ph.ph--static .ph__can:hover,
.ph.ph--static .ph__can:focus {
  transform: none;
  width: min(20vw, 180px);
}
.ph.ph--static .ph__can img {
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5));
}
.ph.ph--static .ph__can span {
  opacity: 0.7;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.12em;
}
.ph.ph--static .ph__can:hover span {
  opacity: 1;
  color: #fff;
}
.ph.ph--static .ph__sparks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 1;
  overflow: hidden;
}
.ph.ph--static .ph__fw-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  mix-blend-mode: screen;
}
[data-theme="light"] .ph.ph--static .ph__fw-canvas {
  mix-blend-mode: multiply;
  opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) {
  .ph.ph--static .ph__sparks { display: none; }
}

/* Focused: SAME section/stage size as lineup */
.ph.ph--static.is-focused {
  min-height: var(--vitrin-section-h);
  height: var(--vitrin-section-h);
  background: var(--ph-deep, #0a0a0a);
}
.ph.ph--static.is-focused .ph__rail {
  position: relative;
  width: 100%;
  max-width: none;
  justify-content: center;
  align-items: center;
}
.ph.ph--static.is-focused .ph__can:not(.is-active) {
  position: absolute;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
  transform: scale(0.7) !important;
}
.ph.ph--static.is-focused .ph__can.is-active:not(.is-flying) {
  width: min(22vw, 220px) !important;
  opacity: 1 !important;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.55)) !important;
  transform: translate3d(10vw, 0, 0) rotate(-26deg) scale(1.05) !important;
  z-index: 5 !important;
  cursor: grab;
  animation: none !important;
  /* Handoff’ta 0.65s transform gecikmesi olmasın */
  transition: none !important;
}
.ph.ph--static.is-focused .ph__can.is-active .ph3d {
  height: calc(var(--vitrin-stage-h) - 0.75rem) !important;
  max-height: calc(var(--vitrin-stage-h) - 0.75rem) !important;
  min-height: 0 !important;
}
.ph.ph--static.is-focused .ph__can.is-active span {
  opacity: 0;
  pointer-events: none;
}
.ph.ph--static.is-focused .ph__spin-hint {
  color: color-mix(in srgb, var(--ph-accent, #ff6a00) 55%, #fff);
}
.ph.ph--static.is-detail .ph__can.is-active:not(.is-flying) {
  transform: translate3d(12vw, 0, 0) rotate(-30deg) scale(1.06) !important;
}
.ph.ph--static.is-focused .ph__ui--left {
  width: min(300px, 28vw);
}
.ph.ph--static.is-focused .ph__title {
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.02em;
}
.ph.ph--static.is-focused .ph__wash {
  opacity: 1;
  background:
    radial-gradient(ellipse 58% 50% at 58% 48%, var(--ph-glow), transparent 68%),
    radial-gradient(ellipse 40% 36% at 30% 40%, color-mix(in srgb, var(--ph-accent) 18%, transparent), transparent 65%),
    linear-gradient(165deg, var(--ph-deep) 0%, #050505 55%, #0a0a0a 100%);
}
.ph.ph--static.is-focused .ph__orb {
  opacity: 0.2;
}


/* GURU-style left edge copy */
.ph.ph--static.is-focused .ph__ui--left {
  left: clamp(0.75rem, 2.5vw, 2rem);
  top: 50%;
  width: min(360px, 34vw);
  z-index: 7;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  transform: translateY(-50%) translateX(-18px);
  filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.45s var(--ph-ease),
    transform 0.55s var(--ph-ease),
    filter 0.45s ease;
}
.ph.ph--static.is-focused.is-open .ph__ui--left {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-50%) translateX(0);
  pointer-events: auto;
}

/* Hover preview: solda ürün yazısı + diğer kutular karanlık */
.ph.ph--static.is-preview:not(.is-focused):not(.is-slamming) .ph__ui--left {
  left: clamp(0.75rem, 2.5vw, 2rem);
  top: 50%;
  width: min(340px, 32vw);
  z-index: 7;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  transform: translateY(-50%) translateX(0);
  filter: none;
  opacity: 1;
  pointer-events: none;
}
.ph.ph--static.is-preview:not(.is-focused) .ph__rail-ticks,
.ph.ph--static.is-preview:not(.is-focused) .ph__detail-btn {
  display: none !important;
}
.ph.ph--static.is-preview:not(.is-focused) .ph__title {
  color: var(--ph-accent, #ff6a00);
  text-transform: uppercase;
  font-style: italic;
  text-shadow: 0 0 24px color-mix(in srgb, var(--ph-accent, #ff6a00) 45%, transparent);
}
.ph.ph--static.is-preview:not(.is-focused) .ph__eyebrow {
  color: color-mix(in srgb, var(--ph-accent, #ff6a00) 70%, #fff);
}
.ph.ph--static.is-preview:not(.is-focused) .ph__sub {
  color: rgba(255, 255, 255, 0.72);
}
.ph.ph--static.is-preview:not(.is-focused):not(.is-slamming) .ph__can--3d {
  transition: opacity 0.28s ease, filter 0.28s ease, transform 0.28s var(--ph-ease) !important;
}
.ph.ph--static.is-preview:not(.is-focused):not(.is-slamming) .ph__can--3d.is-dimmed {
  opacity: 0.28 !important;
  filter: brightness(0.45) grayscale(0.35) !important;
  transform: scale(0.92) !important;
}
.ph.ph--static.is-preview:not(.is-focused):not(.is-slamming) .ph__can--3d.is-active {
  opacity: 1 !important;
  filter: drop-shadow(0 22px 36px color-mix(in srgb, var(--ph-accent, #ff6a00) 35%, transparent)) !important;
  transform: scale(1.06) !important;
  z-index: 5;
}
.ph.ph--static.is-preview:not(.is-focused) .ph__wash {
  opacity: 0.75;
  background:
    radial-gradient(ellipse 50% 45% at 55% 50%, var(--ph-glow), transparent 70%),
    linear-gradient(165deg, var(--ph-deep) 0%, #050505 60%, #0a0a0a 100%);
}

.ph.ph--static.is-slamming .ph__ui--left {
  transition: none !important;
}
.ph.ph--static.is-slamming {
  --ph-dim: 0.35;
}
.ph.ph--static.is-slamming .ph__wash {
  opacity: 0.85;
}

.ph.ph--static .ph__impact {
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 6px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(
    180deg,
    transparent,
    color-mix(in srgb, var(--ph-accent, #ff6a00) 85%, #fff),
    transparent
  );
  box-shadow:
    0 0 24px color-mix(in srgb, var(--ph-accent, #ff6a00) 70%, transparent),
    12px 0 48px color-mix(in srgb, var(--ph-accent, #ff6a00) 45%, transparent);
  opacity: 0;
  pointer-events: none;
  z-index: 6;
}
.ph.ph--static.is-impact .ph__impact {
  animation: phImpactFlash 0.28s ease-out;
}
.ph.ph--static.is-impact {
  animation: phHitShake 0.28s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes phImpactFlash {
  0% { opacity: 0; transform: scaleY(0.35) translateX(-4px); }
  40% { opacity: 1; transform: scaleY(1.08) translateX(0); }
  100% { opacity: 0; transform: scaleY(1) translateX(0); }
}
@keyframes phHitShake {
  0%, 100% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-5px, 0, 0); }
  55% { transform: translate3d(3px, 0, 0); }
  75% { transform: translate3d(-1px, 0, 0); }
}
.ph.ph--static.is-slamming .ph__can.is-dimmed {
  opacity: 0.2 !important;
  filter: grayscale(0.35) brightness(0.8) !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, filter 0.3s ease !important;
}
.ph.ph--static .ph__can.is-flying {
  will-change: transform;
  transition: none !important;
}
.ph.ph--static .ph__can.is-flying span {
  opacity: 0 !important;
}
.ph.ph--static.is-slamming:not(.is-focused) .ph__ui--right,
.ph.ph--static.is-slamming:not(.is-focused) .ph__close {
  display: none !important;
}
/* Slam sırasında sol metin görünsün ama lineup henüz kapanmasın (yer açılma takılması yok) */
.ph.ph--static.is-slamming:not(.is-focused) .ph__ui--left {
  display: grid;
  position: absolute;
  left: clamp(0.75rem, 2.5vw, 2rem);
  top: 50%;
  width: min(360px, 34vw);
  z-index: 7;
  grid-template-columns: 14px 1fr;
  gap: 0.85rem 1rem;
  align-items: center;
  transform: translateY(-50%) translateX(0);
  pointer-events: none;
  transition: none !important;
}
.ph.ph--static.is-focused .ph__can.is-active:not(.is-flying) {
  width: min(24vw, 240px) !important;
  transform: translate3d(18vw, 0, 0) rotate(-28deg) scale(1.1) !important;
  transition: none !important;
}
.ph.ph--static.is-focused.is-slamming .ph__can.is-active.is-flying {
  /* transform GSAP'te — !important kullanma, eğimi öldürmesin */
  animation: none !important;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.55)) !important;
  z-index: 60 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.ph.ph--static.is-focused.is-slamming .ph__close {
  opacity: 0;
  pointer-events: none;
}
.ph.ph--static.is-focused.is-open .ph__close {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s ease;
}
/* After close: force lineup cans upright */
.ph.ph--static:not(.is-focused):not(.is-slamming) .ph__can {
  transform: none !important;
  filter: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  left: auto !important;
  top: auto !important;
  z-index: 1 !important;
}
.ph.ph--static.is-focused .ph__rail-ticks {
  grid-row: 1 / span 2;
  display: grid;
  gap: 0.55rem;
  align-content: center;
  justify-items: center;
  padding: 0.35rem 0;
}
.ph.ph--static .ph__tick {
  width: 3px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.ph.ph--static .ph__tick.is-active {
  height: 28px;
  background: #fff;
  box-shadow: 0 0 12px color-mix(in srgb, var(--ph-accent) 55%, transparent);
}
.ph.ph--static.is-focused .ph__panel {
  grid-column: 2;
}
.ph.ph--static.is-focused .ph__detail-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.95rem;
}
.ph.ph--static .ph__close--chip {
  position: static;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 0;
  background: var(--ph-accent, #ff6a00);
  color: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
}
.ph.ph--static.is-focused .ph__badge {
  margin: 0;
  border-radius: 999px;
  background: #fff;
  color: #121212;
  border: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.42rem 0.8rem;
}
.ph.ph--static.is-focused .ph__title--detail {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.95;
  max-width: 9ch;
  margin: 0 0 0.85rem;
  color: #fff;
}
.ph.ph--static.is-focused .ph__sub--detail {
  margin: 0;
  max-width: 28ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
}
.ph.ph--static.is-focused .ph__can.is-active:not(.is-flying) {
  width: min(24vw, 240px) !important;
  transform: translate3d(18vw, 0, 0) rotate(-32deg) scale(1.12) !important;
}
.ph.ph--static.is-detail .ph__can.is-active:not(.is-flying) {
  transform: translate3d(20vw, 0, 0) rotate(-36deg) scale(1.16) !important;
}
.ph.ph--static.is-focused .ph__ui--right {
  display: none !important;
}

[data-theme="light"] .ph.ph--static {
  background: #111;
}

/* —— Vitrin 3D rotatable cans —— */
.ph.ph--static .ph__can--3d {
  width: min(26vw, 240px);
}
.ph.ph--static:not(.is-focused) .ph__can--3d:hover,
.ph.ph--static:not(.is-focused) .ph__can--3d:focus {
  width: min(26vw, 240px);
}
.ph.ph--static .ph3d {
  width: 100%;
  aspect-ratio: 0.55 / 1;
  height: calc(var(--vitrin-stage-h) - 2rem);
  max-height: calc(var(--vitrin-stage-h) - 2rem);
  min-height: 0;
  position: relative;
  cursor: grab;
  border-radius: 0;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}
.ph3d:active { cursor: grabbing; }
.ph3d__canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  outline: none;
  max-width: 100%;
}
.ph__spin-hint {
  position: relative;
  z-index: 4;
  margin: 0.85rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 1rem;
  transition: color 0.35s ease;
}
@media (min-width: 901px) {
  .ph.ph--static.is-focused .ph__ui--left {
    left: clamp(1.5rem, 5vw, 4rem);
  }
  .ph.ph--static.is-focused .ph__ui--right {
    right: clamp(1rem, 3vw, 2.5rem);
  }
}
@media (max-width: 900px) {
  .ph.ph--static.is-preview .ph__ui--left {
    display: none !important;
  }
  .ph.ph--static {
    --vitrin-stage-h: min(48vh, 420px);
    --vitrin-section-h: calc(var(--nav-h) + var(--vitrin-stage-h) + 8.5rem);
    padding: calc(var(--nav-h) + 1.5rem) clamp(0.75rem, 3vw, 1.5rem) 2rem;
    overflow-x: clip;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ph.ph--static.is-focused {
    --vitrin-section-h: calc(var(--nav-h) + var(--vitrin-stage-h) + 13.5rem);
    height: var(--vitrin-section-h);
    min-height: var(--vitrin-section-h);
  }
  .ph.ph--static.is-focused .ph__ui--left {
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    width: min(94%, 400px);
    margin: 0 auto 0.35rem;
    text-align: left;
    justify-items: start;
    align-items: start;
    order: 1;
    display: grid;
    grid-template-columns: 12px 1fr;
    transform: translateY(14px);
    filter: blur(8px);
    opacity: 0;
    pointer-events: none;
  }
  .ph.ph--static.is-focused.is-open .ph__ui--left {
    opacity: 1;
    filter: none;
    transform: none;
    pointer-events: auto;
  }
  .ph.ph--static.is-focused .ph__ui--right {
    display: none !important;
  }
  .ph.ph--static.is-focused .ph__stage {
    order: 2;
  }
  .ph.ph--static.is-focused .ph__ui--right {
    order: 3;
    display: grid;
    margin: 0.5rem auto 0.1rem;
  }
  .ph.ph--static.is-focused .ph__spin-hint {
    order: 4;
  }
  .ph.ph--static.is-focused .ph__close {
    order: 0;
    position: absolute;
  }
  .ph.ph--static.is-focused .ph__feat-dots {
    grid-auto-flow: column;
    gap: 0.65rem;
  }
  .ph.ph--static.is-focused .ph__detail-btn {
    width: min(100%, 220px);
  }
  .ph.ph--static.is-focused .ph__badge {
    justify-self: center;
  }
  .ph.ph--static.is-focused .ph__title--detail {
    text-align: left;
    max-width: 11ch;
    font-style: italic;
  }
  .ph.ph--static.is-focused .ph__title {
    font-style: italic;
  }
  .ph.ph--static.is-focused .ph__sub {
    margin-left: 0;
    margin-right: 0;
  }
  .ph.ph--static.is-focused .ph__badge {
    justify-self: start;
  }
  .ph.ph--static.is-focused .ph__can.is-active:not(.is-flying),
  .ph.ph--static.is-detail .ph__can.is-active:not(.is-flying) {
    width: min(42vw, 190px) !important;
    transform: translate3d(0, 0, 0) rotate(-18deg) scale(1.02) !important;
  }
  /* Mobile lineup: tekli yatay kaydırma — focus/slam yok */
  .ph.ph--static:not(.is-focused) .ph__stage {
    width: 100%;
    overflow: visible;
  }
  .ph.ph--static:not(.is-focused) .ph__nav {
    display: grid;
    place-items: center;
    position: absolute;
    top: 42%;
    z-index: 6;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }
  .ph.ph--static:not(.is-focused) .ph__nav:active {
    transform: scale(0.94);
  }
  .ph.ph--static:not(.is-focused) .ph__nav--prev {
    left: 0.35rem;
  }
  .ph.ph--static:not(.is-focused) .ph__nav--next {
    right: 0.35rem;
  }
  .ph.ph--static.is-focused .ph__nav {
    display: none !important;
  }
  .ph.ph--static:not(.is-focused) .ph__rail {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    height: var(--vitrin-stage-h);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }
  .ph.ph--static:not(.is-focused) .ph__rail::-webkit-scrollbar {
    display: none;
  }
  .ph.ph--static:not(.is-focused) .ph__can--3d,
  .ph.ph--static:not(.is-focused) .ph__can--3d:hover,
  .ph.ph--static:not(.is-focused) .ph__can--3d:focus {
    flex: 0 0 100%;
    width: 100%;
    max-width: none;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transform: none !important;
    cursor: grab;
  }
  .ph.ph--static:not(.is-focused) .ph__can--3d .ph3d {
    width: min(68vw, 240px);
    height: calc(var(--vitrin-stage-h) - 2.5rem);
    max-height: calc(var(--vitrin-stage-h) - 2.5rem);
    margin-inline: auto;
    aspect-ratio: 0.52 / 1;
    transition: transform 0.38s var(--ph-ease);
    transform: scale(1);
    transform-origin: 50% 48%;
  }
  /* Mobil zoom: oran bozulmasın — sadece scale (canvas boyutu aynı kalır) */
  .ph.ph--static.is-can-zoomed:not(.is-focused) {
    overflow: visible;
  }
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__stage,
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__rail {
    overflow: visible;
  }
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__can--3d.is-zoomed {
    z-index: 8;
  }
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__can--3d.is-zoomed .ph3d {
    width: min(68vw, 240px);
    height: calc(var(--vitrin-stage-h) - 2.5rem);
    max-height: calc(var(--vitrin-stage-h) - 2.5rem);
    transform: scale(1.48);
  }
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__can--3d:not(.is-zoomed) {
    opacity: 0.2;
    pointer-events: none;
  }
  .ph.ph--static.is-can-zoomed .ph__spin-hint {
    color: rgba(255, 255, 255, 0.72);
  }
  .ph.ph--static .ph__can span {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    opacity: 0.75;
  }
  .ph__spin-hint {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 700px) {
  .ph.ph--static {
    --vitrin-stage-h: min(52vh, 420px);
  }
  .ph.ph--static:not(.is-focused) .ph__can--3d .ph3d {
    width: min(74vw, 260px);
  }
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__can--3d.is-zoomed .ph3d {
    width: min(74vw, 260px);
    transform: scale(1.52);
  }
}
@media (max-width: 380px) {
  .ph.ph--static:not(.is-focused) .ph__can--3d .ph3d {
    width: min(78vw, 220px);
  }
  .ph.ph--static.is-can-zoomed:not(.is-focused) .ph__can--3d.is-zoomed .ph3d {
    width: min(78vw, 220px);
    transform: scale(1.55);
  }
}
