/* ============ Tokens ============ */
:root {
  --bg: #120c0a;
  --bg2: #19110e;
  --surface: #211714;
  --line: rgba(238, 200, 174, .12);
  --line2: rgba(238, 200, 174, .24);
  --text: #f6ede6;
  --muted: #b9a79b;
  --peach: #eec8ae;
  --brick: #ab3723;
  --ember: #e0553a;
  --rec: #ff4b36;
  --cream: #fff4ec;

  --font-display: "Noto Sans Armenian", "Noto Sans", system-ui, sans-serif;
  --font-body: "Google Sans", "Noto Sans Armenian", system-ui, sans-serif;
  --font-led: "Handjet", "Noto Sans Armenian", monospace;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --radius: 24px;
  --gutter: clamp(16px, 4vw, 40px);
  --max: 1240px;

  interpolate-size: allow-keywords;
  color-scheme: dark;
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { text-wrap: balance; }
:focus-visible { outline: 2px solid var(--peach); outline-offset: 3px; border-radius: 8px; }

.ico { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.container { width: min(100% - 2 * var(--gutter), var(--max)); margin-inline: auto; }

.skip { position: fixed; left: 16px; top: -80px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--peach); color: #1a0f0b; font-weight: 600; text-decoration: none; }
.skip:focus { top: 12px; }

/* film grain */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .7 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (pointer: fine) { .grain { animation: grain 1s steps(6) infinite; } }
@keyframes grain {
  0% { transform: translate(0, 0); } 20% { transform: translate(-4%, 3%); } 40% { transform: translate(3%, -5%); }
  60% { transform: translate(-6%, -2%); } 80% { transform: translate(5%, 4%); } 100% { transform: translate(0, 0); }
}

/* ============ Buttons & links ============ */
.btn {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  background: var(--brick); color: var(--cream);
  font: 600 1rem/1.15 var(--font-body); text-decoration: none; white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(238, 200, 174, .2), 0 12px 32px -12px rgba(224, 85, 58, .7);
  transition: transform .3s var(--ease), background-color .3s, box-shadow .3s;
  touch-action: manipulation;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 236, 220, .35) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .8s var(--ease);
}
.btn:hover { background: #c04129; transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(238, 200, 174, .35), 0 18px 40px -12px rgba(224, 85, 58, .85); }
.btn:hover::before { transform: translateX(120%); }
.btn:active { transform: scale(.97); }
.btn .ico { transition: translate .3s var(--ease); }
.btn:hover .ico { translate: 3px 0; }
.btn--sm { min-height: 42px; padding: 0 18px; font-size: .9rem; }

.link { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--peach); font-weight: 600; text-decoration: none; }
.link span { background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size .45s var(--ease); }
.link:hover span { background-size: 100% 1px; }
.link .ico { transition: translate .3s var(--ease); }
.link:hover .ico { translate: 4px 0; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; }
.chips li { padding: 6px 12px; border: 1px solid var(--line2); border-radius: 999px; background: rgba(238, 200, 174, .04); color: var(--peach); font-size: .8rem; line-height: 1.2; }

/* viewfinder corners */
.vf::after {
  --c: rgba(238, 200, 174, .32); --s: 18px;
  content: ""; position: absolute; inset: 14px; pointer-events: none;
  background:
    linear-gradient(var(--c) 0 0) top left / var(--s) 1.5px, linear-gradient(var(--c) 0 0) top left / 1.5px var(--s),
    linear-gradient(var(--c) 0 0) top right / var(--s) 1.5px, linear-gradient(var(--c) 0 0) top right / 1.5px var(--s),
    linear-gradient(var(--c) 0 0) bottom left / var(--s) 1.5px, linear-gradient(var(--c) 0 0) bottom left / 1.5px var(--s),
    linear-gradient(var(--c) 0 0) bottom right / var(--s) 1.5px, linear-gradient(var(--c) 0 0) bottom right / 1.5px var(--s);
  background-repeat: no-repeat;
  transition: inset .5s var(--ease);
}
.vf:hover::after { --c: var(--peach); inset: 8px; }

/* ============ Reveal & tilt ============ */
.js [data-reveal] {
  opacity: 0; translate: 0 28px;
  transition: opacity .9s var(--ease), translate .9s var(--ease), filter .9s var(--ease),
              transform .5s var(--ease), background-color .3s, border-color .3s;
  transition-delay: calc(var(--i, 0) * 80ms), calc(var(--i, 0) * 80ms), calc(var(--i, 0) * 80ms), 0s, 0s, 0s;
}
.js .h2[data-reveal], .js .growth__title[data-reveal], .js .contact__title[data-reveal], .js .divider[data-reveal] { filter: blur(10px); }
.js [data-reveal].is-in { opacity: 1; translate: none; filter: none; }
[data-tilt] { transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)); }

