/* ═══════════════════════════════════════════════════════════
   SET İLANLARI — APPLE / TESLA PREMIUM STYLESHEET 2026 EDITION
   ═══════════════════════════════════════════════════════════ */

@property --ambient-x {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}
@property --ambient-y {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 50%;
}

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --red:        #E50914;
  --red-dk:     #B00000;
  --red-alpha:  rgba(229, 9, 20, 0.18);
  --red-glow:   rgba(229, 9, 20, 0.28);
  --black:      #0a0a0c;
  --surface-1:  #111113;
  --surface-2:  #18181b;
  --surface-3:  #1e1e22;
  --border:     rgba(255,255,255,0.07);
  --border-hi:  rgba(255,255,255,0.13);
  --border-red: rgba(229, 9, 20, 0.22);
  --text-1:     #f5f5f7;      /* Apple's almost-white */
  --text-2:     #a1a1a6;      /* Apple's secondary text */
  --text-3:     #636366;
  --nav-h:      110px;
  --ease:       cubic-bezier(.4, 0, .2, 1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  interpolate-size: allow-keywords;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--black);
  color: var(--text-1);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
}
h1, h2, h3, h4, h5, h6,
.section-title, .split-h, .sol-h, .cta-h, .mod-title, .hero-h1 {
  text-wrap: balance;
}
p, .section-desc, .split-p, .mod-body, .cta-p, .hero-sub {
  text-wrap: pretty;
}
a    { color: inherit; text-decoration: none; }
img  { display: block; max-width: 100%; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ─── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--red);
  z-index: 300;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .1s linear;
  box-shadow: 0 0 12px var(--red-glow);
}

/* ─── LAYOUT ─────────────────────────────────────────────── */
.section-head { max-width: 720px; margin: 0 auto 4rem; text-align: center; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: none;
  color: var(--text-2);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '//';
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -.04em;
  flex-shrink: 0;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text-1);
  margin-bottom: .75rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}
.accent { color: var(--red); }

/* ─── REVEAL ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  translate: 0 28px;
  transition:
    opacity .65s var(--ease),
    translate .65s var(--ease);
  transition-delay: calc(var(--d, 0) * .11s);
  will-change: opacity, translate;
}
.fade-up.in { opacity: 1; translate: 0 0; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 980px;
  transition: background .25s, box-shadow .25s, translate .25s var(--ease-spring);
  box-shadow: 0 4px 24px var(--red-glow);
  white-space: nowrap;
}
.pill-btn:hover {
  background: #f01323;
  box-shadow: 0 6px 36px rgba(229,9,20,.5);
  translate: 0 -2px;
}
.pill-lg { font-size: 1rem; padding: .8rem 1.75rem; }

.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-1);
  font-weight: 500;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 980px;
  border: 1px solid var(--border-hi);
  background: rgba(255,255,255,.04);
  transition: background .25s, border-color .25s, translate .25s var(--ease-spring);
  white-space: nowrap;
}
.ghost-btn:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.22);
  translate: 0 -2px;
}
.ghost-btn svg { transition: translate .25s var(--ease-spring); }
.ghost-btn:hover svg { translate: 4px 0; }
.ghost-lg { font-size: 1rem; padding: .8rem 1.75rem; }

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  transition: background .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(10,10,12,.85);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 28px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-logo {
  width: 110px; height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(229,9,20,.6));
  transition: filter .3s;
}
.brand:hover .brand-logo { filter: drop-shadow(0 0 18px rgba(229,9,20,.8)); }
.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--text-1);
}
.brand-name em { font-style: normal; color: var(--red); }

/* Nav links */
.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  padding: .45rem .85rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
  letter-spacing: .01em;
}
.nav-a:hover { color: var(--text-1); background: rgba(255,255,255,.06); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
  margin-left: auto;
}
.burger:hover { background: rgba(255,255,255,.07); }
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text-1);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

