/* ============================================================
   Immo Intense 2026 — Sponsor Show (horizontal slideshow)
   Vertical scroll drives a horizontal cinematic track on desktop;
   mobile/touch falls back to an elegant vertical stack.
   ============================================================ */

* { box-sizing: border-box; }
html.loading, html.loading body { overflow: hidden; height: 100%; }
html, body { margin: 0; padding: 0; background: var(--color-canvas); color: var(--color-ink); }
body { font-family: var(--font-body); font-feature-settings: var(--font-feat); letter-spacing: var(--tracking-body);
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { max-width: 100%; display: block; }
::selection { background: rgba(177,76,255,0.42); color: #fff; }

/* ---- keyframes ---- */
@keyframes aUp { from { opacity: 0; transform: translateY(64px); } to { opacity: 1; transform: none; } }
@keyframes aDown { from { opacity: 0; transform: translateY(-50px); } to { opacity: 1; transform: none; } }
@keyframes aRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: none; } }
@keyframes aLeft { from { opacity: 0; transform: translateX(-100px); } to { opacity: 1; transform: none; } }
@keyframes aScale { from { opacity: 0; transform: scale(.84); } to { opacity: 1; transform: none; } }
@keyframes aClip { from { opacity: 0; clip-path: inset(0 100% 0 0); } to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes aWord { from { transform: translateY(112%); } to { transform: none; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes kenburns { from { transform: scale(1.03); } to { transform: scale(1.16); } }
@keyframes drawMark { to { stroke-dashoffset: 0; } }
@keyframes loaderWipe { to { transform: translateY(-101%); } }
@keyframes barFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes cue { 0%,100% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 70% { opacity: 0; transform: translate(-50%,12px); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes draw { from { stroke-dashoffset: 30; } to { stroke-dashoffset: 0; } }
@keyframes hintPulse { 0%,100% { transform: rotate(-12deg); } 50% { transform: rotate(12deg); } }

/* ---- film grain + vignette ---- */
.s-grain, .s-vignette { position: fixed; inset: 0; pointer-events: none; z-index: 60; }
.s-grain { opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.s-vignette { box-shadow: inset 0 0 320px 60px rgba(0,0,0,0.5); z-index: 1; }

/* DNA double-helix backdrop — subtle, twists with scroll, behind all panels */
.dna-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.85; }

/* ---- cinematic DNA loader ---- */
.loader { position: fixed; inset: 0; z-index: 100; overflow: hidden; will-change: transform;
  background: radial-gradient(120% 90% at 50% 44%, #15111b, #0A0A0B 70%); }
.loader.done { animation: loaderWipe 1.05s cubic-bezier(.76,0,.24,1) forwards; pointer-events: none; }
.loader-dna { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.loader-vig { position: absolute; inset: 0; z-index: 2; pointer-events: none;
  box-shadow: inset 0 0 280px 70px rgba(0,0,0,0.72); background: radial-gradient(58% 48% at 50% 50%, rgba(138,43,255,0.10), transparent 72%); }
.loader-center { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; text-align: center; padding: 24px; }
.loader-kicker { font: 600 12px/1 var(--font-body); letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-ink-muted); opacity: 0; animation: aUp .9s ease 1.1s both; }
.loader-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 6.5vw, 92px); line-height: 0.94; letter-spacing: -0.05em; color: #fff; opacity: 0; animation: loaderTitle 1.3s cubic-bezier(.2,1,.3,1) 1.5s both; }
.loader-title span { background: var(--gradient-violet); -webkit-background-clip: text; background-clip: text; color: transparent; }
.loader-sub { font: 600 12px/1 var(--font-body); letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-ink-muted); opacity: 0; animation: aUp .9s ease 2.05s both; }
.loader-bar { margin-top: 12px; width: min(280px, 64vw); height: 2px; background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden; opacity: 0; animation: fadeIn .6s ease 2.25s both; }
.loader-bar i { display: block; height: 100%; background: var(--gradient-violet); transform-origin: 0 50%; transform: scaleX(0); box-shadow: 0 0 12px rgba(177,76,255,0.8); animation: barFill 3.3s cubic-bezier(.4,0,.1,1) .45s forwards; }
@keyframes loaderTitle { from { opacity: 0; transform: translateY(30px) scale(0.96); filter: blur(7px); } to { opacity: 1; transform: none; filter: blur(0); } }
@media (prefers-reduced-motion: reduce) {
  .loader-kicker, .loader-title, .loader-sub, .loader-bar { animation: none; opacity: 1; }
  .loader-bar i { transform: scaleX(1); animation: none; }
  .loader.done { animation: fadeIn .3s reverse forwards; }
}

/* ---- fixed chrome ---- */
.s-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; transform: scaleX(0); transform-origin: 0 50%; z-index: 80; background: var(--gradient-violet); box-shadow: 0 0 18px rgba(177,76,255,0.7); }
.s-top { position: fixed; top: 0; left: 0; right: 0; z-index: 70; display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 56px); transition: transform .5s ease, opacity .5s ease, background .5s ease, backdrop-filter .5s ease; transform: translateY(-100%); opacity: 0; }
.s-top.is-on { transform: none; opacity: 1; background: rgba(10,10,11,0.55); backdrop-filter: blur(14px); border-bottom: 1px solid var(--color-hairline-soft); }
.s-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.s-brand .wm { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.7px; color: #fff; }
.s-brand .tg { font: 500 11px/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-ink-muted); }
.s-top-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--gradient-violet); color: #0A0A0B; font-weight: 600; font-size: 15px; letter-spacing: -0.2px; padding: 10px 18px; border-radius: var(--r-pill); text-decoration: none; transition: filter .2s ease, transform .12s ease; }
.s-top-cta:hover { filter: brightness(1.07); } .s-top-cta:active { transform: scale(0.97); }

/* ---- type helpers ---- */
.s-eyebrow { display: inline-flex; align-items: center; gap: 12px; font: 600 clamp(13px, 1.1vw, 15px)/1 var(--font-body); letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ink-muted); }
.s-eyebrow .bar { width: 30px; height: 1px; background: var(--color-hairline); }
.s-eyebrow .n { color: #fff; font-feature-settings: "tnum"; }
.s-display { font-family: var(--font-display); font-weight: 600; color: #fff; line-height: 0.92; letter-spacing: -0.04em; margin: 0; }
.s-h1 { font-size: clamp(48px, 7.5vw, 132px); }
.s-h2 { font-size: clamp(40px, 5.6vw, 92px); line-height: 0.94; }
.s-h3 { font-size: clamp(28px, 3.2vw, 50px); line-height: 1.0; letter-spacing: -0.03em; }
.s-lead { font: 400 clamp(17px, 1.55vw, 23px)/1.45 var(--font-body); letter-spacing: -0.3px; color: var(--color-ink-muted); max-width: 52ch; text-wrap: pretty; margin: 0; }
.s-lead b { color: #fff; font-weight: 500; }
.s-grad { background: var(--gradient-violet); -webkit-background-clip: text; background-clip: text; color: transparent; }
.s-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; pointer-events: none; z-index: 0; }
.s-glow--violet { background: radial-gradient(circle, rgba(138,43,255,0.9), rgba(177,76,255,0) 70%); }

/* ============================================================
   HORIZONTAL ENGINE
   ============================================================ */
/* ENGINE — base = vertical stack (mobile / no-JS); .hori = horizontal track */
.hstage { position: relative; }
.hpin { }
.htrack { display: block; }
.panel { position: relative; width: 100%; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: transparent; }
.panel-inner { position: relative; z-index: 3; width: 100%; max-width: 1280px; margin: 0 auto; padding: clamp(56px, 6vh, 92px) clamp(24px, 5vw, 72px); }

/* dense informational panels: smaller heading + tighter rhythm in BOTH modes */
.p-pak .head h2, .p-spk .head h2 { font-size: clamp(32px, 3.8vw, 56px); }
.p-cmp .panel-inner h2, .p-flow .panel-inner h2 { font-size: clamp(28px, 3vw, 46px); }
.hori .p-pak .panel-inner, .hori .p-spk .panel-inner, .hori .p-why .panel-inner, .hori .p-cmp .panel-inner, .hori .p-flow .panel-inner { padding-top: 60px; padding-bottom: 32px; }

/* horizontal mode (desktop, set by JS) */
.hori .hpin { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.hori .htrack { display: flex; height: 100svh; will-change: transform; }
.hori .panel { flex: 0 0 100vw; width: 100vw; height: 100svh; min-height: 0; }
.hori .panel-inner { padding-top: 74px; padding-bottom: 42px; max-height: 100svh; }

/* parallax layers (JS-driven transform) */
.pl { will-change: transform; }

/* ============================================================
   CHOREOGRAPHY — entrance on .panel.show
   ============================================================ */
.js [data-anim] { opacity: 0; }
.js .panel.show [data-anim] { animation: aUp .95s cubic-bezier(.2,1,.3,1) both; animation-delay: calc(var(--i,0) * .085s); }
.js .panel.show [data-anim="down"] { animation-name: aDown; }
.js .panel.show [data-anim="right"] { animation-name: aRight; }
.js .panel.show [data-anim="left"] { animation-name: aLeft; }
.js .panel.show [data-anim="scale"] { animation-name: aScale; }
.js .panel.show [data-anim="clip"] { animation-name: aClip; animation-duration: 1.1s; }
/* word mask */
.js .wline { display: block; overflow: hidden; padding-bottom: 0.06em; }
.js .wline .w { display: inline-block; transform: translateY(112%); }
.js .panel.show .wline .w { animation: aWord 1s cubic-bezier(.2,1,.3,1) both; animation-delay: calc(.05s + var(--i,0) * .085s); }
@media (prefers-reduced-motion: reduce) {
  .js [data-anim], .js .wline .w { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ============================================================
   HERO
   ============================================================ */
.p-hero .hero-slideshow { position: absolute; inset: -6% -8%; z-index: 0; overflow: hidden; background: #0c0c0e; }
.p-hero .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease; will-change: opacity, transform; }
.p-hero .hero-slide.is-active { opacity: 1; }
.js .p-hero .hero-slide.is-active { animation: kenburns 9s ease-out both; }
@media (prefers-reduced-motion: reduce) { .js .p-hero .hero-slide.is-active { animation: none; } .p-hero .hero-slide { transition: none; } }
.p-hero .hero-grade { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(10,10,11,0.62) 0%, rgba(10,10,11,0.18) 28%, rgba(10,10,11,0.48) 62%, rgba(10,10,11,0.98) 100%),
  radial-gradient(130% 90% at 14% 88%, rgba(10,10,11,0.78), rgba(10,10,11,0) 55%); }
.p-hero .hero-tint { position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, rgba(110,43,255,0.24), rgba(255,111,216,0.05) 55%, transparent); mix-blend-mode: soft-light; }
.p-hero .s-glow { width: 56vw; height: 56vw; left: -8vw; bottom: -16vw; z-index: 1; }
.p-hero .panel-inner { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.hero-title { font-size: clamp(52px, 8.6vw, 150px); margin: 0; line-height: 0.9; }
.hero-meta { margin-top: clamp(24px, 3.4vh, 38px); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.s-pill { display: inline-flex; align-items: center; gap: 11px; background: var(--gradient-violet); color: #0A0A0B; font-weight: 600; font-size: clamp(16px, 1.4vw, 20px); letter-spacing: -0.3px; padding: 14px 26px; border-radius: var(--r-pill); white-space: nowrap; }
.s-pill .dotpulse { width: 9px; height: 9px; border-radius: 50%; background: #0A0A0B; }
.hero-names { font: 500 clamp(14px, 1.25vw, 18px)/1.3 var(--font-body); letter-spacing: -0.1px; color: rgba(255,255,255,0.8); }
.hero-names .mut { color: rgba(255,255,255,0.45); }

/* ============================================================
   MANIFEST
   ============================================================ */
.p-manifest { background: transparent; }
.p-manifest .s-glow { width: 50vw; height: 50vw; right: -12vw; top: -10vw; opacity: 0.4; }
.p-manifest .panel-inner { display: flex; flex-direction: column; justify-content: center; gap: clamp(6px, 1vh, 18px); }
.ml { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 7.4vw, 124px); line-height: 0.98; letter-spacing: -0.045em; color: #fff; }
.ml.dim { color: rgba(255,255,255,0.32); }
.ml.indent { padding-left: clamp(40px, 12vw, 220px); }

/* ============================================================
   LOCATION
   ============================================================ */
.p-loc .panel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.loc-figure { position: relative; height: clamp(380px, 64vh, 640px); border-radius: var(--r-xl); overflow: hidden; background: #161618; border: 1px solid var(--color-hairline-soft); }
.loc-figure .loc-img { position: absolute; inset: -8%; background-size: cover; background-position: center; filter: contrast(1.05) brightness(0.86); }
.loc-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0) 55%, rgba(10,10,11,0.6) 100%), linear-gradient(90deg, rgba(110,43,255,0.18), transparent 60%); mix-blend-mode: soft-light; }
.loc-facts { display: flex; flex-direction: column; gap: 0; margin-top: 30px; }
.loc-fact { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 16px 0; border-top: 1px solid var(--color-hairline-soft); }
.loc-fact:last-child { border-bottom: 1px solid var(--color-hairline-soft); }
.loc-fact .v { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.9vw, 28px); letter-spacing: -0.03em; color: #fff; }
.loc-fact .k { font: 500 14px/1.3 var(--font-body); letter-spacing: 0.02em; color: var(--color-ink-muted); text-align: right; }

/* ============================================================
   SPEAKERS
   ============================================================ */
.p-spk .panel-inner { display: flex; flex-direction: column; justify-content: center; }
.p-spk .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(20px, 3vh, 36px); }
.spk { position: relative; aspect-ratio: 3 / 2.9; border-radius: var(--r-lg); overflow: hidden; background: #161618; border: 1px solid var(--color-hairline-soft); }
.spk .img { position: absolute; inset: 0; background-size: cover; transition: transform .9s cubic-bezier(.22,1,.36,1), filter .6s ease; transform: scale(1.04); filter: grayscale(0.18) contrast(1.05); }
.spk:hover .img { transform: scale(1.1); filter: grayscale(0) contrast(1.08) brightness(1.04); }
.spk::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0) 46%, rgba(10,10,11,0.92) 100%); }
.spk .cap { position: absolute; left: 20px; right: 20px; bottom: 20px; z-index: 2; }
.spk .cap .nm { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.7vw, 28px); letter-spacing: -0.03em; color: #fff; }
.spk .cap .ro { margin-top: 4px; font: 500 13px/1.3 var(--font-body); letter-spacing: 0.02em; color: rgba(255,255,255,0.62); }
.spk .num { position: absolute; top: 14px; left: 16px; z-index: 2; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: rgba(255,255,255,0.55); font-feature-settings: "tnum"; }
.marquee { margin-top: clamp(12px, 1.8vh, 22px); overflow: hidden; border-top: 1px solid var(--color-hairline-soft); border-bottom: 1px solid var(--color-hairline-soft); padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 2.6vw, 40px); letter-spacing: -0.03em; color: #fff; padding: 0 26px; white-space: nowrap; }
.marquee span.mut { color: var(--color-ink-muted); }

/* ============================================================
   AUDIENCE
   ============================================================ */
.p-aud .panel-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 3vw, 44px); }
.stat .v { font-family: var(--font-display); font-weight: 600; font-size: clamp(48px, 6vw, 104px); line-height: 0.9; letter-spacing: -0.05em; color: #fff; font-feature-settings: "tnum"; }
.stat .k { margin-top: 8px; font: 500 clamp(13px, 1.1vw, 16px)/1.35 var(--font-body); letter-spacing: 0.01em; color: var(--color-ink-muted); }
.aud-note { margin-top: 26px; display: inline-flex; align-self: flex-start; font: 500 13px/1.4 var(--font-body); letter-spacing: 0.02em; color: var(--color-ink-muted); background: var(--color-surface-1); padding: 10px 16px; border-radius: var(--r-pill); border: 1px solid var(--color-hairline-soft); }

/* ============================================================
   WHY
   ============================================================ */
.p-why .panel-inner { display: flex; flex-direction: column; justify-content: center; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: clamp(30px, 4vh, 52px); }
.why { display: flex; flex-direction: column; gap: 16px; background: var(--color-surface-1); border: 1px solid var(--color-hairline-soft); border-radius: var(--r-xl); padding: clamp(22px, 1.8vw, 30px); transition: background .3s ease, border-color .3s ease, transform .3s ease; }
.why:hover { background: var(--color-surface-2); border-color: var(--color-hairline); transform: translateY(-5px); }
.why .ic { width: 50px; height: 50px; border-radius: var(--r-md); background: var(--color-canvas); border: 1px solid var(--color-hairline); display: flex; align-items: center; justify-content: center; color: #fff; }
.why h3 { margin: 2px 0 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.6vw, 26px); letter-spacing: -0.03em; }
.why p { margin: 0; font: 400 clamp(14px, 1.1vw, 16px)/1.5 var(--font-body); color: var(--color-ink-muted); text-wrap: pretty; }

/* ============================================================
   PACKAGES
   ============================================================ */
.p-pak .panel-inner { display: flex; flex-direction: column; justify-content: center; }
.p-pak .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(20px, 2.4vh, 38px); align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; border-radius: var(--r-xxl); padding: clamp(18px, 1.5vw, 28px); overflow: hidden; isolation: isolate; background: var(--color-surface-1); border: 1px solid var(--color-hairline-soft); transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .3s ease; }
.tier:hover { transform: translateY(-8px); border-color: var(--color-hairline); box-shadow: 0 36px 80px rgba(0,0,0,0.5); }
.tier-eyebrow { font: 600 13px/1 var(--font-body); letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-ink-muted); }
.tier-name { margin: 9px 0 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(22px, 1.8vw, 29px); letter-spacing: -0.04em; color: #fff; }
.tier-price { margin-top: 11px; font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 2.8vw, 48px); letter-spacing: -0.05em; color: #fff; line-height: 0.95; font-feature-settings: "tnum"; }
.tier-price small { font-family: var(--font-body); font-weight: 500; font-size: 0.32em; letter-spacing: -0.2px; color: var(--color-ink-muted); }
.tier-max { margin-top: 10px; display: inline-flex; align-self: flex-start; font: 600 12px/1 var(--font-body); letter-spacing: 0.01em; padding: 6px 13px; border-radius: var(--r-pill); background: var(--color-canvas); color: rgba(255,255,255,0.8); border: 1px solid var(--color-hairline); }
.tier-list { list-style: none; margin: 15px 0 0; padding: 15px 0 0; border-top: 1px solid var(--color-hairline-soft); display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tier-list li { display: flex; gap: 10px; align-items: flex-start; font: 400 clamp(13px, 1vw, 15px)/1.34 var(--font-body); letter-spacing: -0.1px; color: rgba(255,255,255,0.92); }
.tier-list li svg { flex: 0 0 auto; margin-top: 2px; }
.tier-list li b { font-weight: 600; color: #fff; }
.tier-tickets { margin-top: 13px; display: flex; gap: 18px; }
.tier-tickets .tv { font-family: var(--font-display); font-weight: 600; font-size: 25px; letter-spacing: -0.04em; color: #fff; font-feature-settings: "tnum"; }
.tier-tickets .tk { font: 500 12px/1.2 var(--font-body); color: var(--color-ink-muted); margin-top: 2px; }
.tier-cta { margin-top: 16px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 13px; border-radius: var(--r-pill); text-decoration: none; font-weight: 600; font-size: 15px; letter-spacing: -0.2px; transition: transform .12s ease, filter .2s ease, background .2s ease; }
.tier-cta:active { transform: scale(0.98); }
.tier--plat { background: var(--color-surface-2); border-color: rgba(177,76,255,0.4); }
.tier--plat::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 60% at 50% 0%, rgba(177,76,255,0.22), transparent 60%); }
.tier--plat::after { content: ""; position: absolute; top: -40%; left: 50%; width: 120%; height: 80%; transform: translateX(-50%); z-index: -1; background: radial-gradient(circle, rgba(138,43,255,0.5), transparent 65%); filter: blur(50px); opacity: 0.5; }
.tier--plat .tier-eyebrow { color: #C99BFF; }
.tier--plat .tier-cta { background: var(--gradient-violet); color: #0A0A0B; }
.tier--plat .tier-cta:hover { filter: brightness(1.07); }
.tier--plat:hover { box-shadow: 0 40px 90px rgba(110,43,255,0.3); }
.tier-flag { position: absolute; top: 20px; right: 20px; font: 600 11px/1 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: #0A0A0B; background: var(--gradient-violet); padding: 7px 11px; border-radius: var(--r-pill); }
.tier--gold .tier-eyebrow { color: #FFB37A; }
.tier--gold .tier-cta { background: var(--gradient-orange); color: #0A0A0B; }
.tier--gold .tier-cta:hover { filter: brightness(1.06); }
.tier--silber .tier-cta { background: var(--color-canvas); color: #fff; border: 1px solid var(--color-hairline); }
.tier--silber .tier-cta:hover { background: var(--color-surface-1); }
.tier--silber .tier-eyebrow .new { color: var(--color-accent-blue); }

/* ============================================================
   COMPARISON
   ============================================================ */
.p-cmp .panel-inner { display: flex; flex-direction: column; justify-content: center; }
.cmp-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: clamp(20px, 3vh, 38px); }
.matrix { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; align-items: stretch; }
.mx-col { position: relative; display: flex; flex-direction: column; }
.mx-cell { display: flex; align-items: center; justify-content: center; min-height: clamp(42px, 5.4vh, 54px); padding: 6px 16px; border-top: 1px solid var(--color-hairline-soft); }
.mx-col--label .mx-cell { justify-content: flex-start; }
.mx-feat { font: 400 clamp(14px,1.15vw,17px)/1.22 var(--font-body); letter-spacing: -0.1px; color: rgba(255,255,255,0.82); }
.mx-head { min-height: clamp(76px, 10vh, 100px); flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-top: 0; }
.mx-col--label .mx-head { align-items: flex-start; }
.mx-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px,1.9vw,28px); letter-spacing: -0.04em; color: #fff; }
.mx-price { font: 500 14px/1 var(--font-body); color: var(--color-ink-muted); font-feature-settings: "tnum"; }
.mx-v { font: 500 clamp(13px,1.1vw,15px)/1.25 var(--font-body); letter-spacing: -0.1px; color: rgba(255,255,255,0.9); text-align: center; }
.mx-chk { display: block; }
.mx-chk .chk { stroke: var(--color-success); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.mx-dash { color: rgba(255,255,255,0.22); font-size: 20px; }
.mx-col--plat { background: var(--color-surface-2); border: 1px solid rgba(177,76,255,0.45); border-radius: var(--r-xl); box-shadow: 0 30px 80px rgba(110,43,255,0.28); transform: translateY(-14px); padding-bottom: 8px; }
.mx-col--plat .mx-cell { border-top-color: rgba(177,76,255,0.16); }
.mx-col--plat .mx-head { padding-top: 16px; }
.mx-flag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font: 600 11px/1 var(--font-body); letter-spacing: 0.1em; text-transform: uppercase; color: #0A0A0B; background: var(--gradient-violet); padding: 6px 13px; border-radius: var(--r-pill); white-space: nowrap; z-index: 2; }
@media (max-width: 720px) {
  .matrix { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .mx-cell { padding: 6px 8px; }
  .mx-feat { font-size: 12.5px; }
  .mx-col--plat { transform: none; }
}
.cmp { margin-top: clamp(26px, 3.5vh, 48px); width: 100%; border-collapse: collapse; }
.cmp th, .cmp td { padding: clamp(6px,1vh,12px) clamp(10px, 1.4vw, 22px); text-align: center; }
.cmp thead th { vertical-align: bottom; }
.cmp .feat { text-align: left; width: 34%; font: 400 clamp(14px, 1.2vw, 18px)/1.3 var(--font-body); letter-spacing: -0.1px; color: rgba(255,255,255,0.9); }
.cmp tbody tr { border-top: 1px solid var(--color-hairline-soft); }
.cmp .th-name { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.7vw, 27px); letter-spacing: -0.04em; color: #fff; }
.cmp .th-price { margin-top: 5px; font: 500 14px/1 var(--font-body); color: var(--color-ink-muted); font-feature-settings: "tnum"; }
.cmp .cell-v { font: 600 clamp(15px, 1.2vw, 18px)/1 var(--font-body); color: #fff; font-feature-settings: "tnum"; }
.cmp .cell-s { font: 500 clamp(12px, 1vw, 14px)/1.25 var(--font-body); color: var(--color-ink-muted); }
.cmp .dash { color: rgba(255,255,255,0.24); font-size: 20px; }
.cmp thead .col-plat { background: linear-gradient(180deg, rgba(177,76,255,0.2), rgba(177,76,255,0)); border-radius: 14px 14px 0 0; }
.cmp tbody .col-plat { background: rgba(177,76,255,0.06); }
.cmp .chk { stroke: var(--color-success); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.js .cmp.armed .chk { stroke-dasharray: 30; stroke-dashoffset: 30; }
.js .cmp.armed.is-rev .chk { animation: draw .55s cubic-bezier(.22,1,.36,1) forwards; }
@media (prefers-reduced-motion: reduce) { .js .cmp .chk { stroke-dashoffset: 0 !important; animation: none !important; } }

/* ============================================================
   ABLAUF + ADD-ONS
   ============================================================ */
.p-flow .panel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.steps { display: flex; flex-direction: column; gap: clamp(20px, 2.6vh, 34px); margin-top: 30px; }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step .num { flex: 0 0 auto; width: 50px; height: 50px; border-radius: 50%; background: var(--gradient-violet); color: #0A0A0B; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 23px; }
.step h3 { margin: 4px 0 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 1.7vw, 27px); letter-spacing: -0.03em; color: #fff; }
.step p { margin: 8px 0 0; font: 400 clamp(14px, 1.1vw, 16px)/1.5 var(--font-body); color: var(--color-ink-muted); text-wrap: pretty; }
.addon-list { display: flex; flex-direction: column; }
.addon-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 15px 0; border-top: 1px solid var(--color-hairline-soft); }
.addon-row:last-child { border-bottom: 1px solid var(--color-hairline-soft); }
.addon-row .nm { font-family: var(--font-display); font-weight: 600; font-size: clamp(16px, 1.3vw, 20px); letter-spacing: -0.03em; color: #fff; }
.addon-row .nm small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; letter-spacing: -0.1px; color: var(--color-ink-muted); margin-top: 3px; }
.addon-row .pr { font: 600 clamp(16px, 1.3vw, 20px)/1 var(--font-body); letter-spacing: -0.3px; color: var(--color-success); font-feature-settings: "tnum"; white-space: nowrap; }
.addon-row .pr.soft { color: var(--color-ink-muted); }
.urgency { margin-top: 28px; display: flex; align-items: center; gap: 14px; background: var(--color-surface-1); border: 1px solid var(--color-hairline-soft); border-radius: var(--r-lg); padding: 18px 22px; }
.urgency svg { flex: 0 0 auto; }
.urgency span { font: 500 clamp(14px, 1.1vw, 17px)/1.4 var(--font-body); letter-spacing: -0.2px; color: #fff; }
.urgency b { color: #C99BFF; }

/* ============================================================
   FINALE
   ============================================================ */
.p-finale .finale-bg { position: absolute; inset: -6% -8%; background-size: cover; background-position: center; z-index: 0; filter: grayscale(0.25) brightness(0.5); }
.p-finale .finale-scrim { position: absolute; inset: 0; z-index: 1; background: radial-gradient(120% 90% at 50% 50%, rgba(10,10,11,0.55), rgba(10,10,11,0.97) 78%); }
.p-finale .s-glow { width: 46vw; height: 46vw; left: 27vw; top: 8vw; z-index: 1; }
.p-finale .panel-inner { text-align: center; }
.p-finale .s-eyebrow { justify-content: center; }
.cta-row { margin-top: clamp(30px, 4vh, 46px); display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--gradient-violet); color: #0A0A0B; font-weight: 600; font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -0.2px; padding: 17px 30px; border-radius: var(--r-pill); text-decoration: none; transition: transform .12s ease, filter .2s ease; }
.cta-primary:hover { filter: brightness(1.07); } .cta-primary:active { transform: scale(0.98); }
.cta-ghost { display: inline-flex; align-items: center; gap: 10px; background: var(--color-surface-1); color: #fff; border: 1px solid var(--color-hairline); font-weight: 600; font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -0.2px; padding: 17px 30px; border-radius: var(--r-pill); text-decoration: none; transition: background .2s ease; }
.cta-ghost:hover { background: var(--color-surface-2); }
.partners { margin-top: clamp(40px, 6vh, 72px); display: flex; flex-direction: column; align-items: center; gap: 18px; }
.partners .lbl { font: 500 12px/1 var(--font-body); letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-ink-muted); }
.partners .logos { display: flex; align-items: center; gap: 40px; }
.partners .logos img { opacity: 0.92; }

/* ============================================================
   PROGRESS DOTS (panel indicator) + scrollcue
   ============================================================ */
.dots { position: fixed; right: clamp(16px, 2vw, 32px); top: 50%; transform: translateY(-50%); z-index: 65; display: flex; flex-direction: column; gap: 12px; opacity: 0; transition: opacity .5s ease; }
.dots.is-on { opacity: 1; }
.dots b { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.22); transition: background .3s ease, transform .3s ease; cursor: pointer; }
.dots b.active { background: var(--color-gradient-violet); transform: scale(1.5); }
.scrollcue { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 7px; font: 600 11px/1 var(--font-body); letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-ink-muted); }
.scrollcue .m { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.3); border-radius: 12px; position: relative; }
.scrollcue .m::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px; background: #fff; transform: translateX(-50%); animation: cue 1.6s ease-in-out infinite; }
.hori .scrollcue .m { transform: rotate(90deg); }

/* ============================================================
   MOBILE rotate hint
   ============================================================ */
.rotate-hint { position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 75; display: none; align-items: center; gap: 12px;
  background: rgba(20,20,22,0.92); backdrop-filter: blur(10px); border: 1px solid var(--color-hairline); border-radius: var(--r-pill); padding: 11px 18px 11px 14px; max-width: 92vw; }
.rotate-hint .ic { width: 26px; height: 26px; color: var(--color-gradient-violet); animation: hintPulse 2.4s ease-in-out infinite; }
.rotate-hint span { font: 500 13px/1.3 var(--font-body); letter-spacing: -0.1px; color: #fff; }
.rotate-hint button { margin-left: 4px; background: none; border: 0; color: var(--color-ink-muted); font-size: 18px; cursor: pointer; line-height: 1; padding: 2px 4px; }
@media (max-width: 760px) { .rotate-hint.show-hint { display: flex; } }

/* ============================================================
   MOBILE / vertical responsive
   ============================================================ */
@media (max-width: 1000px) {
  .p-loc .panel-inner, .p-aud .panel-inner, .p-flow .panel-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .p-loc .loc-figure { order: -1; height: clamp(280px, 42vh, 420px); }
}
@media (max-width: 720px) {
  .panel { min-height: auto; padding: 0; }
  .panel-inner { padding: clamp(64px, 12vh, 100px) 22px; }
  .p-hero, .p-finale { min-height: 100svh; }
  .hero-title { font-size: clamp(46px, 13vw, 84px); }
  .ml { font-size: clamp(34px, 11vw, 72px); }
  .stage-grid { grid-template-columns: 1fr; gap: 14px; }
  .spk { aspect-ratio: 16/11; }
  .stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .why-grid { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; gap: 16px; }
  .cmp { font-size: 13px; } .cmp .feat { width: 42%; } .cmp thead .th-price { display: none; }
  .s-top-cta span { display: none; }
  .dots { display: none; }
  .ml.indent { padding-left: 0; }
}