/* ============ Header ============ */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px var(--gutter);
  border-bottom: 1px solid transparent;
  transition: background-color .35s, border-color .35s;
}
.header.is-scrolled { background: rgba(18, 12, 10, .75); border-color: var(--line); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2); }
.header__logo { display: block; padding: 10px 0; }
.header__logo img { height: 22px; width: auto; }
.js .header__logo { opacity: 0; translate: 0 -6px; pointer-events: none; transition: opacity .45s var(--ease), translate .45s var(--ease); }
.js .header.show-logo .header__logo { opacity: 1; translate: none; pointer-events: auto; }
.header__right { display: flex; align-items: center; gap: 12px; }

.lang { display: flex; padding: 3px; border: 1px solid var(--line2); border-radius: 999px; background: rgba(18, 12, 10, .5); }
.lang button {
  min-width: 44px; min-height: 38px; padding: 0 10px; border: 0; border-radius: 999px;
  background: none; color: var(--muted); cursor: pointer;
  font: 600 .8rem/1 var(--font-body); letter-spacing: .04em;
  transition: background-color .3s, color .3s;
}
.lang button:hover { color: var(--text); }
.lang button[aria-pressed="true"] { background: var(--peach); color: #1a0f0b; }

/* ============ Hero ============ */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  min-height: 100svh; display: flex; flex-direction: column;
  padding-top: 110px;
  background:
    radial-gradient(60% 48% at 50% 40%, rgba(171, 55, 35, .3), transparent 70%),
    radial-gradient(50% 30% at 50% 100%, rgba(238, 200, 174, .07), transparent 70%),
    var(--bg);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 40%), rgba(238, 200, 174, .08), transparent 60%);
}

.hero__bokeh { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .65; }
.hero__bokeh i {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--c), .16) 0 52%, rgba(var(--c), .3) 62%, rgba(var(--c), 0) 68%);
  animation: drift var(--d, 20s) ease-in-out infinite alternate;
}
.hero__bokeh i:nth-child(1) { --c: 224, 85, 58;   width: 220px; height: 220px; left: 6%;  top: 18%; --d: 22s; }
.hero__bokeh i:nth-child(2) { --c: 238, 200, 174; width: 120px; height: 120px; left: 20%; top: 64%; --d: 18s; }
.hero__bokeh i:nth-child(3) { --c: 255, 170, 90;  width: 70px;  height: 70px;  left: 34%; top: 12%; --d: 16s; }
.hero__bokeh i:nth-child(4) { --c: 224, 85, 58;   width: 280px; height: 280px; right: 4%; top: 50%; --d: 26s; }
.hero__bokeh i:nth-child(5) { --c: 238, 200, 174; width: 90px;  height: 90px;  right: 22%; top: 16%; --d: 19s; }
.hero__bokeh i:nth-child(6) { --c: 255, 170, 90;  width: 150px; height: 150px; right: 30%; top: 72%; --d: 24s; }
@keyframes drift { to { transform: translate(40px, -30px) scale(1.12); } }