/* Mobile drawer */
.mobile-drawer {
  display: none;
  padding: 1.5rem 28px 2rem;
  background: rgba(10,10,12,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer ul {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.mobile-drawer a {
  display: block;
  font-size: 1rem;
  color: var(--text-2);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-drawer a:hover { color: var(--text-1); }
.drawer-pill { border: none; margin-top: 1rem; display: inline-flex; }
.mobile-drawer.open {
  display: flex;
  flex-direction: column;
  height: calc(100svh - var(--nav-h));
  overflow-y: auto;
}

/* ═══════════════════════════════════════════════════════════
   §1 HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Scene */
.hero-scene {
  position: absolute;
  inset: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.06);
  animation: heroKenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1.06) translateX(0); }
  to   { transform: scale(1.13) translateX(-2%); }
}
.hero-dim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(10,10,12,.88) 45%, rgba(10,10,12,.3) 100%),
    linear-gradient(to bottom, rgba(10,10,12,.4)  0%,  rgba(10,10,12,.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: .5;
  pointer-events: none;
}

/* Cinematic sweeps */
.sweep {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(229,9,20,.35) 40%, transparent);
  opacity: 0;
  animation: sweepMove 8s ease-in-out infinite;
  filter: blur(.8px);
  will-change: transform, opacity;
}
.sweep-1 { left: 22%; animation-delay: 0s; }
.sweep-2 { left: 72%; animation-delay: 4s; animation-duration: 9s; }
@keyframes sweepMove {
  0%   { opacity: 0; transform: scaleY(.3) translateY(-60%); }
  30%  { opacity: 1; }
  70%  { opacity: .7; }
  100% { opacity: 0; transform: scaleY(.3) translateY(60%); }
}

/* Anamorphic lens flare */
.lens-flare {
  position: absolute;
  top: 38%; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 10%,
    rgba(229,9,20,.18) 30%,
    rgba(255,200,150,.35) 50%,
    rgba(229,9,20,.18) 70%,
    transparent 90%
  );
  filter: blur(3px);
  animation: flareFlicker 6s ease-in-out infinite;
}
@keyframes flareFlicker {
  0%,100% { opacity: .3; scaleX: 1; }
  50%     { opacity: .8; }
}

/* Film strip */
.filmstrip {
  position: absolute;
  left: 0; right: 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--red)  0,    var(--red)  26px,
    transparent 26px, transparent 30px
  );
  opacity: .2;
}
.filmstrip-top { top: 0; }

/* Hero body */
.hero-body {
  position: relative;
  z-index: 2;
  width: min(700px, 100% - 56px);
  margin-left: max(28px, calc((100vw - 1280px) / 2 + 28px));
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(229,9,20,.9);
  background: rgba(229,9,20,.08);
  border: 1px solid var(--border-red);
  border-radius: 980px;
  padding: .3rem .9rem;
  margin-bottom: 1.75rem;
}
.eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 6px var(--red);
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.65); }
}

.hero-h1 {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.035em;
  color: var(--text-1);
  margin-bottom: 1.5rem;
}
.hero-h1 mark {
  background: none;
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,9,20,.4);
  padding: 0;
  margin: 0;
  display: inline;
  vertical-align: baseline;
  line-height: inherit;
}

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  font-weight: 400;
}
.d-lg { display: block; }

.hero-actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* KPI strip */
.hero-kpi {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.kpi-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.kpi-n {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text-1);
  line-height: 1;
}
.kpi-item span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.kpi-sep {
  width: 1px; height: 36px;
  background: var(--border-hi);
  flex-shrink: 0;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.scroll-cue-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, var(--red) 55%, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(.4) translateY(-50%); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: scaleY(1) translateY(0%); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   §2 MARQUEE BAND
═══════════════════════════════════════════════════════════ */
.marquee-band {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface-1);
  padding: .9rem 0;
}
.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track .mx { color: var(--red); opacity: .6; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }

/* ═══════════════════════════════════════════════════════════
   §3 SPLIT SECTION (Problem)
═══════════════════════════════════════════════════════════ */
.split-section {
  padding: 8rem 0;
  background: var(--black);
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 28px;
}
.split-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
  align-self: start;
}
.split-h {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text-1);
}
.split-p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.72;
}