.hero__frame {
  --c: rgba(238, 200, 174, .4); --s: 28px;
  position: absolute; inset: 84px var(--gutter) 108px; pointer-events: none;
  background:
    linear-gradient(var(--c) 0 0) top left / var(--s) 1.5px, linear-gradient(var(--c) 0 0) top left / 1.5px var(--s),
    linear-gradient(var(--c) 0 0) top right / var(--s) 1.5px, linear-gradient(var(--c) 0 0) top right / 1.5px var(--s),
    linear-gradient(var(--c) 0 0) bottom left / var(--s) 1.5px, linear-gradient(var(--c) 0 0) bottom left / 1.5px var(--s),
    linear-gradient(var(--c) 0 0) bottom right / var(--s) 1.5px, linear-gradient(var(--c) 0 0) bottom right / 1.5px var(--s);
  background-repeat: no-repeat;
  font: 500 1.05rem/1 var(--font-led); letter-spacing: .1em; color: var(--muted);
}
.hero__rec, .hero__meta { position: absolute; top: 16px; display: flex; align-items: center; gap: 8px; }
.hero__rec { left: 20px; }
.hero__meta { right: 20px; }
.hero__rec b { width: 9px; height: 9px; border-radius: 50%; background: var(--rec); box-shadow: 0 0 12px var(--rec); animation: blink 1.2s steps(2, jump-none) infinite; }
@keyframes blink { 50% { opacity: .15; } }

.hero__inner {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: clamp(22px, 3.6vh, 38px); padding: 40px var(--gutter); text-align: center;
}
.hero__logo { width: min(580px, 80vw); height: auto; }
.hero__title {
  margin: 0; max-width: 16ch;
  font-family: var(--font-display); font-stretch: 75%; font-weight: 850;
  font-size: clamp(2.7rem, 8.6vw, 7.4rem); line-height: .95; letter-spacing: -.01em;
}
.js .hero__logo, .js .hero__title, .js .hero__cta { animation: focusIn 1.2s var(--ease) both; }
.js .hero__title { animation-delay: .25s; }
.js .hero__cta { animation-delay: .5s; }
@keyframes focusIn { from { opacity: 0; filter: blur(16px); transform: scale(1.05); } to { opacity: 1; filter: none; transform: none; } }

.marquee {
  padding: 16px 0; border-block: 1px solid var(--line); overflow: hidden;
  -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 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); padding-right: clamp(18px, 3vw, 40px); }
.marquee span {
  font-family: var(--font-display); font-stretch: 75%; font-weight: 800;
  font-size: clamp(1.8rem, 4.6vw, 3.6rem); line-height: 1.1; text-transform: uppercase; white-space: nowrap;
  color: var(--peach);
}
.marquee .outline { color: transparent; -webkit-text-stroke: 1.2px rgba(238, 200, 174, .75); }
.marquee .ico { width: clamp(22px, 3vw, 36px); height: clamp(22px, 3vw, 36px); color: var(--ember); stroke-width: 1.6; animation: spin 8s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { rotate: 360deg; } }

/* ============ Sections ============ */
.section { position: relative; padding: clamp(72px, 9vw, 128px) 0; }
.kicker {
  display: flex; align-items: center; gap: 12px; margin: 0 0 18px;
  font: 500 1.15rem/1 var(--font-led); letter-spacing: .24em; color: var(--ember);
}
.kicker::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.kicker--center { justify-content: center; }
.kicker--center::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.h2 {
  margin: 0 0 clamp(34px, 5vw, 60px); max-width: 22ch;
  font-family: var(--font-display); font-stretch: 75%; font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.5rem); line-height: 1; letter-spacing: -.005em;
}
.h2--center { margin-inline: auto; text-align: center; }
.lead { margin: 0; max-width: 46ch; color: var(--muted); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

.card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(180deg, var(--surface), var(--bg2)); }

/* ============ Two ways ============ */
.ways__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.5vw, 32px); }
.way { display: flex; flex-direction: column; gap: 12px; padding: clamp(24px, 3vw, 38px); overflow: hidden; }
.way::before {
  content: ""; position: absolute; inset: auto 0 0; height: 70%; pointer-events: none;
  background: radial-gradient(60% 60% at 50% 100%, rgba(224, 85, 58, .28), transparent 70%);
  opacity: .6; transition: opacity .5s;
}
.way:hover::before { opacity: 1; }
.way__cap { position: relative; display: grid; gap: 14px; }
.way__text { margin: 0; max-width: 20ch; font-family: var(--font-display); font-stretch: 85%; font-weight: 700; font-size: clamp(1.35rem, 2.3vw, 1.85rem); line-height: 1.15; }
.way__media { position: relative; aspect-ratio: 4 / 3; }
.way__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .8s var(--ease); }
.way:hover .way__media img { transform: translateY(-8px) scale(1.03); }

/* ============ Growth ============ */
.growth__grid { display: grid; grid-template-columns: 5fr 7fr; align-items: center; gap: clamp(36px, 5vw, 80px); }
.growth__title { display: flex; flex-direction: column; margin: 0 0 24px; line-height: 1; }
.growth__small { font-family: var(--font-display); font-stretch: 75%; font-weight: 800; font-size: clamp(2rem, 4.4vw, 3.6rem); }
.growth__num {
  margin: .04em 0 .12em; color: var(--peach);
  font-family: var(--font-led); font-weight: 700; font-size: clamp(7rem, 17vw, 13rem); line-height: .8; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums; font-variation-settings: "ELSH" 16;
  text-shadow: 0 0 40px rgba(224, 85, 58, .55), 0 0 100px rgba(224, 85, 58, .3);
  transition: font-variation-settings 2s var(--ease) .3s;
}
.growth__title.is-in .growth__num { font-variation-settings: "ELSH" 2; }

.chart { margin: 0; padding: clamp(14px, 2.4vw, 28px); }
.chart svg { display: block; width: 100%; height: auto; overflow: visible; }
.chart__grid line { stroke: rgba(238, 200, 174, .12); stroke-dasharray: 4 6; }
.chart__grid text, .chart__x text { fill: var(--muted); font: 500 20px var(--font-led); letter-spacing: .04em; }
.chart__grid text { text-anchor: end; }
.chart__x text { text-anchor: middle; }
.chart__line { stroke-width: 5; stroke-linecap: round; stroke-dasharray: 1 1; stroke-dashoffset: 1; transition: stroke-dashoffset 2.2s var(--ease) .3s; }
.chart__area { opacity: 0; transition: opacity 1.4s ease 1.2s; }
.chart__dots circle {
  fill: var(--bg); stroke: var(--peach); stroke-width: 3;
  opacity: 0; scale: .2; transform-box: fill-box; transform-origin: center;
  transition: opacity .4s, scale .6s cubic-bezier(.34, 1.56, .64, 1);
  transition-delay: calc(.35s + var(--i) * .3s);
}
.chart__dots .chart__last { fill: var(--ember); stroke: var(--cream); }
.chart__badge { opacity: 0; translate: 0 10px; transition: opacity .6s var(--ease) 2.3s, translate .6s var(--ease) 2.3s; }
.chart__badge rect { fill: var(--brick); }
.chart__badge text { fill: var(--cream); font: 700 24px var(--font-led); text-anchor: middle; }
.chart.is-in .chart__line { stroke-dashoffset: 0; }
.chart.is-in .chart__area, .chart.is-in .chart__dots circle, .chart.is-in .chart__badge { opacity: 1; scale: 1; translate: none; }
.chart__legend { display: flex; align-items: center; gap: 10px; margin: 10px 0 0 8px; color: var(--muted); font-size: .9rem; }
.chart__legend i { width: 24px; height: 4px; border-radius: 2px; background: linear-gradient(90deg, var(--brick), var(--peach)); }