/* Problem cards */
.problem-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.p-card {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: .75rem 1.25rem;
  align-items: start;
  transition: background .3s;
  cursor: default;
}
.p-card:first-child { border-top: 1px solid var(--border); }
.p-card:hover { background: rgba(255,255,255,.02); }
.p-num {
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .08em;
  padding-top: .2rem;
}
.p-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--text-1);
  margin-bottom: .35rem;
  grid-column: 2;
}
.p-card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.65;
  grid-column: 2;
}

/* ═══════════════════════════════════════════════════════════
   §4 SOLUTION (cinematic full-width)
═══════════════════════════════════════════════════════════ */
.solution-scene {
  padding: 8rem 0;
  background: var(--surface-1);
  border-block: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.solution-scene::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(229,9,20,.07) 0%, transparent 65%);
  pointer-events: none;
}
.sol-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 28px;
}
.sol-h {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-1);
}
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.sol-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 2.25rem;
  background: var(--surface-2);
  transition: background .3s;
  cursor: default;
}
.sol-item:hover { background: var(--surface-3); }
.sol-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: .1rem;
  filter: drop-shadow(0 0 6px rgba(229,9,20,.4));
}
.sol-item h3 {
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .35rem;
  color: var(--text-1);
}
.sol-item p {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.62;
}

/* ═══════════════════════════════════════════════════════════
   §5 MODULES (Tesla big card)
═══════════════════════════════════════════════════════════ */
.modules-section {
  padding: 8rem 0;
  background: var(--black);
  content-visibility: auto;
  contain-intrinsic-size: auto 650px;
}
.modules-section .section-head { margin-bottom: 3.5rem; }

.mod-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 28px;
}

.mod-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  cursor: default;
  transition:
    border-color .4s var(--ease),
    transform .4s var(--ease),
    box-shadow .4s var(--ease);
  --glare-x: 50%;
  --glare-y: 50%;
  --glare-opacity: 0;
}
.mod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 200px at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.07), transparent 85%);
  pointer-events: none;
  z-index: 3;
  opacity: var(--glare-opacity);
  transition: opacity 0.4s var(--ease);
}
.mod-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 40%, rgba(229, 9, 20, 0.08) 50%, transparent 60%, transparent 100%);
  background-size: 200% 100%;
  background-position-x: 150%;
  transition: background-position 0s;
  pointer-events: none;
  z-index: 2;
}
.mod-card:hover {
  border-color: rgba(229,9,20,.4);
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0,0,0,.55), 0 0 0 1px var(--border-red);
  --glare-opacity: 1;
}
.mod-card:hover::after {
  background-position-x: -50%;
  transition: background-position 0.9s var(--ease);
}
.mod-featured {
  background: linear-gradient(135deg, rgba(229,9,20,.09) 0%, var(--surface-1) 55%);
  border-color: var(--border-red);
}
.mod-featured-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--red);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .65rem;
  border-radius: 980px;
  z-index: 5;
}

.mod-inner {
  position: relative;
  z-index: 4;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 300px;
}
.mod-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
}
.mod-title {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--text-1);
}
.mod-body {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.68;
  flex: 1;
}
.mod-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  list-style: none;
}
.mod-tags li {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-3);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 980px;
  padding: .2rem .65rem;
  letter-spacing: .04em;
  transition: color .2s, border-color .2s;
}
.mod-card:hover .mod-tags li {
  color: var(--text-2);
  border-color: var(--border-hi);
}
.mod-arrow {
  color: var(--text-3);
  transition: color .3s, translate .3s var(--ease-spring);
  align-self: flex-end;
}
.mod-card:hover .mod-arrow {
  color: var(--red);
  translate: 4px 0;
}
.mod-accent-bar {
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.mod-card:hover .mod-accent-bar { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════
   §6 STEPS
═══════════════════════════════════════════════════════════ */
.steps-section {
  padding: 8rem 0;
  background: var(--surface-1);
  border-block: 1px solid var(--border);
  content-visibility: auto;
  contain-intrinsic-size: auto 550px;
}
.steps-inner {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 28px;
}
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.step-row {
  display: grid;
  grid-template-columns: 5rem 1fr;
  align-items: start;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.step-row:first-child { border-top: 1px solid var(--border); }
.step-row:hover { background: rgba(255,255,255,.02); }
.step-n {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  color: rgba(229,9,20,.15);
  transition: color .3s;
  font-feature-settings: 'tnum';
}
.step-row:hover .step-n { color: rgba(229,9,20,.4); }
.step-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text-1);
  margin-bottom: .5rem;
  padding-top: .5rem;
}
.step-body p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.68;
}