/* ============ Management ============ */
.formats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: -14px 0 0; padding: 0; list-style: none; }
.formats li { padding: 9px 18px; border: 1px solid var(--line2); border-radius: 999px; font-weight: 500; transition: border-color .3s, color .3s; }
.formats li:hover { border-color: var(--peach); color: var(--peach); }
.manage__stage { position: relative; margin-top: clamp(44px, 6vw, 76px); perspective: 1400px; }
.manage__stage::before {
  content: ""; position: absolute; left: 8%; right: 8%; bottom: -50px; height: 140px; z-index: -1;
  background: radial-gradient(closest-side, rgba(224, 85, 58, .38), transparent);
}
.manage__img { width: 100%; border: 1px solid var(--line2); border-radius: clamp(14px, 2vw, 28px); box-shadow: 0 40px 120px -40px rgba(0, 0, 0, .9); }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .manage__img { transform-origin: 50% 100%; animation: straighten linear both; animation-timeline: view(); animation-range: entry 5% cover 45%; }
  }
}
@keyframes straighten { from { transform: rotateX(26deg) scale(.88); opacity: .35; } to { transform: none; opacity: 1; } }

/* ============ Devices ============ */
.divider { display: flex; justify-content: center; margin: 0 auto clamp(26px, 4vw, 40px); }
.divider__iris { position: relative; display: grid; place-items: center; width: clamp(110px, 14vw, 150px); aspect-ratio: 1; }
.divider__ring { position: absolute; inset: 0; width: 100%; height: 100%; fill: none; stroke: var(--peach); stroke-width: .7; opacity: .75; animation: spin 20s linear infinite; }
.divider__iris::after { content: ""; position: absolute; width: 38%; aspect-ratio: 1; border-radius: 50%; background: var(--bg); box-shadow: 0 0 0 1px var(--line2), 0 0 40px rgba(224, 85, 58, .35); }
.divider__arrow { position: relative; z-index: 1; width: 22%; height: 22%; fill: none; stroke: var(--ember); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 50% { translate: 0 5px; } }

/* callout: only part of our range */
.range {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px;
  max-width: 820px; margin: -12px auto clamp(40px, 6vw, 72px); padding: clamp(24px, 3.4vw, 40px) clamp(22px, 4vw, 56px);
  border: 1px solid rgba(238, 200, 174, .3); border-radius: var(--radius); text-align: center;
  background: radial-gradient(100% 130% at 50% 0%, rgba(171, 55, 35, .38), transparent 70%), var(--bg2);
}
.range__ico { width: 34px; height: 34px; color: var(--ember); stroke-width: 1.6; animation: spin 14s linear infinite; }
.range__main { margin: 0; font-family: var(--font-display); font-stretch: 80%; font-weight: 800; font-size: clamp(1.7rem, 3.6vw, 2.8rem); line-height: 1.15; color: var(--peach); text-wrap: balance; }
.range__main span {
  background: linear-gradient(90deg, var(--brick), var(--ember)) 0 94% / 0 .14em no-repeat;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  transition: background-size 1.2s var(--ease) .5s;
}
.range.is-in .range__main span { background-size: 100% .14em; }
.range__sub { margin: 0; max-width: 46ch; font-size: clamp(1.08rem, 1.8vw, 1.35rem); line-height: 1.5; }

/* all devices as one group */
.lineup__stage { position: relative; max-width: 1100px; margin: 0 auto; aspect-ratio: 16 / 9; }
.lineup__stage::before {
  content: ""; position: absolute; left: 4%; right: 4%; bottom: -3%; height: 20%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(224, 85, 58, .45), transparent);
}
.lineup__stage::after { content: ""; position: absolute; inset: -6% 10% 30%; z-index: -1; background: radial-gradient(closest-side, rgba(238, 200, 174, .09), transparent); }
.dev { position: absolute; left: var(--x); bottom: var(--b); height: var(--h); aspect-ratio: var(--ar); transition: filter .4s; }
.dev img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 26px 30px rgba(0, 0, 0, .55)); animation: float 7s ease-in-out infinite; animation-delay: calc(var(--d) * -1.4s); }
@keyframes float { 50% { translate: 0 -8px; } }
.js .dev { opacity: 0; translate: 0 40px; transition: opacity .8s var(--ease) calc(var(--d) * 130ms), translate 1s var(--ease) calc(var(--d) * 130ms), filter .4s; }
.js .lineup.is-in .dev { opacity: 1; translate: none; }
.dev--1 { --ar: 666 / 884;  --x: 2%;  --b: 7%; --h: 90%; --d: 0; --px: 30%; --py: 14%; }
.dev--2 { --ar: 1 / 1;      --x: 23%; --b: 0%; --h: 50%; --d: 1; --px: 50%; --py: 22%; }
.dev--3 { --ar: 329 / 619;  --x: 46%; --b: 0%; --h: 58%; --d: 2; --px: 50%; --py: 12%; }
.dev--4 { --ar: 500 / 517;  --x: 59%; --b: 0%; --h: 44%; --d: 3; --px: 42%; --py: 14%; }
.dev--5 { --ar: 542 / 1147; --x: 73%; --b: 5%; --h: 95%; --d: 4; --px: 50%; --py: 12%; }
.pin {
  position: absolute; left: var(--px); top: var(--py); z-index: 2; translate: -50% -50%;
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: var(--brick); color: var(--cream); font: 600 1.05rem/1 var(--font-led);
  box-shadow: 0 0 0 4px rgba(171, 55, 35, .3), 0 6px 18px rgba(0, 0, 0, .5);
  transition: scale .35s var(--ease);
}
.pin::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--ember); animation: ping 2.4s var(--ease) infinite; animation-delay: calc(var(--d) * .4s); }
@keyframes ping { from { opacity: .9; scale: 1; } to { opacity: 0; scale: 1.9; } }
.lineup.is-focus .dev:not(.is-active) { filter: brightness(.35) saturate(.5); }
.dev.is-active .pin { scale: 1.2; }


.notes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.5vw, 28px); margin-top: clamp(40px, 6vw, 72px); }
.note { position: relative; display: flex; flex-direction: column; gap: 10px; padding: clamp(22px, 2.6vw, 32px); border: 1px dashed var(--line2); border-radius: var(--radius); }
.note__plus { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line2); border-radius: 50%; color: var(--peach); font: 300 1.8rem/1 var(--font-body); }
.note__plus .ico { width: 22px; height: 22px; }
.note__title { margin: 6px 0 0; font-family: var(--font-display); font-stretch: 85%; font-weight: 750; font-size: 1.4rem; line-height: 1.15; }
.note p { margin: 0; color: var(--muted); }
.note--accent { border-style: solid; border-color: rgba(238, 200, 174, .35); background: radial-gradient(120% 100% at 100% 0%, rgba(171, 55, 35, .4), transparent 60%), var(--bg2); }

/* ============ FAQ ============ */
.faq__grid { display: grid; grid-template-columns: 4fr 7fr; align-items: start; gap: clamp(32px, 5vw, 80px); }
.faq__side { position: sticky; top: 110px; }
.faq__side .h2 { margin-bottom: 16px; font-size: clamp(2.2rem, 4.2vw, 3.8rem); }
.faq__list { display: grid; gap: 14px; }
.qa { border: 1px solid var(--line); border-radius: 20px; background: var(--bg2); }
.qa[open] { border-color: rgba(238, 200, 174, .3); background: var(--surface); }
.qa summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: clamp(18px, 2.4vw, 26px); cursor: pointer; list-style: none;
  font-family: var(--font-display); font-stretch: 88%; font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.3;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover span { color: var(--peach); }