/* ═══════════════════════════════════════════════════════════
   §7 ECOSYSTEM
═══════════════════════════════════════════════════════════ */
.eco-section {
  padding: 8rem 0;
  background: var(--black);
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}
.eco-orbit-wrap {
  display: flex;
  justify-content: center;
  padding: 2rem 0;
  overflow: hidden;
  width: 100%;
}
.eco-orbit {
  position: relative;
  width: 540px;
  height: 540px;
  flex-shrink: 0;
}
/* Hub */
.eco-hub {
  position: absolute;
  left: 50%; top: 50%;
  translate: -50% -50%;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1.5px solid rgba(229,9,20,.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 10;
  box-shadow:
    0 0 0 12px rgba(229,9,20,.05),
    0 0 0 28px rgba(229,9,20,.025),
    0 0 80px rgba(229,9,20,.2);
  animation: hubPulse 3s ease-in-out infinite alternate;
}
@keyframes hubPulse {
  from { box-shadow: 0 0 0 12px rgba(229,9,20,.05), 0 0 0 28px rgba(229,9,20,.025), 0 0 60px rgba(229,9,20,.15); }
  to   { box-shadow: 0 0 0 16px rgba(229,9,20,.08), 0 0 0 36px rgba(229,9,20,.04),  0 0 100px rgba(229,9,20,.3); }
}
.eco-hub img {
  width: 96px; height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(229,9,20,.5));
}
.eco-hub span {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--text-2);
}

/* Orbit rings */
.orb-ring {
  position: absolute;
  border-radius: 50%;
  left: 50%; top: 50%;
  translate: -50% -50%;
  border: 1px solid rgba(229,9,20,.12);
}
.orb-ring-1 { width: 240px; height: 240px; animation: ringFade 4s ease-in-out infinite alternate; }
.orb-ring-2 { width: 400px; height: 400px; animation: ringFade 4s ease-in-out 2s infinite alternate; }
@keyframes ringFade {
  from { opacity: .4; } to { opacity: .9; }
}

/* Nodes — positioned by CSS custom properties */
.orb-node {
  position: absolute;
  left: 50%; top: 50%;
  translate:
    calc(-50% + cos(calc(var(--a) * 1deg)) * var(--r))
    calc(-50% + sin(calc(var(--a) * 1deg)) * var(--r));
  z-index: 5;
}
.orb-node > * {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .8rem .9rem;
  width: 104px;
  text-align: center;
  color: var(--text-2);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: border-color .3s, color .3s, translate .3s var(--ease-spring), box-shadow .3s;
  cursor: default;
  animation: nodeFloat 4s ease-in-out infinite;
  animation-delay: calc(var(--a) * 0.015s);
  will-change: transform;
}
.orb-node > *:hover {
  border-color: rgba(229,9,20,.5);
  color: var(--text-1);
  translate: 0 -5px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 20px rgba(229,9,20,.2);
}
.orb-node svg { color: var(--red); flex-shrink: 0; }
@keyframes nodeFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

/* SVG connections */
.eco-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   §8 STATS
═══════════════════════════════════════════════════════════ */
.stats-section {
  padding: 8rem 0;
  background: var(--surface-1);
  border-block: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: auto 450px;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 15% 60%, rgba(229,9,20,.06) 0%, transparent 70%),
    radial-gradient(ellipse 45% 50% at 85% 40%, rgba(229,9,20,.04) 0%, transparent 70%);
  pointer-events: none;
}
.stats-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 28px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.stat-block {
  text-align: center;
  transition-delay: calc(var(--d, 0) * .1s);
}
.stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: .5rem;
}
.counter-xl, .num-static {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--text-1);
  font-feature-settings: 'tnum';
}
.stat-num sup {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-block > p {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}
.stat-line {
  height: 2px;
  background: var(--surface-3);
  border-radius: 2px;
  overflow: hidden;
  max-width: 120px;
  margin-inline: auto;
}
.stat-fill {
  height: 100%;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--red-dk), var(--red));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) .3s;
}
.stat-block.in .stat-fill { transform: scaleX(1); }