.qa summary i { position: relative; flex: none; width: 36px; height: 36px; border: 1px solid var(--line2); border-radius: 50%; transition: background-color .3s, border-color .3s; }
.qa summary i::before, .qa summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1.5px; background: var(--peach); translate: -50% -50%; }
.qa summary i::after { rotate: 90deg; transition: rotate .45s var(--ease); }
.qa[open] summary i { background: var(--brick); border-color: var(--brick); }
.qa[open] summary i::after { rotate: 0deg; }
.qa::details-content { block-size: 0; overflow: hidden; transition: block-size .5s var(--ease), content-visibility .5s allow-discrete; }
.qa[open]::details-content { block-size: auto; }
.qa__body { padding: 0 clamp(18px, 2.4vw, 26px) clamp(20px, 2.6vw, 28px); color: #dccbc0; }
.qa__body p { margin: 0 0 14px; }
.qa__body p:last-child { margin: 0; }
.qa__body ol { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; counter-reset: n; }
.qa__body li { display: grid; grid-template-columns: 34px 1fr; gap: 8px; counter-increment: n; }
.qa__body li::before { content: counter(n, decimal-leading-zero); color: var(--ember); font: 600 1.3rem/1.25 var(--font-led); }

/* ============ Contact / footer ============ */
.contact {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(84px, 12vw, 150px) 0 32px;
  border-radius: clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px) 0 0;
  background: radial-gradient(80% 60% at 30% 0%, #c4472d, transparent 70%), var(--brick);
  color: var(--cream);
}
.contact::before {
  content: ""; position: absolute; z-index: -1; width: min(900px, 140vw); aspect-ratio: 1; right: -24%; top: -30%; opacity: .09;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff4ec' stroke-width='.35'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='m14.31 8 5.74 9.94M9.69 8h11.48M7.38 12l5.74-9.94M9.69 16 3.95 6.06M14.31 16H2.83m13.79-4-5.74 9.94'/%3E%3C/svg%3E") center / contain no-repeat;
  animation: spin 80s linear infinite;
}
.contact__title { margin: 0 0 18px; max-width: 12ch; font-family: var(--font-display); font-stretch: 75%; font-weight: 850; font-size: clamp(2.1rem, 8vw, 6.8rem); line-height: .95; }
.contact__text { margin: 0 0 clamp(36px, 5vw, 60px); max-width: 44ch; color: rgba(255, 244, 236, .88); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile {
  display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 16px;
  padding: 22px 24px; border: 1px solid rgba(255, 244, 236, .2); border-radius: 22px;
  background-color: rgba(18, 12, 10, .26); text-decoration: none;
}
.tile:hover { background-color: rgba(18, 12, 10, .45); border-color: rgba(255, 244, 236, .45); transform: translateY(-4px); }
.tile .ico { grid-row: 1 / 3; width: 50px; height: 50px; padding: 13px; border-radius: 50%; background: var(--cream); color: var(--brick); stroke-width: 2; transition: background-color .3s, color .3s; }
.tile--tg:hover .ico { background: #2aabee; color: #fff; }
.tile--wa:hover .ico { background: #25d366; color: #fff; }
.tile__label { font-size: .85rem; opacity: .8; }
.tile__value { font-weight: 600; font-size: 1.15rem; line-height: 1.3; white-space: nowrap; }
.contact__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: clamp(64px, 9vw, 110px); padding-top: 28px; border-top: 1px solid rgba(255, 244, 236, .2); }
.contact__logo { width: min(300px, 62vw); height: auto; }
.contact__bottom p { margin: 0; opacity: .75; font-size: .9rem; }

/* floating CTA (mobile) */
.fab {
  position: fixed; left: 50%; bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 60;
  display: none; align-items: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 999px;
  background: var(--brick); color: var(--cream); font-weight: 600; text-decoration: none; white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(238, 200, 174, .25), 0 14px 40px -8px rgba(0, 0, 0, .75);
  translate: -50% 160%; transition: translate .55s var(--ease);
}
.fab.is-visible { translate: -50% 0; }

/* ============ Responsive ============ */
@media (max-width: 899px) {
  .header__cta { display: none; }
  .fab { display: inline-flex; }
  .growth__grid, .faq__grid { grid-template-columns: 1fr; }
  .faq__side { position: static; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .ways__grid, .notes { grid-template-columns: 1fr; }
  .hero__frame { inset: 76px 12px 96px; --s: 20px; font-size: .95rem; }
  .hero__rec { left: 14px; top: 12px; }
  .hero__meta { display: none; }
  .chart__grid text, .chart__x text { font-size: 24px; }
  .lineup__stage { aspect-ratio: 4 / 5; }
  .dev--1 { --x: 0%;  --b: 30%; --h: 58%; }
  .dev--2 { --x: -2%; --b: 0%;  --h: 30%; }
  .dev--3 { --x: 36%; --b: 0%;  --h: 38%; }
  .dev--4 { --x: 60%; --b: 0%;  --h: 28%; }
  .dev--5 { --x: 60%; --b: 27%; --h: 68%; }
  .pin { width: 28px; height: 28px; font-size: .95rem; }
}
@media (max-width: 560px) {
  .hero__bokeh i:nth-child(n + 4) { display: none; }
}

/* ============ Legal page ============ */
.legal { padding: 130px 0 clamp(60px, 8vw, 100px); }
.legal__inner { max-width: 760px; }
.legal__title { margin: 0 0 10px; font-family: var(--font-display); font-stretch: 78%; font-weight: 800; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1; }
.legal__meta { margin: 0 0 clamp(32px, 5vw, 48px); color: var(--muted); font-family: var(--font-led); font-size: 1.1rem; letter-spacing: .06em; }
.legal__block { margin-bottom: clamp(28px, 4vw, 44px); }
.legal__block h2 { margin: 0 0 12px; font-family: var(--font-display); font-stretch: 85%; font-weight: 750; font-size: clamp(1.25rem, 2.4vw, 1.6rem); line-height: 1.2; color: var(--peach); }
.legal__block p { margin: 0 0 12px; color: #dccbc0; }
.legal__block ul { margin: 0 0 12px; padding: 0; list-style: none; display: grid; gap: 10px; }
.legal__block li { position: relative; padding-left: 22px; color: #dccbc0; }
.legal__block li::before { content: ""; position: absolute; left: 4px; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); }
.legal__back { margin-top: 12px; }
.legal__back-ico { rotate: 180deg; }
.legal__back:hover .ico { translate: -4px 0; }
.legal__footer { padding: 28px 0 40px; border-top: 1px solid var(--line); color: var(--muted); font-size: .9rem; }
.legal__footer p { margin: 2px 0; }
.legal__owner { color: var(--text); }
.header__logo--static { opacity: 1 !important; translate: none !important; pointer-events: auto !important; }

.contact__legal { display: grid; gap: 4px; font-size: .9rem; opacity: .85; text-align: right; }
.contact__legal p { margin: 0; }
.contact__legal a { text-decoration: none; border-bottom: 1px solid rgba(255, 244, 236, .4); }
.contact__legal a:hover { border-color: var(--cream); }

/* ============ Cookie notice ============ */
.cookie {
  position: fixed; left: var(--gutter); bottom: calc(16px + env(safe-area-inset-bottom)); z-index: 80;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px;
  max-width: min(620px, calc(100% - 2 * var(--gutter)));
  padding: 16px 20px; border: 1px solid var(--line2); border-radius: 20px;
  background: rgba(26, 18, 15, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .9);
}
.cookie[hidden] { display: none; }
.cookie__text { margin: 0; flex: 1 1 260px; font-size: .95rem; color: var(--text); }
.cookie__actions { display: flex; align-items: center; gap: 10px; }
.cookie__link { color: var(--muted); font-size: .9rem; }
.cookie__link:hover { color: var(--peach); }
.cookie__btn {
  min-height: 44px; padding: 0 18px; border: 1px solid var(--line2); border-radius: 999px;
  background: none; color: var(--text); font: 600 .9rem/1 var(--font-body); cursor: pointer;
  transition: background-color .3s, border-color .3s, color .3s;
}
.cookie__btn:hover { border-color: var(--peach); color: var(--peach); }
.cookie__btn--yes { background: var(--brick); border-color: var(--brick); color: var(--cream); }
.cookie__btn--yes:hover { background: #c04129; border-color: #c04129; color: var(--cream); }
body.has-cookie .fab { bottom: calc(150px + env(safe-area-inset-bottom)); }

@media (max-width: 760px) {
  .cookie { left: 12px; right: 12px; max-width: none; padding: 14px 16px; }
  .cookie__actions { width: 100%; justify-content: flex-end; }
  .contact__legal { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; translate: none; filter: none; }
}