/* ═══════════════════════════════════════════════════════════
   §9 VISION
═══════════════════════════════════════════════════════════ */
.vision-section {
  padding: 8rem 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}
/* subtle grid texture */
.vision-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black, transparent);
  opacity: .5;
}
.viz-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 6rem;
  align-items: center;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 28px;
  position: relative;
}
.viz-h {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.07;
  color: var(--text-1);
  margin-bottom: 1.5rem;
}
.viz-p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.viz-milestones { display: flex; flex-direction: column; gap: 1.25rem; }
.viz-ms {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.viz-ms-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--text-3);
  flex-shrink: 0;
  margin-top: 5px;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
.viz-ms.active .viz-ms-dot {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.viz-ms strong { display: block; font-size: .9rem; font-weight: 700; margin-bottom: 2px; color: var(--text-1); }
.viz-ms p { font-size: .82rem; color: var(--text-3); }

/* Globe */
.viz-globe {
  position: relative;
  width: 460px; height: 460px;
  margin: 0 auto;
}
.vg-ring {
  position: absolute;
  border-radius: 50%;
  left: 50%; top: 50%;
  translate: -50% -50%;
}
.r1 {
  width: 460px; height: 460px;
  border: 1px solid rgba(229,9,20,.12);
  animation: vgSpin 36s linear infinite;
}
.r2 {
  width: 340px; height: 340px;
  border: 1px solid rgba(229,9,20,.20);
  animation: vgSpin 24s linear infinite reverse;
}
.r3 {
  width: 220px; height: 220px;
  border: 1.5px solid rgba(229,9,20,.32);
  animation: vgSpin 16s linear infinite;
}
@keyframes vgSpin {
  from { transform: translate(-50%,-50%) rotate(0deg) rotateX(52deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) rotateX(52deg); }
}
.vg-center {
  position: absolute;
  left: 50%; top: 50%;
  translate: -50% -50%;
  width: 190px; height: 190px;
  border-radius: 32px;
  background: radial-gradient(135deg at 30% 30%, rgba(229,9,20,.18) 0%, var(--surface-2) 70%);
  border: 1.5px solid rgba(229,9,20,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 8px rgba(229,9,20,.05),
    0 0 40px rgba(229,9,20,.30),
    0 0 90px rgba(229,9,20,.12);
  animation: vgPulse 3.5s ease-in-out infinite alternate;
  z-index: 2;
}
@keyframes vgPulse {
  from { box-shadow: 0 0 0 8px rgba(229,9,20,.04), 0 0 35px rgba(229,9,20,.25), 0 0 70px rgba(229,9,20,.10); }
  to   { box-shadow: 0 0 0 14px rgba(229,9,20,.08), 0 0 55px rgba(229,9,20,.40), 0 0 110px rgba(229,9,20,.18); }
}
.vg-center img {
  width: 164px; height: 164px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(229,9,20,.55));
}
.vg-dot {
  position: absolute;
  left: 50%; top: 50%;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red), 0 0 24px rgba(229,9,20,.4);
  animation: dotOrb linear infinite;
  z-index: 3;
}
.d1 { animation-duration: 20s; }
.d2 { animation-duration: 15s; animation-direction: reverse; }
.d3 { animation-duration: 26s; }
.d4 { animation-duration: 12s; animation-direction: reverse; }
@keyframes dotOrb {
  from { transform: translate(-50%,-50%) rotate(0deg)   translateX(225px) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg) translateX(225px) rotate(-360deg); }
}

/* ═══════════════════════════════════════════════════════════
   §10 CTA
═══════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 10rem 0;
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  translate: -50% -50%;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(229,9,20,.12) 0%, transparent 70%);
  pointer-events: none;
  animation: ctaGlowPulse 5s ease-in-out infinite alternate;
}
@keyframes ctaGlowPulse {
  from { opacity: .7; }
  to   { opacity: 1; }
}
.cta-body {
  position: relative;
  z-index: 1;
  padding-inline: 28px;
}
.cta-h {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.04;
  margin-bottom: 1.5rem;
  color: var(--text-1);
}
.cta-p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 3rem;
}
.store-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.store-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: 16px;
  padding: 1rem 1.75rem;
  color: var(--text-1);
  min-width: 190px;
  transition: background .3s, border-color .3s, translate .3s var(--ease-spring), box-shadow .3s;
}
.store-pill:hover {
  background: var(--red);
  border-color: var(--red);
  translate: 0 -4px;
  box-shadow: 0 16px 50px rgba(229,9,20,.4);
}
.store-pill > div { text-align: left; }
.store-pill small { display: block; font-size: .68rem; color: rgba(255,255,255,.6); }
.store-pill strong { font-size: 1rem; font-weight: 700; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 28px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--text-3);
  line-height: 1.65;
  margin-top: .75rem;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .75rem; }
.social-a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all .3s;
}
.social-a:hover { background: var(--red); border-color: var(--red); color: #fff; translate: 0 -2px; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-1);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-col a {
  font-size: .875rem;
  color: var(--text-3);
  transition: color .2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.5rem 28px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: var(--text-3);
}
.footer-made strong {
  color: var(--red);
  font-weight: 700;
  letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════════════════
   NATIVE SCROLL-DRIVEN (Chrome 115+, Edge 115+, Safari 26+)
═══════════════════════════════════════════════════════════ */
@supports ((animation-timeline: view()) and (animation-range: entry)) {
  @media (prefers-reduced-motion: no-preference) {
    @keyframes fadeSlideIn  { from { opacity: 0; translate: 0 32px; } }
    @keyframes fadeSlideOut { to   { opacity: 0; translate: 0 -16px; } }

    .fade-up {
      /* Override JS-driven class with native when supported */
      opacity: 1;
      translate: 0 0;
      animation:
        fadeSlideIn  .6s linear backwards,
        fadeSlideOut .3s linear forwards;
      animation-timeline: view();
      animation-range: entry 0% entry 30%, exit 70% exit 100%;
      animation-delay: calc(var(--d, 0) * .1s);
    }
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .sol-grid          { grid-template-columns: repeat(2, 1fr); }
  .viz-inner         { grid-template-columns: 1fr; }
  .viz-globe         { display: none; }
  .eco-orbit         { width: 460px; height: 460px; }
  .orb-node          { --r: 170px; }
  .orb-ring-2        { width: 360px; height: 360px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-list, .nav-wrap > .pill-btn { display: none; }
  .burger { display: flex; }

  .split-grid   { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-sticky { position: static; }

  .mod-grid     { grid-template-columns: 1fr; }
  .sol-grid     { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav   { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom{ flex-direction: column; text-align: center; }

  .eco-orbit    { width: 340px; height: 340px; }
  .orb-node     { --r: 130px; }
  .orb-ring-1   { width: 176px; height: 176px; }
  .orb-ring-2   { width: 270px; height: 270px; }
  .orb-node > * { width: 82px; font-size: .62rem; padding: .6rem .6rem; }
  .eco-hub      { width: 100px; height: 100px; }
  .eco-hub img  { width: 60px; height: 60px; }

  .d-lg         { display: none; }
  .hero-body    { padding-top: calc(var(--nav-h) + 2rem); }
  .viz-inner    { padding-inline: 24px; }

  /* Hero başlık mobilde küçültülüyor */
  .hero-h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; }
  .hero-actions .pill-btn,
  .hero-actions .ghost-btn { justify-content: center; }
  .stats-grid    { grid-template-columns: 1fr; }
  .footer-nav    { grid-template-columns: 1fr; }
  .store-row     { flex-direction: column; align-items: center; }
  .store-pill    { width: 100%; max-width: 260px; justify-content: center; }
  .film-reel-section { padding: 3rem 0; }
  .film-frame { width: 280px; height: 210px; border-inline: 8px solid #000; }

  /* Küçük ekranlarda başlık daha da küçük */
  .hero-h1 { font-size: clamp(1.85rem, 9vw, 2.4rem); letter-spacing: -.02em; }
  .hero-body { padding-bottom: 3.5rem; }
  .hero-kpi { gap: 1rem; }
  .kpi-sep  { height: 28px; }

  /* Orbit: 315-480px arası ekranlarda node'lar taşmıyor */
  .eco-orbit    { width: 300px; height: 300px; }
  .orb-node     { --r: 105px; }
  .orb-ring-1   { width: 152px; height: 152px; }
  .orb-ring-2   { width: 228px; height: 228px; }
  .orb-node > * { width: 75px; font-size: .6rem; padding: .5rem .5rem; }
  .eco-hub      { width: 88px; height: 88px; }
  .eco-hub img  { width: 52px; height: 52px; }
}

@media (max-width: 360px) {
  .eco-orbit    { width: 268px; height: 268px; }
  .orb-node     { --r: 92px; }
  .orb-ring-1   { width: 134px; height: 134px; }
  .orb-ring-2   { width: 202px; height: 202px; }
  .orb-node > * { width: 66px; font-size: .53rem; padding: .38rem .38rem; border-radius: 8px; }
  .eco-hub      { width: 80px; height: 80px; }
  .eco-hub img  { width: 48px; height: 48px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .fade-up { opacity: 1; translate: 0 0; }
  .h1-word { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* ═══════════════════════════════════════════════════════════
   2026 PREMIUM CINEMATIC UPGRADES & MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════ */

/* Film Grain Overlay */
.cinematic-grain-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background: transparent;
  filter: url(#cinematic-noise);
}

/* Dynamic Lens Flare Overlay in Hero */
.hero-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 450px at var(--mouse-x, 30%) var(--mouse-y, 40%), rgba(229, 9, 20, 0.06), transparent 75%);
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.3s var(--ease);
  opacity: 0;
  z-index: 1;
}
.hero:hover .hero-scene::after {
  opacity: 1;
}

/* Cinematic Word Reveal */
.hero-h1 {
  opacity: 1 !important;
}
.h1-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
  animation: wordReveal 0.8s cubic-bezier(.16, 1, .3, 1) forwards;
  vertical-align: top;
  line-height: 1.03;
}
@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Film Reel Horizontal Showcase Section */
.film-reel-section {
  padding: 6rem 0;
  background: #060608;
  overflow: hidden;
  border-block: 1px solid var(--border);
  position: relative;
  content-visibility: auto;
  contain-intrinsic-size: auto 380px;
}
.film-reel-wrap {
  width: 100%;
  overflow: hidden;
  display: flex;
}
.film-reel-track {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  width: max-content;
  animation: filmReelScroll 40s linear infinite;
  will-change: transform;
}
.film-reel-section:hover .film-reel-track {
  animation-play-state: paused;
}
@keyframes filmReelScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.film-frame {
  width: 320px;
  height: 240px;
  background: #141416;
  border-inline: 12px solid #000;
  border-block: 4px solid #000;
  position: relative;
  box-shadow: 0 16px 40px rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.film-frame:hover {
  transform: scale(1.02) rotate(-1deg);
  border-color: #0c0c0e;
}
.frame-perf {
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.15) 0px, rgba(255, 255, 255, 0.15) 8px,
    transparent 8px, transparent 18px
  );
  background-size: 18px 8px;
  height: 8px;
  width: 100%;
}
.frame-content {
  flex: 1;
  margin-block: 8px;
  background: #000;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.frame-img-holder {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.75;
  transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), filter 0.6s var(--ease);
}
.film-frame:hover .frame-img-holder {
  transform: scale(1.06);
  opacity: 0.95;
  filter: none !important;
}
.frame-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  pointer-events: none;
}
.frame-tag {
  font-size: 0.58rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.frame-caption h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.25;
}

/* Magnetic Button Active State */
[data-magnetic] {
  transition: transform 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
