/* ════════════════════════════════════════════════
   360 MEDIA Store — Styles
   Brand: Black · White · Orange (#FF6B00)
════════════════════════════════════════════════ */

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

/* ── CURSOR GLOW ── */
.cursor-dot { display: none; }
.cursor-glow {
  position: fixed; top: 0; left: 0; z-index: 99998;
  width: 0; height: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,107,0,0.22) 0%, rgba(255,140,50,0.08) 50%, transparent 70%);
  transition: width 0.3s cubic-bezier(0.25,1,0.5,1),
              height 0.3s cubic-bezier(0.25,1,0.5,1),
              opacity 0.25s;
  opacity: 0;
}
.cursor-glow.hover {
  width: 110px; height: 110px;
  opacity: 1;
}

/* ── 3D Logo (CSS transforms) ──────────────── */
.logo3d-scene {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  perspective: 900px;
}
.logo3d-layers {
  position: relative;
  width: 680px; height: 680px;
  transform-style: preserve-3d;
  display: flex; align-items: center; justify-content: center;
}
.logo3d-layer {
  position: absolute;
  width: 560px; height: auto;
  pointer-events: none;
  backface-visibility: hidden;
  image-rendering: auto;
}
.logo3d-front {
  /* original logo colors */
}
.logo3d-depth {
  filter: brightness(0.5) sepia(1) hue-rotate(-15deg) saturate(5);
}

:root {
  --bg:         #080808;
  --surface:    #111111;
  --surface-2:  #161616;
  --surface-3:  #1e1e1e;
  --border:     #1f1f1f;
  --border-2:   #2e2e2e;
  --text:       #f5f5f5;
  --text-2:     #aaaaaa;
  --text-3:     #666666;
  --orange:     #FF6B00;
  --orange-2:   #ff8c33;
  --orange-dim: rgba(255,107,0,0.12);
  --orange-glow:rgba(255,107,0,0.25);
  --glass:           rgba(255,255,255,0.055);
  --glass-hi:        rgba(255,255,255,0.09);
  --glass-border:    rgba(255,255,255,0.10);
  --glass-border-hi: rgba(255,255,255,0.22);
  --glass-blur:      24px;
  --glass-inset:     inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -1px 0 rgba(0,0,0,0.12);
  --glass-shadow:    0 8px 32px rgba(0,0,0,0.45), 0 2px 8px rgba(0,0,0,0.25);
  --green:      #10b981;
  --red:        #ef4444;
  --purple:     #8b5cf6;
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
  --header-h:   68px;
  --transition: 0.18s cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(255,107,0,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(120,60,220,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 60% 50%, rgba(255,107,0,0.025) 0%, transparent 70%);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; object-fit: cover; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── LAYOUT ───────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ── HEADER ───────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  transition: background var(--transition);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 8px 32px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex; align-items: center; height: var(--header-h); gap: 32px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 28px; width: auto; display: block; }

.nav { display: flex; gap: 2px; flex: 1; }
.nav-link {
  position: relative;
  font-size: 0.82rem; font-weight: 600; color: var(--text-2);
  padding: 7px 13px; border-radius: 100px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-link.active { color: var(--orange); }
.nav-link.active::after {
  content: ''; position: absolute; left: 50%; bottom: 2px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--orange);
  transform: translateX(-50%);
  animation: navDot .35s var(--ease-out);
}
@keyframes navDot { from { transform: translateX(-50%) scale(0); } to { transform: translateX(-50%) scale(1); } }
.nav-link.active { color: var(--text); }

.cart-btn {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
  flex-shrink: 0;
}
.cart-btn:hover { border-color: var(--orange); color: var(--text); }

.cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--orange); color: #fff;
  font-size: 0.65rem; font-weight: 800;
  min-width: 17px; height: 17px;
  border-radius: 100px; padding: 0 4px;
  display: none; align-items: center; justify-content: center;
}
.cart-badge.on { display: flex; }

.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: var(--radius-xs); border: 1px solid var(--border-2);
  background: var(--surface);
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--text-2); border-radius: 2px; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column;
  border-top: 1px solid var(--border);
  background: var(--surface); padding: 8px 16px 12px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 0.9rem; font-weight: 600; color: var(--text-2);
  padding: 11px 12px; border-radius: var(--radius-xs);
  transition: color var(--transition), background var(--transition);
}
.mobile-nav-link:hover { color: var(--text); background: var(--surface-2); }

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 0.875rem; font-weight: 700; border-radius: 100px;
  padding: 12px 26px; transition: transform 0.15s var(--ease-out), background 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out), border-color 0.18s var(--ease-out); cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(160deg, #ff8c33 0%, #FF6B00 45%, #e05900 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { background: linear-gradient(160deg, #ffa050 0%, #ff7c1a 45%, #ff6200 100%); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,0,0.45), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-primary:active { transform: scale(0.97); box-shadow: 0 2px 8px rgba(255,107,0,0.3); }
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inset), 0 4px 16px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: var(--glass-hi); border-color: var(--glass-border-hi); transform: translateY(-1px); }
.btn-ghost:active { transform: scale(0.97); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-icon { padding: 11px; border-radius: var(--radius-sm); }

.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius-xs);
  background: var(--surface-3); color: var(--text-2);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
}
.icon-btn:hover { background: var(--surface-2); color: var(--text); }

/* ── PAGE LOADER ──────────────────────────────── */
.page-loader {
  display: flex; align-items: center; justify-content: center; min-height: 60vh;
}
.loader-ring {
  width: 36px; height: 36px;
  border: 2px solid var(--border-2);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════
   HOME PAGE
══════════════════════════════════════════════ */

/* Hero */
.hero {
  padding: 90px 0 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim); border: 1px solid rgba(255,107,0,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  line-height: 1.4;
}
.hero-eyebrow::before { content: '●'; font-size: 0.5rem; vertical-align: middle; margin-right: 8px; animation: pulse 1.8s infinite; }
@media (max-width: 640px) {
  .hero-eyebrow {
    font-size: 0.65rem; letter-spacing: 0.08em;
    padding: 6px 14px;
    max-width: calc(100vw - 36px);
  }
}
@media (max-width: 380px) {
  .hero-eyebrow { border-radius: 14px; }
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900; letter-spacing: -0.05em; line-height: 1.02;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-size: 1.1rem; color: var(--text-2);
  max-width: 540px; margin: 0 auto 44px; line-height: 1.7;
}

.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-inset), 0 8px 32px rgba(0,0,0,0.4);
  display: inline-flex; margin: 0 auto;
}
.stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 32px; gap: 2px;
}
.stat + .stat { border-left: 1px solid var(--border-2); }
.stat-num { font-size: 1.4rem; font-weight: 900; color: var(--text); }
.stat-lbl { font-size: 0.72rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; }

/* Clickable stats — render as real buttons with press animation */
.stat-clickable {
  background: transparent; border: none; cursor: pointer; text-decoration: none;
  font-family: inherit; color: inherit;
  border-radius: 10px;
  transition: transform .08s var(--ease-out), background .15s var(--ease-out), box-shadow .15s var(--ease-out);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.stat-clickable:hover {
  background: rgba(255,107,0,.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.25), inset 0 0 0 1px rgba(255,107,0,.18);
  transform: translateY(-1px);
}
.stat-clickable:hover .stat-num { color: var(--orange); }
.stat-clickable:active {
  transform: translateY(2px) scale(.97);
  background: rgba(255,107,0,.12);
  box-shadow: 0 0 0 1px rgba(255,107,0,.25), inset 0 2px 6px rgba(0,0,0,.4);
  transition-duration: .04s;
}
.stat-clickable:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }

/* Category Cards Grid */
.categories-section { padding: 0 0 72px; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cat-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inset), 0 4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius); padding: 28px 20px 24px;
  cursor: pointer; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.cat-card:hover { border-color: var(--glass-border-hi); transform: translateY(-3px); background: linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.05) 100%); box-shadow: var(--glass-inset), 0 12px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.15); }
.cat-card:active { transform: scale(0.98); }
.cat-card-icon {
  font-size: 0;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,.18) 0%, rgba(255,107,0,.04) 100%);
  border: 1px solid rgba(255,107,0,.22);
  color: var(--orange);
  transition: transform .3s var(--ease-out);
}
.cat-card-icon svg { width: 26px; height: 26px; }
.cat-card:hover .cat-card-icon { transform: scale(1.08) rotate(-3deg); }

.cat-hero-eyebrow-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; vertical-align: middle;
  margin-right: 4px; color: var(--orange);
}
.cat-hero-eyebrow-ico svg { width: 16px; height: 16px; }
.cat-card-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.cat-card-count { font-size: 0.72rem; color: var(--text-3); }

/* Featured section */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 32px;
}
.section-title { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; }
.section-link {
  font-size: 0.82rem; font-weight: 700; color: var(--orange);
  display: flex; align-items: center; gap: 4px;
}
.section-link:hover { text-decoration: underline; }

/* Social proof */
.proof-bar {
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03); backdrop-filter: blur(20px); padding: 28px 0;
}
.proof-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.proof-text { display: flex; flex-direction: column; gap: 2px; }
.proof-big { font-size: 1rem; font-weight: 700; }
.proof-small { font-size: 0.82rem; color: var(--text-2); }
.proof-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.proof-chip {
  font-size: 0.75rem; font-weight: 600; color: var(--text-3);
  border: 1px solid var(--border-2); border-radius: 100px; padding: 5px 14px;
}

/* ══════════════════════════════════════════════
   SHOP PAGE
══════════════════════════════════════════════ */
/* ── Shop Category Slider ── */
.shop-slider {
  padding: 32px 0 0;
  margin-bottom: 8px;
}
.shop-slider > .container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px 20px;
}

.cslide-tabs {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding-bottom: 20px; -webkit-overflow-scrolling: touch;
}
.cslide-tabs::-webkit-scrollbar { display: none; }
.cslide-tab {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-3); font-size: .78rem; font-weight: 700;
  padding: 8px 18px; border-radius: 100px; cursor: pointer;
  white-space: nowrap; transition: color .2s, border-color .2s, background .2s, transform .15s;
  display: flex; align-items: center; gap: 6px;
}
.cslide-tab:active { transform: scale(0.96); }
.cslide-tab:hover { color: var(--text); border-color: var(--border-2); }
.cslide-tab.active { color: var(--orange); border-color: rgba(255,107,0,.4); background: rgba(255,107,0,.06); }
.cslide-tab-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }
.cslide-tab-icon svg { width: 16px; height: 16px; }

.cslide-viewport { position: relative; min-height: 300px; overflow-x: clip; overflow-y: visible; }
.cslide-slide {
  display: none; gap: 28px;
}
.cslide-slide.active { display: flex; animation: cslide-in .45s cubic-bezier(0.23, 1, 0.32, 1) both; }
.cslide-slide.slide-out-left { display: flex; animation: cslide-out-left .3s cubic-bezier(0.23, 1, 0.32, 1) both; }
@keyframes cslide-in { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes cslide-out-left { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-60px); } }

.cslide-head { width: 260px; flex-shrink: 0; display: flex; flex-direction: column; justify-content: center; }
.cslide-title { font-size: 1.4rem; font-weight: 900; color: var(--text); margin-bottom: 8px; }
.cslide-desc { font-size: .82rem; color: var(--text-3); line-height: 1.5; margin-bottom: 16px; }
.cslide-link { font-size: .82rem; font-weight: 700; color: var(--orange); text-decoration: none; }
.cslide-link:hover { text-decoration: underline; }

.cslide-cards { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.cslide-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.cslide-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.cslide-card-img {
  width: 100%; aspect-ratio: 4/3; background: #0a0a0a; overflow: hidden;
}
.cslide-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cslide-card-ph {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.cslide-card-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 3px; }
.cslide-card-name { font-size: .82rem; font-weight: 700; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cslide-card-price { font-size: .8rem; font-weight: 800; color: var(--text-2); }

.cslide-dots { display: flex; justify-content: center; gap: 8px; padding: 20px 0 8px; }
.cslide-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--border-2); cursor: pointer; transition: .2s; padding: 0;
}
.cslide-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

@media (max-width: 900px) {
  .cslide-slide { flex-direction: column; gap: 16px; }
  .cslide-head { width: 100%; }
  .cslide-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .cslide-cards { grid-template-columns: repeat(2, 1fr); }
}

.shop-header { padding: 48px 0 32px; border-bottom: 1px solid var(--border); }
.shop-header-inner { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.page-title { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; }
.page-subtitle { font-size: 0.9rem; color: var(--text-2); margin-top: 4px; }
.product-count { font-size: 0.82rem; color: var(--text-3); font-weight: 600; }

.filter-bar {
  display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  position: sticky; top: var(--header-h); z-index: 100;
  background: rgba(8,8,8,0.95); backdrop-filter: blur(12px);
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-pill {
  flex-shrink: 0;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--border-2); color: var(--text-2);
  background: transparent; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
}
.filter-pill:hover { color: var(--text); border-color: var(--text-3); }
.filter-pill.active { background: var(--orange); border-color: var(--orange); color: #fff; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 18px;
  padding: 36px 0 80px;
}

/* Category divider in grid */
.grid-category-divider {
  grid-column: 1 / -1;
  display: flex; align-items: center; gap: 16px;
  margin-top: 24px; padding-bottom: 4px;
}
.grid-cat-label { font-size: 1.1rem; font-weight: 800; white-space: nowrap; }
.grid-cat-line { flex: 1; height: 1px; background: var(--border); }

/* ── PRODUCT CARD ─────────────────────────────── */
.product-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.065) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-inset), 0 4px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  display: flex; flex-direction: column;
}
.product-card:hover {
  border-color: var(--glass-border-hi);
  transform: translateY(-3px);
  box-shadow: var(--glass-inset), 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
}
.product-card:active { transform: scale(0.98); }

.card-thumb {
  position: relative; width: 100%; aspect-ratio: 4/3;
  background: var(--surface-2); overflow: hidden;
}
.card-thumb-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s var(--ease-out);
}
.product-card:hover .card-thumb-img { transform: scale(1.03); }

.card-thumb-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; opacity: 0.35;
  background: linear-gradient(135deg, var(--surface-2) 0%, #1a1a1a 100%);
  transition: opacity 0.3s;
}
.product-card:hover .card-thumb-placeholder { opacity: 0.5; }

/* Coming Soon cards */
.card-soon { cursor: default; pointer-events: none; }
.card-soon .card-thumb-img { filter: grayscale(1) brightness(0.5); }
.card-soon .card-thumb-placeholder { opacity: 0.2; filter: grayscale(1); }
.card-soon .card-body { opacity: 0.5; }
.card-soon .card-price { font-size: 0.78rem; font-weight: 600; color: var(--text-3); }

.card-thumb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .card-thumb-overlay { opacity: 1; }

.card-thumb-count {
  position: absolute; bottom: 10px; right: 10px;
  font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.6); border-radius: 100px;
  padding: 3px 9px; backdrop-filter: blur(4px);
}

.card-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 0.63rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; z-index: 2;
}
.badge-orange { background: var(--orange); color: #fff; }
.badge-green  { background: var(--green);  color: #fff; }
.badge-red    { background: var(--red);    color: #fff; }
.badge-purple { background: var(--purple); color: #fff; }

.card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--orange); }
.card-name { font-size: 0.97rem; font-weight: 700; line-height: 1.3; }
.card-rating { display: flex; align-items: center; gap: 6px; margin: 2px 0; }
.card-stars { color: var(--orange); font-size: 0.72rem; letter-spacing: 1px; }
.card-reviews { font-size: 0.68rem; color: var(--text-3); }
.card-tagline { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; flex: 1; }

.card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: 14px;
}
.card-price { font-size: 1.2rem; font-weight: 800; }
.card-price-old { font-size: 0.78rem; color: var(--text-3); text-decoration: line-through; margin-left: 4px; }

.add-btn {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 700;
  padding: 8px 14px; border-radius: 100px;
  background: var(--orange); color: #fff;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition); flex-shrink: 0;
}
.add-btn:hover { background: var(--orange-2); transform: scale(1.08); }
.add-btn:active { transform: scale(0.92); }
.add-btn.in-cart { background: var(--green); animation: addedPing .35s var(--ease-out); }
.card-prelaunch-chip {
  display: inline-flex; align-items: center;
  font-size: 0.7rem; font-weight: 800;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.4);
  color: var(--orange);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  white-space: nowrap;
}
@keyframes addedPing {
  0% { transform: scale(0.8); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* ══════════════════════════════════════════════
   CATEGORY PAGE
══════════════════════════════════════════════ */
.cat-banner {
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cat-banner::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--orange-dim) 0%, transparent 70%);
  pointer-events: none;
}
.cat-banner-inner { display: flex; align-items: center; gap: 24px; }
.cat-banner-icon {
  font-size: 3rem;
  width: 72px; height: 72px;
  background: var(--orange-dim); border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cat-banner-title { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 6px; }
.cat-banner-desc { font-size: 0.95rem; color: var(--text-2); max-width: 560px; }

/* ══════════════════════════════════════════════
   PRODUCT PAGE
══════════════════════════════════════════════ */
.product-page { padding: 40px 0 80px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-3); margin-bottom: 36px; flex-wrap: wrap;
}
.breadcrumb a { transition: color var(--transition); }
.breadcrumb a:hover { color: var(--text-2); }
.breadcrumb-sep { color: var(--text-3); }
.breadcrumb-current { color: var(--text-2); }

/* Product layout */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.gallery { position: sticky; top: calc(var(--header-h) + 24px); }

.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--surface);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.gallery-main-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s var(--ease-out);
}
.gallery-main:hover .gallery-main-img { transform: scale(1.02); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0; color: var(--orange);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.gallery-placeholder svg { width: 80px; height: 80px; opacity: .6; }

.gallery-nav {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12px; opacity: 0; transition: opacity var(--transition);
}
.gallery-main:hover .gallery-nav { opacity: 1; }

.gallery-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(8,8,8,0.75); backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: background var(--transition);
}
.gallery-arrow:hover { background: rgba(8,8,8,0.95); }

.gallery-counter-bubble {
  position: absolute; bottom: 14px; right: 14px;
  font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 4px 10px;
}

.gallery-thumbs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 4/3; border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: border-color var(--transition);
  background: var(--surface);
}
.gallery-thumb.active { border-color: var(--orange); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* Product info panel */
.product-info { display: flex; flex-direction: column; gap: 0; }

.product-info-cat {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 8px;
}
.product-info-name {
  font-size: 1.9rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 14px;
}
.product-info-tagline {
  font-size: 0.95rem; color: var(--text-2); margin-bottom: 28px; line-height: 1.6;
}

.price-row {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 24px;
}
.price-big { font-size: 2.4rem; font-weight: 900; }
.price-old-big {
  font-size: 1.1rem; color: var(--text-3); text-decoration: line-through;
}
.price-save {
  font-size: 0.78rem; font-weight: 700; color: var(--green);
  background: rgba(16,185,129,0.12); border-radius: 100px; padding: 3px 10px;
}

/* Formats tags */
.license-pill {
  display: flex; align-items: center; gap: 10px;
  margin: 16px 0 18px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,107,0,0.04) 100%);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: var(--radius-sm);
  color: #FF8A2A;
  font-size: 0.85rem;
  line-height: 1.4;
}
.license-pill strong { color: #FF6B00; font-weight: 800; }
.format-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.format-tag {
  font-size: 0.72rem; font-weight: 700;
  border: 1px solid var(--border-2); color: var(--text-3);
  border-radius: var(--radius-xs); padding: 4px 10px;
}

/* Description */
.product-desc { font-size: 0.92rem; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }

/* Includes */
.includes-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px 20px; margin-bottom: 28px;
}
.includes-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-3); margin-bottom: 12px;
}
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.includes-list li {
  font-size: 0.88rem; color: var(--text);
  display: flex; align-items: flex-start; gap: 10px;
}
.includes-check {
  color: var(--orange); font-weight: 800; font-size: 0.8rem;
  margin-top: 2px; flex-shrink: 0;
}

/* CTA */
.product-cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.product-cta .btn-primary { font-size: 1rem; padding: 15px; }

.trust-line {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.75rem; color: var(--text-3);
}
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-2); }

/* ── Reviews Section ── */
.rv-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.rv-avg { font-size: .88rem; color: var(--orange); font-weight: 700; }
.rv-empty { text-align: center; color: var(--text-3); padding: 32px 0; font-size: .88rem; }
.rv-stars { color: var(--orange); font-size: .82rem; letter-spacing: 1px; }

.rv-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 12px;
}
.rv-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.rv-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff4500);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.rv-meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.rv-name { font-size: .84rem; font-weight: 700; color: var(--text); }
.rv-date { font-size: .72rem; color: var(--text-3); flex-shrink: 0; }
.rv-text { font-size: .84rem; color: var(--text-2); line-height: 1.5; margin: 0; }

.rv-form-wrap {
  margin-top: 28px; padding: 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 16px;
}
.rv-form-title { font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.rv-form-row { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.rv-input {
  background: var(--surface-2); border: 1.5px solid var(--border-2);
  border-radius: 10px; color: var(--text); font-size: .88rem;
  padding: 10px 14px; outline: none; transition: border-color .15s; width: 100%;
}
.rv-input:focus { border-color: var(--orange); }
.rv-textarea { min-height: 80px; resize: vertical; margin-bottom: 12px; }

.rv-form-stars { display: flex; gap: 4px; flex-shrink: 0; }
.rv-star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--border-2); transition: color .15s;
  padding: 0 2px; line-height: 1;
}
.rv-star-btn.hovered,
.rv-star-btn.selected { color: var(--orange); }

.rv-form-footer { display: flex; align-items: center; gap: 12px; }
.rv-form-status { font-size: .8rem; color: var(--text-3); }

.rv-locked {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
  margin-top: 20px;
}
.rv-locked-icon { font-size: 1.2rem; flex-shrink: 0; }
.rv-locked-text { font-size: .84rem; color: var(--text-3); line-height: 1.4; }

/* ── Project File blocks ── */
.pf-source-block { margin: 16px 0; }
.pf-source-label {
  font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--text-3); margin-bottom: 8px;
}
.pf-source-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; background: rgba(255,107,0,.06);
  border: 1px solid rgba(255,107,0,.25); border-radius: 12px;
  color: var(--orange); font-size: .84rem; font-weight: 700;
  text-decoration: none; transition: background 0.18s var(--ease-out);
}
.pf-source-link:hover { background: rgba(255,107,0,.12); }
.pf-source-link svg { flex-shrink: 0; color: var(--orange); }

.pf-inside-block { margin: 20px 0; }
.pf-inside-title {
  font-size: .82rem; font-weight: 800; color: var(--text); margin-bottom: 12px;
}
.pf-inside-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pf-inside-item {
  padding: 14px 16px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.pf-inside-item strong { font-size: .82rem; color: var(--text); }
.pf-inside-item span { font-size: .74rem; color: var(--text-3); line-height: 1.4; }

.pf-use-cases { margin: 16px 0; }
.pf-use-title {
  font-size: .82rem; font-weight: 800; color: var(--text); margin-bottom: 10px;
}
.pf-use-list { display: flex; flex-direction: column; gap: 8px; }
.pf-use-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8rem; color: var(--text-2); line-height: 1.4;
}
.pf-use-icon { font-size: .9rem; flex-shrink: 0; }

.pf-plugins-block { margin: 16px 0; }
.pf-plugins-title { font-size: .82rem; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.pf-plugins-list { display: flex; flex-wrap: wrap; gap: 6px; }
.pf-plugin-chip {
  font-size: .76rem; font-weight: 600; color: var(--orange);
  background: rgba(255,107,0,.08); border: 1px solid rgba(255,107,0,.25);
  padding: 5px 14px; border-radius: 100px;
}
.pf-plugins-none { font-size: .78rem; color: var(--green); font-weight: 600; }

@media (max-width: 640px) { .pf-inside-grid { grid-template-columns: 1fr; } }

/* Related */
.related-section { margin-top: 72px; padding-top: 48px; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }

/* ══════════════════════════════════════════════
   CART SIDEBAR
══════════════════════════════════════════════ */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(4px);
  z-index: 300; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.overlay.on { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed; top: 0; right: 0;
  width: 400px; max-width: 100vw; height: 100vh;
  background: #0c0c0c; border-left: 1px solid var(--border);
  z-index: 301; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s var(--ease-out);
}
.cart-sidebar.on { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--border);
}
.cart-head h2 { font-size: 1rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
#cartHeadCount {
  font-size: 0.72rem; background: var(--orange); color: #fff;
  border-radius: 100px; padding: 2px 8px;
}

.cart-body { flex: 1; overflow-y: auto; padding: 16px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; min-height: 200px; color: var(--text-3); font-size: 0.88rem;
}

.cart-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 10px;
}
.cart-item-thumb {
  width: 56px; height: 56px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0; background: var(--surface-2);
}
.cart-item-icon {
  width: 56px; height: 56px; border-radius: 10px;
  background: var(--surface-2); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-size: 0.87rem; font-weight: 600; line-height: 1.3; }
.cart-item-cat { font-size: 0.7rem; color: var(--orange); font-weight: 700; margin: 2px 0; }
.cart-item-price { font-size: 0.9rem; font-weight: 700; }
.cart-item-rm {
  font-size: 0.72rem; color: var(--text-3); padding: 4px 6px;
  border-radius: 4px; transition: color var(--transition), background var(--transition);
  flex-shrink: 0; margin-top: 2px;
}
.cart-item-rm:hover { color: var(--red); background: rgba(239,68,68,0.08); }
.cart-item-bundle { align-items: flex-start; }
.cart-item-bundle .cart-item-rm { margin-top: 4px; }
.cart-bundle-list {
  margin-top: 8px; display: flex; flex-direction: column; gap: 4px;
  padding: 8px 10px; background: rgba(255,255,255,0.03); border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.cart-bundle-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-2); line-height: 1.3;
}
.cart-bundle-icon { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cart-bundle-icon svg { width: 14px; height: 14px; }

.cart-foot { padding: 18px 24px; border-top: 1px solid var(--border); }
.cart-total-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 700; font-size: 0.95rem; margin-bottom: 4px;
}
.cart-total-num { font-size: 1.4rem; color: var(--orange); }
.cart-email {
  width: 100%; padding: 10px 14px; margin-bottom: 10px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 0.85rem;
  outline: none; transition: border-color 0.2s;
}
.cart-email:focus { border-color: var(--orange); }
.cart-email::placeholder { color: var(--text-3); }
.cart-promo-row { display: flex; gap: 8px; margin-bottom: 6px; }
.cart-promo-input {
  flex: 1; padding: 8px 12px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 0.82rem;
  outline: none; text-transform: uppercase; letter-spacing: 1px;
}
.cart-promo-input:focus { border-color: var(--orange); }
.cart-promo-input::placeholder { color: var(--text-3); text-transform: none; letter-spacing: 0; }
.cart-promo-btn { flex-shrink: 0; font-size: 0.78rem; padding: 8px 14px; border: 1px solid var(--border); background: var(--glass); color: var(--text-2); border-radius: var(--radius-sm); cursor: pointer; }
.cart-promo-btn:hover { border-color: var(--orange); color: var(--text); }
.cart-promo-status { font-size: 0.78rem; margin-bottom: 8px; min-height: 18px; }
.cart-promo-status.ok { color: var(--green); }
.cart-promo-status.err { color: var(--red); }
.cart-discount-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--green); margin-bottom: 4px; }
.cart-note { font-size: 0.72rem; color: var(--text-3); margin-bottom: 14px; text-align: center; }

/* ══════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,0.95); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s var(--ease-out);
}
.lightbox.on { opacity: 1; pointer-events: all; }

.lightbox-img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius-sm); }

.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 2;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition); z-index: 2;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 600;
}

/* ══════════════════════════════════════════════
   SUCCESS + TOAST
══════════════════════════════════════════════ */
.success-screen {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,0.92); display: flex;
  align-items: flex-start; justify-content: center;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 24px;
}
.success-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 32px; text-align: center; max-width: 480px; width: 100%;
  margin: auto 0;
}
.success-header { margin-bottom: 28px; }
.success-check-ring {
  width: 72px; height: 72px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  animation: successPop 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-box h2 { font-size: 1.5rem; font-weight: 800; margin: 0 0 6px; }
.success-subtitle { color: var(--text-2); font-size: 0.9rem; margin: 0; }
.success-downloads { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; text-align: left; }
.success-dl-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 18px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); transition: border-color 0.2s;
}
.success-dl-item:hover { border-color: var(--accent); }
.success-dl-info { flex: 1; min-width: 0; }
.success-dl-name { font-size: 0.9rem; font-weight: 600; display: block; }
.success-dl-price { font-size: 0.78rem; color: var(--text-3); margin-top: 2px; display: block; }
.success-dl-btn {
  white-space: nowrap; font-size: 0.82rem !important; padding: 10px 20px !important;
  border-radius: 8px !important; font-weight: 700 !important;
}
.success-dl-pending { font-size: 0.8rem; color: var(--text-3); font-style: italic; display: inline-flex; align-items: center; gap: 8px; }
.success-dl-row--pending {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  margin-bottom: 8px;
}
.success-dl-row--pending .success-dl-info { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.success-dl-row--pending .success-dl-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.success-dl-row--pending .success-dl-price { font-size: .75rem; color: var(--text-3); }
.success-dl-spinner {
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid rgba(255,107,0,.25);
  border-top-color: var(--orange);
  animation: success-spin .7s linear infinite;
}
@keyframes success-spin { to { transform: rotate(360deg); } }
.success-vfx-block {
  margin-bottom: 14px; padding: 18px;
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(255,107,0,0.02) 60%, transparent 100%);
  border: 1px solid rgba(255,107,0,0.35); border-radius: var(--radius-sm);
  text-align: left;
}
.success-vfx-eyebrow {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  color: #FF6B00; text-transform: uppercase; margin-bottom: 10px;
}
.success-vfx-key {
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  font-size: 1.05rem; font-weight: 700; color: #fff; letter-spacing: 0.06em;
  padding: 12px 14px; background: rgba(0,0,0,0.5); border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08); text-align: center;
  margin-bottom: 10px; user-select: all;
}
.success-vfx-meta { font-size: 0.78rem; color: var(--text-3); line-height: 1.4; margin-bottom: 12px; }
.success-vfx-copy { font-size: 0.78rem !important; padding: 8px 16px !important; }
.success-vfx-installers {
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.success-vfx-installers-label {
  font-size: 0.78rem; font-weight: 700; color: var(--text-2);
  margin-bottom: 8px; letter-spacing: 0.02em;
}
.success-vfx-installers-row {
  display: flex; flex-wrap: wrap; gap: 6px;
}
@media (max-width: 480px) {
  .success-vfx-installers-row .btn { flex: 1; text-align: center; }
}
.success-dl-multi { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.success-dl-multi .success-dl-btn { font-size: 0.78rem !important; padding: 9px 14px !important; }
.myorders-dl-multi { display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-end; }
.myorders-vfx {
  margin-top: 12px; padding: 14px;
  background: linear-gradient(135deg, rgba(255,107,0,0.07) 0%, rgba(255,107,0,0.02) 60%, transparent 100%);
  border: 1px solid rgba(255,107,0,0.3); border-radius: var(--radius-sm);
}
.myorders-vfx-eyebrow {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.1em;
  color: #FF6B00; text-transform: uppercase; margin-bottom: 8px;
}
.myorders-vfx-keyrow {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.myorders-vfx-key {
  font-family: 'SF Mono', Menlo, Monaco, monospace;
  font-size: 0.92rem; font-weight: 700; color: #fff; letter-spacing: 0.05em;
  padding: 8px 12px; background: rgba(0,0,0,0.5); border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08); user-select: all; flex: 1; min-width: 0;
  text-align: center;
}
.myorders-vfx-eye, .myorders-vfx-copy {
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--text-2); border-radius: 6px; padding: 8px 10px;
  cursor: pointer; font-size: 0.78rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.myorders-vfx-eye { padding: 8px; }
.myorders-vfx-eye:hover, .myorders-vfx-copy:hover { border-color: var(--accent); color: var(--accent); }
.myorders-vfx-meta { font-size: 0.74rem; color: var(--text-3); margin-top: 8px; }
.myorders-vfx-installers {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; gap: 6px;
}
@media (max-width: 480px) {
  .myorders-vfx-installers .btn { flex: 1; text-align: center; }
}
@media (max-width: 480px) {
  .success-dl-item { flex-direction: column; align-items: stretch; }
  .success-dl-multi, .myorders-dl-multi { justify-content: stretch; }
  .success-dl-multi .btn, .myorders-dl-multi .btn { flex: 1; text-align: center; }
}
.success-email-note {
  font-size: 0.8rem !important; color: var(--text-3) !important;
  margin: 0 0 20px !important; padding: 12px 16px;
  background: rgba(255,107,0,0.06); border: 1px solid rgba(255,107,0,0.12);
  border-radius: var(--radius-sm); line-height: 1.4;
}
.success-actions { margin-bottom: 20px; }
.success-upsell { text-align: left; }
.success-upsell-title {
  font-size: 0.82rem; font-weight: 700; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.success-upsell-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); margin-bottom: 6px; cursor: pointer;
  transition: border-color 0.2s; text-decoration: none; color: inherit;
}
.success-upsell-item:hover { border-color: var(--accent); }
.success-upsell-info { flex: 1; min-width: 0; }
.success-upsell-name { font-size: 0.85rem; font-weight: 600; display: block; }
.success-upsell-desc { font-size: 0.75rem; color: var(--text-3); display: block; margin-top: 2px; }
.success-upsell-price { font-size: 0.85rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.success-dl-bundle { flex-direction: column; align-items: stretch; }
.success-dl-bundle .success-dl-btn { align-self: flex-end; }
.success-bundle-list {
  margin-top: 10px; display: flex; flex-direction: column; gap: 4px;
  padding: 10px 12px; background: rgba(255,255,255,0.03); border-radius: 8px;
  border: 1px solid var(--glass-border);
}
.success-bundle-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-2); line-height: 1.3;
}
.success-bundle-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.success-bundle-icon svg { width: 16px; height: 16px; }

/* Bundle expanded — parent header + children with own download buttons */
.success-dl-bundle-expanded {
  flex-direction: column; align-items: stretch;
  padding: 14px 14px 10px;
  border: 1px solid rgba(255,107,0,0.35);
  background: linear-gradient(180deg, rgba(255,107,0,0.06), rgba(255,107,0,0.02));
  border-radius: 12px;
}
.success-dl-bundle-eyebrow {
  display: block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--accent, #FF6B00); text-transform: uppercase;
  margin-bottom: 4px;
}
.success-bundle-children {
  margin-top: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.success-bundle-child {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
}
.success-bundle-child-info { display: flex; flex-direction: column; min-width: 0; }
.success-bundle-child-name { font-size: 0.85rem; font-weight: 600; color: var(--text-1); }
.success-bundle-child-cat { font-size: 0.7rem; color: var(--text-3); margin-top: 1px; text-transform: uppercase; letter-spacing: 0.08em; }

/* My Orders — bundle group */
.myorders-bundle-group {
  border: 1px solid rgba(255,107,0,0.35);
  background: linear-gradient(180deg, rgba(255,107,0,0.05), rgba(255,107,0,0.015));
  border-radius: 12px;
  padding: 10px 12px 8px;
  margin-bottom: 10px;
}
.myorders-bundle-header {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding-bottom: 8px; margin-bottom: 8px;
  border-bottom: 1px dashed rgba(255,107,0,0.25);
}
.myorders-bundle-eyebrow {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  color: var(--accent, #FF6B00); text-transform: uppercase;
  padding: 3px 8px; border: 1px solid rgba(255,107,0,0.5); border-radius: 999px;
}
.myorders-bundle-child { background: rgba(255,255,255,0.02); margin-bottom: 4px; }
.myorders-bundle-child:last-child { margin-bottom: 0; }
.myorders-item-cat { font-size: 0.7rem; color: var(--text-3); display: block; margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }

/* Success Review */
.success-review { text-align: left; }
.success-review-title { font-size: 0.9rem; font-weight: 700; margin: 0 0 12px; text-align: center; }
.success-review-stars { display: flex; justify-content: center; gap: 6px; margin-bottom: 12px; }
.success-review-stars .rv-star-btn {
  font-size: 1.6rem; color: #333; cursor: pointer; transition: color 0.15s; background: none; border: none; padding: 2px;
}
.success-review-stars .rv-star-btn.hovered,
.success-review-stars .rv-star-btn.selected { color: #FF6B00; }
.success-review-textarea {
  width: 100%; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 12px; color: var(--text-1); font-size: 0.85rem;
  resize: none; margin-bottom: 12px; font-family: inherit;
}
.success-review-textarea:focus { border-color: var(--accent); outline: none; }
.success-review-status { font-size: 0.8rem; color: var(--text-3); margin: 0; text-align: left; }

.success-review-list { display: flex; flex-direction: column; gap: 14px; }
.success-review-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 14px 14px 12px;
}
.success-review-card-name {
  font-size: 0.92rem; font-weight: 700; color: var(--text-1);
  margin-bottom: 10px;
}
.success-review-card .success-review-stars {
  justify-content: flex-start; margin-bottom: 10px;
}
.success-review-card .success-review-textarea {
  margin-bottom: 10px;
}
.success-review-card-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.success-review-thanks {
  font-size: 0.85rem; color: var(--green, #22c55e); margin: 6px 0 0;
}

/* Account button */
.account-btn {
  background: none; border: none; color: var(--text-2); cursor: pointer;
  padding: 8px; border-radius: 8px; transition: color 0.2s;
  margin-left: auto;
}
@media (min-width: 901px) {
  .account-btn { margin-left: 0; }
}
.account-btn:hover { color: var(--accent); }

/* My Orders page */
.myorders-page { padding-top: 120px; min-height: 80vh; }
.myorders-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.myorders-desc { color: var(--text-2); font-size: 0.9rem; margin-bottom: 28px; }
.myorders-auth .input {
  width: 100%; background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 14px 16px; color: var(--text-1); font-size: 0.95rem;
}
.myorders-auth .input:focus { border-color: var(--accent); outline: none; }
.myorders-status { font-size: 0.82rem; color: var(--text-3); margin-top: 12px; }
.myorders-empty { text-align: center; padding: 40px 0; color: var(--text-2); }
.myorders-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; font-size: 0.85rem; color: var(--text-2);
}
.btn-text { background: none; border: none; color: var(--accent); cursor: pointer; font-size: 0.82rem; font-weight: 600; }
.btn-text:hover { text-decoration: underline; }
.myorders-order {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 14px; padding: 20px; margin-bottom: 14px;
}
.myorders-order-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--glass-border);
}
.myorders-order-id { font-size: 0.78rem; color: var(--text-3); font-family: monospace; }
.myorders-order-date { font-size: 0.78rem; color: var(--text-3); }
.myorders-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.myorders-item:last-child { border-bottom: none; }
.myorders-item-info { flex: 1; min-width: 0; }
.myorders-item-name { font-size: 0.88rem; font-weight: 600; display: block; }
.myorders-item-price { font-size: 0.78rem; color: var(--text-3); display: block; margin-top: 2px; }
.myorders-pending { font-size: 0.78rem; color: var(--text-3); font-style: italic; }
.myorders-item-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.myorders-review-btn {
  background: none; border: none; color: var(--orange);
  font-size: 0.82rem; font-weight: 600; cursor: pointer; padding: 4px 0;
}
.myorders-review-btn:hover { text-decoration: underline; }
.myorders-reviewed {
  font-size: 0.78rem; color: var(--text-3); font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* Review modal — opened from My Purchases */
.review-modal {
  position: fixed; inset: 0; z-index: 9100;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.78);
  padding: 20px;
}
.review-modal-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 24px;
  width: 100%; max-width: 420px;
  position: relative;
}
.review-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-2); cursor: pointer; font-size: 0.85rem;
}
.review-modal-close:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.review-modal-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--text-3); text-transform: uppercase;
}
.review-modal-title {
  font-size: 1.05rem; font-weight: 800; margin: 4px 0 18px;
}
.review-stars { display: flex; gap: 6px; margin-bottom: 16px; }
.review-star {
  background: none; border: none; cursor: pointer;
  font-size: 2rem; line-height: 1; color: rgba(255,255,255,0.18);
  padding: 0; transition: color 0.15s;
}
.review-star.on, .review-star:hover { color: #FFB800; }
.review-modal-card .input,
.review-modal-card .review-textarea {
  width: 100%; box-sizing: border-box;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.92rem; font-family: inherit;
  padding: 12px 14px;
  transition: border-color 0.15s, background 0.15s;
}
.review-modal-card .input::placeholder,
.review-modal-card .review-textarea::placeholder { color: var(--text-3); }
.review-modal-card .input:focus,
.review-modal-card .review-textarea:focus {
  outline: none; border-color: var(--orange);
  background: rgba(255,107,0,0.04);
}
.review-textarea { resize: vertical; min-height: 96px; }
.review-modal-error {
  color: #ef4444; font-size: 0.8rem; min-height: 1em; margin-top: 8px;
}

/* Legal pages — Terms / Refund / Privacy / Contacts */
.legal-page { padding-top: 120px; padding-bottom: 60px; min-height: 80vh; }
.legal-title { font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.legal-updated { color: var(--text-3); font-size: 0.82rem; margin-bottom: 28px; }
.legal-body { color: var(--text-2); line-height: 1.65; font-size: 0.95rem; }
.legal-body p { margin: 0 0 14px; }
.legal-body ul, .legal-body ol { margin: 0 0 18px; padding-left: 22px; }
.legal-body li { margin-bottom: 6px; }
.legal-body strong { color: var(--text-1); }
.legal-body a { color: var(--orange); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }
.legal-body code {
  background: rgba(255,255,255,0.06); padding: 1px 6px; border-radius: 4px;
  font-family: ui-monospace, Menlo, monospace; font-size: 0.85em;
}
.legal-h2 { color: var(--text-1); font-size: 1.15rem; font-weight: 700; margin: 28px 0 10px; }
.legal-h3 { color: var(--text-1); font-size: 1rem; font-weight: 700; margin: 18px 0 8px; }
.legal-sep { border: none; border-top: 1px solid var(--border); margin: 36px 0 24px; }
.legal-business { color: var(--text-2); font-size: 0.92rem; line-height: 1.6; }
.legal-business p { margin: 4px 0; }

/* Support page */
.support-page { padding-top: 120px; min-height: 80vh; }
.support-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.support-desc { color: var(--text-2); font-size: 0.9rem; margin-bottom: 28px; line-height: 1.5; }
.support-form { display: flex; flex-direction: column; gap: 16px; }
.support-field { display: flex; flex-direction: column; gap: 6px; }
.support-label { font-size: 0.82rem; font-weight: 600; color: var(--text-2); }
.support-input {
  width: 100%; padding: 12px 14px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 10px; color: var(--text-1); font-size: 0.9rem;
  outline: none; font-family: inherit; transition: border-color 0.2s;
}
.support-input:focus { border-color: var(--accent); }
.support-input::placeholder { color: var(--text-3); }
select.support-input { cursor: pointer; -webkit-appearance: none; appearance: none; }
.support-textarea { resize: vertical; min-height: 100px; }
.support-status { font-size: 0.82rem; min-height: 20px; margin-top: 4px; }
.support-alt {
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border);
  text-align: center;
}
.support-alt p { color: var(--text-3); font-size: 0.82rem; margin-bottom: 12px; }
.support-alt-links { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.support-alt-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--accent); font-size: 0.85rem; font-weight: 600; text-decoration: none;
}
.support-alt-link:hover { text-decoration: underline; }

.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface-3); border: 1px solid var(--border-2);
  border-radius: 100px; padding: 11px 22px;
  font-size: 0.85rem; font-weight: 600; color: var(--text);
  z-index: 700; transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap; pointer-events: none;
}
.toast.on { transform: translateX(-50%) translateY(0); }
.toast.ok { border-color: var(--green); color: var(--green); }
.toast.err { border-color: var(--red); color: var(--red); }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
/* Bundle promo banner */
.bundle-banner { padding: 0 0 40px; }
.bundle-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 32px 36px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(255,107,0,0.02) 100%);
  border: 1px solid rgba(255,107,0,0.15);
}
.bundle-banner-clickable {
  cursor: pointer;
  transition: transform .12s var(--ease-out), border-color .18s var(--ease-out), box-shadow .18s var(--ease-out), background .18s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.bundle-banner-clickable:hover {
  border-color: rgba(255,107,0,0.45);
  background: linear-gradient(135deg, rgba(255,107,0,0.12) 0%, rgba(255,107,0,0.04) 100%);
  box-shadow: 0 14px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,107,0,.2);
  transform: translateY(-2px);
}
.bundle-banner-clickable:active {
  transform: translateY(3px) scale(.992);
  box-shadow: inset 0 3px 10px rgba(0,0,0,.4);
  transition-duration: .05s;
}
.bundle-banner-clickable:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.bundle-banner-eyebrow {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 1.5px;
  color: var(--orange); text-transform: uppercase; margin-bottom: 6px; display: block;
}
.bundle-banner-title { font-size: 1.3rem; font-weight: 800; margin: 0 0 6px; }
.bundle-banner-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.4; margin: 0 0 12px; max-width: 500px; }
.bundle-banner-price { display: flex; align-items: baseline; gap: 10px; }
.bundle-banner-now { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.bundle-banner-was { font-size: 0.9rem; color: var(--text-3); text-decoration: line-through; }
.bundle-banner-save { font-size: 0.78rem; font-weight: 700; color: var(--green); background: rgba(34,197,94,0.1); padding: 3px 10px; border-radius: 100px; }
.bundle-banner-btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 640px) {
  .bundle-banner-inner { flex-direction: column; align-items: flex-start; padding: 24px; }
  .bundle-banner-btn { width: 100%; text-align: center; }
}

.footer { border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 60px;
  padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.footer-brand-desc { font-size: 0.88rem; color: var(--text-2); margin: 12px 0 20px; line-height: 1.65; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-3); border: 1px solid var(--border-2); border-radius: var(--radius-xs);
  padding: 6px 12px; transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition), opacity var(--transition);
}
.footer-social-link:hover { color: var(--orange); border-color: var(--orange); }

.footer-col-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.88rem; color: var(--text-2); transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; padding: 18px 0;
}
.footer-copy { font-size: 0.78rem; color: var(--text-3); }
.pay-badges { display: flex; gap: 6px; }
.pay-badge {
  font-size: 0.68rem; font-weight: 700; color: var(--text-3);
  border: 1px solid var(--border); border-radius: 5px; padding: 3px 8px;
}

/* ══════════════════════════════════════════════
   PARTNERS BAR
══════════════════════════════════════════════ */
.partners-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.partners-bar .container { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.partners-logos { justify-content: center; }
.partners-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-3); flex-shrink: 0;
}
.partners-logos { display: flex; gap: 40px; flex-wrap: wrap; align-items: center; }
.partner-logo {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: opacity .25s;
}
.partner-logo img {
  width: 56px; height: 56px; object-fit: contain;
  border-radius: 14px;
  filter: grayscale(0.8);
  opacity: 0.85;
  transition: filter .25s, opacity .25s;
}
.partner-logo:hover img { filter: none; opacity: 1; }
.partner-logo span {
  font-size: 0.68rem; font-weight: 600; color: var(--text-3);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   WHY 360 MEDIA SECTION
══════════════════════════════════════════════ */
.why-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-head { text-align: center; margin-bottom: 56px; }
.why-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 16px;
}
.why-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 14px;
}
.why-sub { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: border-color var(--transition), transform var(--transition);
}
.why-card:hover { border-color: var(--border-2); transform: translateY(-3px); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.why-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.how-section { padding: 80px 0; }
.how-steps {
  display: flex; align-items: flex-start; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.how-step {
  flex: 1; padding: 36px 32px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--surface-2); }
.how-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.5rem; font-weight: 300;
  padding: 0 4px; flex-shrink: 0; align-self: center;
  display: none; /* shown via steps border approach */
}
.how-num {
  font-size: 2.5rem; font-weight: 900; color: var(--orange);
  opacity: 0.3; line-height: 1; margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.how-step-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.how-step-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════════════════
   FOUNDER PROOF
══════════════════════════════════════════════ */
.founder-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Hero row */
.founder-hero {
  display: grid; grid-template-columns: 340px 1fr;
  gap: 56px; align-items: center; margin-bottom: 48px;
}
.founder-photo-col { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.founder-photo-wrap {
  position: relative; width: 280px; height: 280px;
  border-radius: 24px; overflow: hidden;
  border: 2px solid rgba(255,107,0,.3);
  box-shadow: 0 0 0 6px rgba(255,107,0,.06), 0 24px 60px rgba(0,0,0,.4);
}
.founder-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.founder-photo-badge {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.75); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,107,0,.4); border-radius: 100px;
  padding: 6px 14px; white-space: nowrap; text-align: center;
}
.founder-photo-badge-num {
  display: block; font-size: 1rem; font-weight: 900; color: var(--orange); line-height: 1;
}
.founder-photo-badge-lbl {
  display: block; font-size: 0.6rem; color: rgba(255,255,255,.6);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px;
}
.founder-name-tag { text-align: center; }
.founder-name { display: block; font-size: 1rem; font-weight: 800; color: var(--text); }
.founder-handle { display: block; font-size: 0.8rem; color: var(--orange); margin-top: 2px; }

/* Content col */
.founder-content-col { display: flex; flex-direction: column; gap: 20px; }
.founder-eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange);
}
.founder-title {
  font-size: 2.6rem; font-weight: 900; line-height: 1.1; margin: 0;
}
.founder-sub {
  font-size: 0.92rem; color: var(--text-2); line-height: 1.65; margin: 0; max-width: 460px;
}
.founder-platform-row { display: flex; gap: 12px; }
.founder-platform {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 12px; padding: 10px 14px; flex: 1;
  text-decoration: none; transition: .15s;
}
.founder-platform:hover { border-color: rgba(255,107,0,.4); background: rgba(255,107,0,.05); }
.fp-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fp-data { display: flex; flex-direction: column; gap: 1px; }
.fp-num { font-size: 1.1rem; font-weight: 900; color: var(--text); line-height: 1; }
.fp-lbl { font-size: 0.68rem; color: var(--text-3); }
.founder-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.founder-social-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 100px;
  border: 1.5px solid var(--border-2); color: var(--text-2);
  font-size: 0.82rem; font-weight: 700; text-decoration: none;
  transition: .15s; background: none;
}
.founder-social-btn:hover { border-color: var(--orange); color: var(--orange); }

/* Stats bar */
.founder-stats-bar {
  display: flex; align-items: stretch;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; margin-bottom: 32px;
}
.fstat { flex: 1; text-align: center; padding: 26px 12px; }
.fstat-num { display: block; font-size: 2rem; font-weight: 900; color: var(--orange); line-height: 1; }
.fstat-lbl {
  display: block; font-size: 0.65rem; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.06em; margin-top: 6px;
}
.fstat-div { width: 1px; background: var(--border); flex-shrink: 0; }

/* Top videos — 2 platform rows */
.founder-videos { margin-bottom: 32px; display: flex; flex-direction: column; gap: 20px; }
.founder-videos-row { display: flex; flex-direction: column; gap: 10px; }
.founder-videos-row-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-3);
}
.founder-videos-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.fvid {
  display: block; text-decoration: none; border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 9/16; background: var(--surface-2);
  transition: transform .2s;
}
.fvid:hover { transform: scale(1.03); }
.fvid-thumb { width: 100%; height: 100%; }
.fvid-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fvid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.05) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 10px;
}
.fvid-views {
  font-size: 1.25rem; font-weight: 900; color: #fff; line-height: 1;
  text-shadow: 0 1px 6px rgba(0,0,0,.8);
}
.fvid-meta { margin-top: 4px; }
.fvid-title { font-size: 0.68rem; font-weight: 600; color: rgba(255,255,255,.75); line-height: 1.3; display: block; }
@media (max-width: 560px) { .founder-videos-grid { grid-template-columns: repeat(2, 1fr); gap: 7px; } }

/* Bottom: before/after + story */
.founder-bottom {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start;
}
.founder-transform {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 14px;
}
.founder-before, .founder-after {
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 18px; padding: 22px 18px;
}
.founder-after { border-color: rgba(255,107,0,.3); background: rgba(255,107,0,.04); }
.founder-era-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 16px;
}
.founder-era-now { color: var(--orange) !important; }
/* Account stat rows */
.founder-acct { display: flex; flex-direction: column; gap: 10px; }
.founder-acct-row {
  display: flex; align-items: center; gap: 10px;
}
.founder-acct-icon {
  width: 26px; height: 26px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.ig-icon { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); }
.tt-icon { background: #000; }
.founder-acct-num {
  font-size: 1.3rem; font-weight: 900; line-height: 1; color: var(--text-3);
}
.founder-acct-num.accent { color: var(--orange); }
.founder-acct-lbl { font-size: 0.7rem; color: var(--text-3); margin-left: 2px; }
.founder-acct-device { gap: 8px; margin-top: 2px; }
.founder-acct-device-icon { font-size: 1rem; }
.founder-acct-device-lbl { font-size: 0.75rem; color: var(--text-3); }
.founder-arrow-col {
  color: var(--orange); font-size: 1.4rem; font-weight: 900; flex-shrink: 0;
}
.founder-story {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 28px; height: 100%; box-sizing: border-box;
}
.founder-story p { font-size: 0.87rem; color: var(--text-2); line-height: 1.75; margin: 0; }
.founder-story p + p { margin-top: 12px; }

/* Responsive */
@media (max-width: 960px) {
  .founder-hero { grid-template-columns: 260px 1fr; gap: 36px; }
  .founder-photo-wrap { width: 220px; height: 220px; }
  .founder-title { font-size: 2rem; }
}
@media (max-width: 768px) {
  .founder-hero { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .founder-sub { max-width: 100%; }
  .founder-platform-row { justify-content: center; }
  .founder-socials { justify-content: center !important; }
  .founder-bottom { grid-template-columns: 1fr; }
  .founder-hits-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .founder-stats-bar { flex-wrap: wrap; }
  .fstat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .fstat:nth-child(7), .fstat:nth-child(8) { border-bottom: none; }
  .fstat-div { display: none; }
  .founder-title { font-size: 1.7rem; }
  .founder-transform { grid-template-columns: 1fr 1fr; gap: 10px; }
  .founder-arrow-col { display: none; }
  .founder-before, .founder-after { padding: 14px 12px; border-radius: 14px; }
  .founder-era-label { font-size: 0.58rem; margin-bottom: 10px; letter-spacing: 0.05em; }
  .founder-acct { gap: 8px; }
  .founder-acct-row { gap: 7px; }
  .founder-acct-icon { width: 22px; height: 22px; }
  .founder-acct-num { font-size: 1.05rem; }
  .founder-acct-lbl { font-size: 0.64rem; }
  .founder-acct-device-lbl { font-size: 0.66rem; line-height: 1.3; }
}

/* ══════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════ */
.reviews-section { padding: 80px 0; border-top: 1px solid var(--border); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--border-2); }
.review-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; }
.review-text { font-size: 0.87rem; color: var(--text-2); line-height: 1.65; flex: 1; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--orange-dim); border: 1px solid rgba(255,107,0,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--orange); flex-shrink: 0;
}
.review-name { font-size: 0.85rem; font-weight: 700; }
.review-handle { font-size: 0.72rem; color: var(--text-3); }

/* ══════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════ */
.cta-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, #FF6B0010 0%, transparent 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.cta-sub { font-size: 0.95rem; color: var(--text-2); }

/* ── logo in footer ───────────────────────────── */
.footer .logo-img { height: 24px; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-layout { grid-template-columns: 1fr; }
  .gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: flex; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { flex-direction: column; }
  .how-step { border-right: none; border-bottom: 1px solid var(--border); }
  .how-step:last-child { border-bottom: none; }
  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .hero { padding: 60px 0 56px; }
  .hero-title { letter-spacing: -0.04em; }
  .hero-stats { flex-direction: column; border: none; background: none; gap: 0; }
  .stat { padding: 10px 24px; border: 1px solid var(--border-2); border-radius: var(--radius-sm); width: 100%; flex-direction: row; justify-content: space-between; }
  .stat + .stat { border-top: none; border-radius: 0; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card-body { padding: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }
  .product-info-name { font-size: 1.5rem; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 400px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   NAV — 360 TOOL HIGHLIGHT LINK
══════════════════════════════════════════════ */
.nav-link-tool {
  color: var(--orange) !important;
  border: 1px solid rgba(255,107,0,0.3);
  background: var(--orange-dim) !important;
}
.nav-link-tool:hover { background: rgba(255,107,0,0.2) !important; border-color: var(--orange); }
.mobile-nav-link-tool { color: var(--orange) !important; }

/* ══════════════════════════════════════════════
   360 TOOL — LANDING PAGE (Liquid Glass + Interactive)
══════════════════════════════════════════════ */

/* 360 Tool Coming Soon */
.tool-soon {
  position: relative; min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0; overflow: hidden;
}
.tool-soon-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,107,0,.06) 0%, transparent 60%);
}
.tool-soon-badge {
  display: inline-block; font-size: .72rem; font-weight: 800;
  letter-spacing: .1em; color: var(--orange);
  background: rgba(255,107,0,.08); border: 1px solid rgba(255,107,0,.25);
  border-radius: 100px; padding: 6px 20px; margin-bottom: 24px;
}
.tool-soon-title {
  font-size: clamp(3rem, 7vw, 5rem); font-weight: 900;
  letter-spacing: -0.04em; margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.tool-soon-sub {
  font-size: 1.05rem; color: var(--text-2); line-height: 1.6;
  margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.tool-soon-features {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.tool-soon-features span {
  font-size: .76rem; font-weight: 600; color: var(--text-3);
  background: var(--surface); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 100px;
}
.tool-soon-date {
  font-size: .9rem; color: var(--text-3); margin-bottom: 28px;
}
.tool-soon-date strong { color: var(--orange); }

/* Hero */
.tool-hero {
  padding: 80px 0 88px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
}
.tool-hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 1200px; height: 900px;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(255,107,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.tool-hero-inner {
  display: grid;
  grid-template-columns: 1fr 700px;
  gap: 40px; align-items: center;
}
.tool-hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: visible;
  min-height: 700px;
}

/* ── 3D Logo container ── */
.tool-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange);
  background: linear-gradient(135deg, rgba(255,107,0,0.18) 0%, rgba(255,107,0,0.08) 100%);
  border: 1px solid rgba(255,107,0,0.3); border-radius: 100px;
  padding: 6px 16px; margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(255,107,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.tool-hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900; letter-spacing: -0.05em; line-height: 1.04;
  margin-bottom: 20px;
}
.tool-hero-sub {
  font-size: 1.05rem; color: var(--text-2); max-width: 460px;
  line-height: 1.72; margin-bottom: 32px;
}
.tool-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.tool-trust-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 0.75rem; color: var(--text-3);
}

/* ── AE Panel (Liquid Glass, exact extension style) ── */
.ae-glass-panel {
  background: rgba(14,14,14,0.85);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; overflow: hidden;
  box-shadow:
    0 0 0 0.5px rgba(255,255,255,0.05),
    0 40px 100px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.12);
  user-select: none;
}
.ae-glass-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 13px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ae-glass-logo {
  font-size: 0.65rem; font-weight: 800; color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ae-glass-dots { display: flex; gap: 4px; }
.ae-glass-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.12); }

/* Tab nav — liquid glass sliding pill (exact extension style) */
.ae-glass-tabs {
  display: flex; align-items: center; gap: 2px;
  padding: 4px 5px; margin: 6px 8px 2px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6), 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.ae-glass-tab-slider {
  position: absolute; top: 4px; bottom: 4px; left: 5px;
  width: calc(25% - 3px);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.4s cubic-bezier(0.4,0,0.1,1);
  pointer-events: none; z-index: 0;
}
.ae-glass-tab-btn {
  flex: 1; padding: 7px 4px; background: transparent;
  border: none; border-radius: 20px;
  color: rgba(255,255,255,0.35);
  font-size: 0.54rem; font-weight: 800; letter-spacing: 0.06em;
  cursor: default; font-family: inherit; position: relative; z-index: 1;
  transition: color 0.3s;
}
.ae-glass-tab-btn.active { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.2); }

.ae-glass-body { padding: 10px 10px 12px; }
.ae-block-label {
  font-size: 0.52rem; font-weight: 700; color: rgba(255,255,255,0.22);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 5px;
}
.ae-anchor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-bottom: 7px; }
.ae-anchor-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; padding: 5px 3px;
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  cursor: default; font-family: inherit; text-align: center;
}
.ae-anchor-mid {
  background: rgba(255,107,0,0.18); border-color: rgba(255,107,0,0.4);
  color: var(--orange);
  box-shadow: 0 0 8px rgba(255,107,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ae-sep { height: 1px; background: rgba(255,255,255,0.06); margin: 7px 0; }
.ae-add-row { display: flex; gap: 4px; margin-bottom: 7px; }
.ae-add-btn {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 5px; padding: 7px 2px;
  font-size: 0.56rem; font-weight: 800; color: rgba(255,255,255,0.5);
  cursor: default; font-family: inherit; letter-spacing: 0.04em;
}
.ae-curves-row { display: flex; gap: 5px; margin-bottom: 7px; }
.ae-curve-chip {
  flex: 1; border-radius: 5px; padding: 7px 4px;
  font-size: 0.6rem; font-weight: 800; cursor: default; font-family: inherit; border: 1px solid;
}
.ae-curve-orange {
  background: rgba(255,107,0,0.15); border-color: rgba(255,107,0,0.35); color: var(--orange);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.ae-curve-blue {
  background: rgba(85,136,255,0.12); border-color: rgba(85,136,255,0.3); color: #80aaff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.ae-bottom-row { display: flex; gap: 5px; }
.ae-export-btn {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 5px; padding: 8px 6px;
  font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.5);
  cursor: default; font-family: inherit;
}
.ae-gear-btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 5px; padding: 8px 10px;
  font-size: 0.75rem; color: rgba(255,255,255,0.4); cursor: default; font-family: inherit;
}

/* ── Before / After ── */
.tool-ba-section { padding: 72px 0; border-bottom: 1px solid var(--glass-border); }
.tool-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tool-ba-card {
  border-radius: var(--radius); padding: 32px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-inset), 0 4px 20px rgba(0,0,0,0.3);
}
.tool-ba-before { background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%); }
.tool-ba-after  { background: linear-gradient(160deg, rgba(255,107,0,0.07) 0%, rgba(255,107,0,0.03) 100%); border-color: rgba(255,107,0,0.25); box-shadow: var(--glass-inset), 0 4px 20px rgba(255,107,0,0.08); }
.tool-ba-label { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.tool-ba-before .tool-ba-label { color: var(--text-3); }
.tool-ba-after  .tool-ba-label { color: var(--orange); text-shadow: 0 0 12px rgba(255,107,0,0.4); }
.tool-ba-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.tool-ba-before .tool-ba-list li { font-size: 0.87rem; color: var(--text-3); padding-left: 18px; position: relative; line-height: 1.5; }
.tool-ba-before .tool-ba-list li::before { content: '✕'; position: absolute; left: 0; color: #3a3a3a; font-size: 0.65rem; top: 3px; }
.tool-ba-after .tool-ba-list li { font-size: 0.87rem; color: var(--text-1, #f5f5f5); padding-left: 18px; position: relative; line-height: 1.5; }
.tool-ba-after .tool-ba-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-size: 0.72rem; top: 2px; }

/* ── Tool Feature Rows (alternating layout) ── */
.tf-row { padding: 80px 0; border-bottom: 1px solid var(--glass-border); }
.tf-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.tf-row-reverse .tf-grid { direction: rtl; }
.tf-row-reverse .tf-grid > * { direction: ltr; }

.tf-visual { display: flex; justify-content: center; }

/* ── Anchor demo ── */
.tf-anchor-demo { width: 100%; max-width: 440px; }
.tf-anchor-canvas {
  width: 100%; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; position: relative;
  margin-bottom: 16px; overflow: hidden;
}
.tf-anchor-rect {
  position: absolute; width: 55%; height: 55%;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 8px; background: rgba(255,255,255,0.03);
  transition: none;
}
.tf-anchor-rect-label {
  position: absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  font-size: 0.6rem; color: rgba(255,255,255,0.2); letter-spacing: 0.05em; white-space: nowrap;
}
.tf-anchor-dot {
  position: absolute; width: 14px; height: 14px;
  border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 12px rgba(255,107,0,0.6), 0 0 30px rgba(255,107,0,0.2);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: top 0.35s cubic-bezier(0.4,0,0.1,1), left 0.35s cubic-bezier(0.4,0,0.1,1);
}
.tf-anchor-grid-wrap {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 6px;
  max-width: 220px; margin: 0 auto;
}
.tf-anchor-grid-wrap .ext-anchor-btn { padding: 12px; font-size: 1rem; border-radius: 8px; }

/* ── Bezier curve demo ── */
.tf-bezier-demo { width: 100%; max-width: 440px; }
.tf-bezier-toggle {
  display: flex; gap: 0; margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden;
}
.tf-bz-btn {
  flex: 1; padding: 10px; font-size: 0.72rem; font-weight: 800;
  color: rgba(255,255,255,0.3); background: transparent; border: none;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.tf-bz-btn.active { color: #FF6B2B; background: rgba(255,107,0,0.15); }
.tf-bz-btn[data-gmode="speed"].active { color: #5588FF; background: rgba(85,136,255,0.15); }

.tf-bezier-svg {
  width: 100%; height: auto; display: block;
  background: rgba(0,0,0,0.3); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 12px;
}
.tf-bz-handle {
  filter: drop-shadow(0 0 6px rgba(255,107,0,0.5));
  transition: r 0.15s;
}
.tf-bz-handle:hover { r: 13; }

/* ── Preset Grid (extension-style) ── */
.tf-preset-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.tf-preset-cell {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 4px 7px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  cursor: pointer; transition: all 0.18s;
}
.tf-preset-cell svg { width: 46px; height: 46px; }
.tf-preset-cell span {
  font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.3);
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.2;
}
.tf-preset-cell:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
}
.tf-preset-cell.active {
  border-color: rgba(255,107,0,0.5);
  background: rgba(255,107,0,0.08);
  box-shadow: 0 0 16px rgba(255,107,0,0.12);
}
.tf-preset-cell.active span { color: #FF6B00; }
.tf-preset-cell.active.tf-sp-cell {
  border-color: rgba(85,136,255,0.5);
  background: rgba(85,136,255,0.08);
  box-shadow: 0 0 16px rgba(85,136,255,0.12);
}
.tf-preset-cell.active.tf-sp-cell span { color: #5588FF; }
.tf-preset-empty { opacity: 0.35; }
.tf-preset-empty:hover { opacity: 0.55; }
.tf-preset-plus {
  font-size: 1.3rem !important; color: rgba(255,255,255,0.2) !important;
  line-height: 46px !important; font-weight: 400 !important;
}
.ext-range-blue::-webkit-slider-thumb { background: #5588FF !important; }
.ext-range-blue::-moz-range-thumb { background: #5588FF !important; }
.ext-range-blue::-webkit-slider-runnable-track { background: rgba(85,136,255,0.15) !important; }

/* ── Speed graph sliders ── */
.tf-speed-sliders { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }

/* ── Layout demo ── */
.tf-layout-wrap {
  display: flex; gap: 20px; align-items: flex-start; width: 100%;
}
.tf-layout-demo { flex: 1; min-width: 0; max-width: 320px; }

/* ── Layout live preview panel ── */
.tf-layout-preview {
  width: 200px; flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.tf-lp-header {
  padding: 10px 14px;
  font-size: 0.68rem; font-weight: 800; color: var(--text-2);
  letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tf-lp-block {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  border-left: 3px solid;
  max-height: 0; opacity: 0; overflow: hidden;
  padding-top: 0; padding-bottom: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease,
              padding 0.35s cubic-bezier(0.4,0,0.2,1);
}
.tf-lp-block:last-child { border-bottom: none; }
.tf-lp-block.visible {
  max-height: 80px; opacity: 1;
  padding: 10px 14px;
}
.tf-lp-icon {
  font-size: 0.9rem; line-height: 1;
  opacity: 0.6; flex-shrink: 0; margin-top: 1px;
}
.tf-lp-content { flex: 1; min-width: 0; }
.tf-lp-name {
  font-size: 0.6rem; font-weight: 700; color: var(--text-2);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px;
}
.tf-lp-mini-grid {
  display: grid; grid-template-columns: repeat(3, 10px); gap: 3px;
}
.tf-lp-mini-grid span {
  width: 10px; height: 10px; border-radius: 2px;
  background: rgba(255,255,255,0.08);
}
.tf-lp-mini-grid span.active { background: #FF6B00; }
.tf-lp-bar-row { display: flex; gap: 4px; align-items: center; }
.tf-lp-bar { height: 6px; border-radius: 3px; }
.tf-lp-curve { width: 100%; height: 24px; }
.tf-layout-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: rgba(255,255,255,0.04);
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(255,255,255,0.08); border-bottom: none;
  font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.5);
}
.tf-layout-reset {
  padding: 4px 12px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 6px;
  color: rgba(255,255,255,0.4); font-size: 0.6rem; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.15s;
}
.tf-layout-reset:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.tf-layout-blocks {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0 0 12px 12px; overflow: hidden;
}
.tf-layout-block {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px; background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: opacity 0.3s, background 0.15s, transform 0.15s;
  opacity: 0.35;
}
.tf-layout-block:last-child { border-bottom: none; }
.tf-layout-block.active { opacity: 1; }
.tf-layout-block.dragging { opacity: 0.4; background: rgba(255,107,0,0.06); }
.tf-lb-grip {
  cursor: grab; color: rgba(255,255,255,0.15);
  font-size: 1rem; line-height: 1; user-select: none;
}
.tf-lb-grip:active { cursor: grabbing; }
.tf-lb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.tf-lb-name {
  flex: 1; font-size: 0.65rem; font-weight: 700;
  color: rgba(255,255,255,0.7); letter-spacing: 0.5px;
}
.tf-lb-switch {
  position: relative; width: 36px; height: 20px;
  display: inline-block; flex-shrink: 0;
}
.tf-lb-switch input { display: none; }
.tf-lb-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); border-radius: 10px;
  transition: background 0.2s; cursor: pointer;
}
.tf-lb-slider::before {
  content: ''; position: absolute; width: 16px; height: 16px;
  left: 2px; bottom: 2px; background: white; border-radius: 50%;
  transition: transform 0.2s;
}
.tf-lb-switch input:checked + .tf-lb-slider { background: #FF6B00; }
.tf-lb-switch input:checked + .tf-lb-slider::before { transform: translateX(16px); }

/* ── Shake demo ── */
.tf-shake-demo { width: 100%; max-width: 480px; }
.tf-shake-presets-row {
  display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap;
}
.tf-shake-presets-row .ext-shake-preset { flex: 1; min-width: 60px; }
.tf-shake-controls { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

/* ── Sort demo ── */
.tf-sort-demo { width: 100%; max-width: 440px; }
.tf-sort-before {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 4px;
}
.tf-sort-file {
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  transition: all 0.5s cubic-bezier(0.4,0,0.1,1);
}
.tf-sort-file.sorted {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.06);
  color: #22d3ee;
}
.tf-sort-folder-label {
  font-size: 0.58rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(34,211,238,0.4);
  margin-top: 12px; margin-bottom: 4px; padding-left: 4px;
}

.tf-text { display: flex; flex-direction: column; gap: 16px; }
.tf-badge {
  display: inline-flex; align-self: flex-start;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--orange); background: rgba(255,107,0,0.10);
  border: 1px solid rgba(255,107,0,0.25); border-radius: 100px;
  padding: 5px 14px;
}
.tf-title { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; line-height: 1.15; }
.tf-desc { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; }
.tf-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
}
.tf-list li {
  font-size: 0.85rem; color: var(--text-2); line-height: 1.6;
  padding-left: 20px; position: relative;
}
.tf-list li::before {
  content: '→'; position: absolute; left: 0; color: var(--orange);
  font-size: 0.75rem; top: 2px;
}
.tf-list li strong { color: var(--text); font-weight: 700; }

@media (max-width: 860px) {
  .tf-grid { grid-template-columns: 1fr; gap: 40px; }
  .tf-row-reverse .tf-grid { direction: ltr; }
  .tf-visual { max-width: 400px; margin: 0 auto; width: 100%; }
}

.tool-section-sub { font-size: 0.95rem; color: var(--text-2); margin-top: 8px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ══ Extension Interactive Panels ══ */
#extPanel { user-select: none; }
.ext-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ext-logo {
  font-size: 0.72rem; font-weight: 800; color: #FF6B2B;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.ext-dots { display: flex; gap: 5px; }
.ext-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.12); }

/* Ext tab nav (legacy, kept for compat) */
.ext-tabs {
  display: none;
}
.ext-tab-slider {
  position: absolute; top: 4px; bottom: 4px; left: 6px;
  width: calc(25% - 4px); border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.10) 40%, rgba(255,255,255,0.04) 100%);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.4s cubic-bezier(0.4,0,0.1,1);
  pointer-events: none; z-index: 0;
}
.ext-tab {
  flex: 1; padding: 8px 4px; background: transparent; border: none;
  border-radius: 20px; color: rgba(255,255,255,0.35);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em;
  cursor: pointer; font-family: inherit; position: relative; z-index: 1;
  transition: color 0.3s;
}
.ext-tab.active { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.2); }
.ext-tab:hover { color: rgba(255,255,255,0.7); }

/* Ext body */
.ext-body { padding: 12px 12px 14px; }
.ext-section-label {
  font-size: 0.58rem; font-weight: 700; color: rgba(255,255,255,0.22);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.ext-sep { height: 1px; background: rgba(255,255,255,0.06); margin: 8px 0; }

/* Anchor grid */
.ext-anchor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-bottom: 4px; }
.ext-anchor-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; padding: 8px 4px;
  font-size: 0.85rem; color: rgba(255,255,255,0.35);
  cursor: pointer; font-family: inherit; text-align: center;
  transition: all 0.15s;
}
.ext-anchor-btn:hover { border-color: rgba(255,107,0,0.4); background: rgba(255,107,0,0.08); }
.ext-anchor-center {
  background: rgba(255,107,0,0.18) !important; border-color: rgba(255,107,0,0.4) !important;
  color: #FF6B2B !important;
  box-shadow: 0 0 8px rgba(255,107,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.ext-flash {
  background: rgba(255,107,0,0.25) !important;
  border-color: rgba(255,107,0,0.5) !important;
  color: #FF6B2B !important;
  box-shadow: 0 0 12px rgba(255,107,0,0.3) !important;
}

/* Add layer grid */
.ext-add-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 4px; margin-bottom: 4px; }
.ext-add-btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px; padding: 9px 4px;
  font-size: 0.62rem; font-weight: 800; color: rgba(255,255,255,0.5);
  cursor: pointer; font-family: inherit; letter-spacing: 0.04em; transition: all 0.15s;
}
.ext-add-btn:hover { border-color: rgba(255,107,0,0.3); background: rgba(255,107,0,0.06); }

/* Quick curves */
.ext-curves-legend { font-weight: 400; font-size: 0.5rem; color: rgba(255,255,255,0.18); }
.ext-dot-orange { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #FF6B2B; margin-right: 2px; }
.ext-dot-blue { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #5588FF; margin-left: 6px; margin-right: 2px; }
.ext-quick-curves { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 4px; }
.ext-qc-col { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; }
.ext-qc-cell {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px; padding: 4px; cursor: pointer; transition: all 0.15s;
  display: flex; align-items: center; justify-content: center;
}
.ext-qc-cell svg { width: 28px; height: 28px; display: block; }
.ext-qc-cell:hover { border-color: rgba(255,107,0,0.3); background: rgba(255,107,0,0.06); }

/* Align grid */
.ext-align-target {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px; color: rgba(255,255,255,0.4); font-size: 0.5rem;
  padding: 2px 6px; font-family: inherit; margin-left: auto;
}
.ext-align-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3px; margin-bottom: 4px; }
.ext-align-btn {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px; padding: 7px 4px;
  font-size: 0.85rem; color: rgba(255,255,255,0.35); cursor: pointer; font-family: inherit;
  transition: all 0.15s;
}
.ext-align-btn:hover { border-color: rgba(255,107,0,0.3); background: rgba(255,107,0,0.06); }

/* Bottom row */
.ext-bottom-row { display: flex; gap: 5px; }
.ext-export-btn {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px; padding: 9px 8px;
  font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.5);
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.ext-export-btn:hover { border-color: rgba(255,107,0,0.3); }
.ext-gear-btn {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px; padding: 9px 12px;
  font-size: 0.85rem; color: rgba(255,255,255,0.4); cursor: pointer; font-family: inherit;
  transition: transform 0.4s;
}
.ext-gear-spin { transform: rotate(90deg); }

/* GRAPHS tab */
.ext-graph-toggle { display: flex; gap: 0; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; background: rgba(0,0,0,0.3); }
.ext-gt-btn { flex: 1; padding: 8px; font-size: 0.65rem; font-weight: 800; color: rgba(255,255,255,0.3); background: transparent; border: none; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.ext-gt-active { color: #FF6B2B; background: rgba(255,107,0,0.15); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); }
.ext-gt-btn:hover:not(.ext-gt-active) { color: rgba(255,255,255,0.5); }

.ext-preset-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; margin-bottom: 10px; }
.ext-preset-cell {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px; padding: 6px 4px; cursor: pointer; text-align: center;
  transition: all 0.2s; display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.ext-preset-cell svg { width: 100%; height: 32px; display: block; color: #FF6B2B; }
.ext-preset-cell.ext-speed-mode svg { color: #5588FF; }
.ext-preset-cell span { font-size: 0.46rem; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.03em; }
.ext-preset-cell:hover { border-color: rgba(255,107,0,0.35); background: rgba(255,107,0,0.06); }
.ext-preset-active { border-color: rgba(255,107,0,0.5) !important; background: rgba(255,107,0,0.12) !important; box-shadow: 0 0 10px rgba(255,107,0,0.15); }
.ext-preset-active.ext-speed-mode { border-color: rgba(85,136,255,0.5) !important; background: rgba(85,136,255,0.12) !important; box-shadow: 0 0 10px rgba(85,136,255,0.15); }
.ext-preset-empty { color: rgba(255,255,255,0.15); font-size: 1.1rem; justify-content: center; min-height: 52px; }
.ext-preset-empty:hover { color: rgba(255,255,255,0.3); }

.ext-curve-display {
  background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 10px; margin-bottom: 6px;
}
.ext-curve-display svg { width: 100%; height: 80px; display: block; }
.ext-graph-hint { font-size: 0.58rem; color: rgba(255,255,255,0.2); text-align: center; }

/* MOTION tab */
.ext-motion-sub-tabs { display: flex; gap: 0; margin-bottom: 10px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; background: rgba(0,0,0,0.3); }
.ext-ms-btn { flex: 1; padding: 8px; font-size: 0.65rem; font-weight: 800; color: rgba(255,255,255,0.3); background: transparent; border: none; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.ext-ms-active { color: #22d3ee; background: rgba(6,182,212,0.15); }
.ext-motion-pane { display: none; }
.ext-motion-pane.active { display: block; }

.ext-sort-fields { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.ext-sort-row { display: flex; align-items: center; gap: 8px; }
.ext-sort-row span { font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.3); width: 80px; flex-shrink: 0; }
.ext-sort-input {
  flex: 1; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px; padding: 5px 8px; color: rgba(255,255,255,0.6);
  font-size: 0.62rem; font-family: inherit;
}
.ext-sort-btn {
  width: 100%; background: linear-gradient(160deg, rgba(34,211,238,0.8) 0%, rgba(6,182,212,0.8) 100%);
  border: none; border-radius: 8px; padding: 10px;
  font-size: 0.78rem; font-weight: 800; color: #fff; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 16px rgba(6,182,212,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.15s;
}

/* SHAKES tab */
.ext-shake-opts { display: flex; gap: 14px; margin-bottom: 10px; flex-wrap: wrap; }
.ext-check-lbl { display: flex; align-items: center; gap: 6px; font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.35); cursor: pointer; }
.ext-check-lbl input { accent-color: #FF6B2B; width: 13px; height: 13px; }

.ext-shake-presets { display: grid; grid-template-columns: repeat(5,1fr); gap: 4px; margin-bottom: 4px; }
.ext-shake-preset {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px; padding: 7px 3px;
  font-size: 0.55rem; font-weight: 700; color: rgba(255,255,255,0.35);
  cursor: pointer; font-family: inherit; text-align: center; transition: all 0.15s;
}
.ext-shake-preset:hover { border-color: rgba(255,107,0,0.35); background: rgba(255,107,0,0.06); }
.ext-shake-preset.active { border-color: rgba(255,107,0,0.5); background: rgba(255,107,0,0.15); color: #FF6B2B; box-shadow: 0 0 8px rgba(255,107,0,0.15); }

.ext-shake-sliders { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.ext-slider-row { display: flex; align-items: center; gap: 8px; }
.ext-sl-lbl { font-size: 0.58rem; font-weight: 600; color: rgba(255,255,255,0.3); width: 66px; flex-shrink: 0; }
.ext-range {
  flex: 1; -webkit-appearance: none; height: 4px;
  background: rgba(255,255,255,0.08); border-radius: 2px; outline: none;
}
.ext-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: #FF6B2B; cursor: pointer;
  box-shadow: 0 0 6px rgba(255,107,0,0.5);
}
.ext-sl-val { font-size: 0.6rem; font-weight: 700; color: rgba(255,255,255,0.4); width: 28px; text-align: right; }

.ext-shake-preview {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); background: #000; margin-bottom: 10px;
}
.ext-shake-video {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center center; transform: scale(1.12);
}
.ext-apply-btn {
  width: 100%; background: linear-gradient(160deg, rgba(255,140,51,0.9) 0%, rgba(255,107,0,0.9) 100%);
  border: none; border-radius: 8px; padding: 11px;
  font-size: 0.82rem; font-weight: 800; color: #fff; cursor: pointer; font-family: inherit;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 16px rgba(255,107,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.15s;
}
.ext-apply-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(255,107,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2); }

/* ── Stabilizer & Zoom demo ── */
.tf-stab-demo { width: 100%; max-width: 440px; }
.tf-stab-preview {
  width: 100%; aspect-ratio: 16/10; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08); background: #111;
  margin-bottom: 16px; position: relative;
}
.tf-stab-frame {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative; overflow: hidden;
}
.tf-stab-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}
.tf-stab-label {
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em; text-transform: uppercase; z-index: 1;
}
.tf-stab-controls { display: flex; flex-direction: column; gap: 12px; }
.tf-stab-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.tf-stab-btn, .tf-zoom-btn {
  flex: 1; padding: 10px 14px; border-radius: 10px;
  font-size: 0.78rem; font-weight: 700; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5); transition: all 0.2s; font-family: inherit;
}
.tf-stab-btn:hover, .tf-zoom-btn:hover {
  border-color: rgba(16,185,129,0.4); background: rgba(16,185,129,0.08); color: #10b981;
}
.tf-stab-btn.active {
  border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.15); color: #10b981;
  box-shadow: 0 0 12px rgba(16,185,129,0.15);
}
.tf-stab-btn.tf-stab-done {
  border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.2); color: #10b981;
}
.tf-zoom-btn.tf-zoom-active {
  border-color: rgba(16,185,129,0.5); background: rgba(16,185,129,0.15); color: #10b981;
}
.ext-range-green::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: #10b981; cursor: pointer;
  box-shadow: 0 0 6px rgba(16,185,129,0.5);
}

/* ── Align & Distribute demo ── */
.tf-align-demo { width: 100%; max-width: 440px; }
.tf-align-canvas {
  width: 100%; aspect-ratio: 16/10; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02);
  position: relative; overflow: hidden; margin-bottom: 14px;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
}
.tf-align-box {
  position: absolute; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: left 0.4s cubic-bezier(.4,0,.2,1), top 0.4s cubic-bezier(.4,0,.2,1);
}
.tf-align-box#aBox1 { width: 60px; height: 40px; background: rgba(168,85,247,0.5); border-color: rgba(168,85,247,0.6); }
.tf-align-box#aBox2 { width: 45px; height: 55px; background: rgba(85,136,255,0.5); border-color: rgba(85,136,255,0.6); }
.tf-align-box#aBox3 { width: 70px; height: 35px; background: rgba(255,107,0,0.5); border-color: rgba(255,107,0,0.6); }
.tf-align-btns {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
}
.tf-align-btn {
  padding: 9px 6px; border-radius: 8px;
  font-size: 0.72rem; font-weight: 700; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.45); transition: all 0.15s; font-family: inherit;
}
.tf-align-btn:hover {
  border-color: rgba(168,85,247,0.4); background: rgba(168,85,247,0.08); color: #a855f7;
}
.tf-align-btn.ext-flash {
  border-color: rgba(168,85,247,0.6); background: rgba(168,85,247,0.2); color: #a855f7;
  box-shadow: 0 0 10px rgba(168,85,247,0.2);
}
.tf-align-dist { font-size: 0.65rem; }

@media (max-width: 600px) {
  .tf-preset-grid { grid-template-columns: repeat(5, 1fr); gap: 5px; }
  .tf-preset-cell { padding: 6px 2px 5px; }
  .tf-preset-cell svg { width: 34px; height: 34px; }
  .tf-preset-cell span { font-size: 0.5rem; }
  .tf-shake-presets-row { flex-wrap: wrap; }
  .tf-layout-wrap { flex-direction: column; }
  .tf-layout-demo { max-width: 100%; }
  .tf-layout-preview { width: 100%; }
  .tf-stab-btns { flex-direction: column; }
  .tf-align-btns { grid-template-columns: repeat(4, 1fr); }
}

/* Demo tab switcher */
.demo-tab-row {
  display: inline-flex; gap: 2px; padding: 4px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.5);
  margin: 36px 0 32px;
}
.demo-tab-btn {
  padding: 9px 24px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4); background: transparent; border: none;
  cursor: pointer; transition: color 0.25s; font-family: inherit;
}
.demo-tab-btn.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Demo panes */
.demo-pane { display: none; }
.demo-pane.active { display: block; }

/* GRAPHS demo */
.graphs-demo {
  display: grid; grid-template-columns: 220px 1fr; gap: 32px; align-items: start;
}
.graphs-preset-list { display: flex; flex-direction: column; gap: 6px; }
.graphs-preset-list h4 { font-size: 0.65rem; font-weight: 700; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.bezier-preset-btn {
  width: 100%; text-align: left; padding: 11px 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text-2);
  font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: all 0.2s; display: flex; align-items: center; gap: 10px;
  backdrop-filter: blur(12px);
  box-shadow: var(--glass-inset);
}
.bezier-preset-btn .bp-curve { width: 32px; height: 20px; flex-shrink: 0; }
.bezier-preset-btn:hover { background: var(--glass-hi); border-color: var(--glass-border-hi); color: var(--text); }
.bezier-preset-btn.active {
  background: linear-gradient(135deg, rgba(255,107,0,0.18) 0%, rgba(255,107,0,0.08) 100%);
  border-color: rgba(255,107,0,0.4); color: var(--orange);
  box-shadow: 0 4px 16px rgba(255,107,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}

.bezier-canvas-wrap {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: var(--glass-inset), 0 8px 32px rgba(0,0,0,0.4);
}
.bezier-canvas-label { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.bezier-svg { width: 100%; height: 220px; display: block; cursor: crosshair; }
.bezier-handle { cursor: grab; transition: r 0.15s; }
.bezier-handle:hover { r: 10; }
.bezier-handle:active { cursor: grabbing; }
.bezier-hint { font-size: 0.72rem; color: var(--text-3); margin-top: 14px; text-align: center; }

/* SHAKES demo */
.shakes-demo {
  display: grid; grid-template-columns: 220px 1fr 200px; gap: 32px; align-items: start;
}
.shake-preset-list { display: flex; flex-direction: column; gap: 6px; }
.shake-preset-list h4 { font-size: 0.65rem; font-weight: 700; color: var(--text-3); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.shake-demo-btn {
  width: 100%; text-align: left; padding: 11px 16px;
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm); color: var(--text-2);
  font-size: 0.82rem; font-weight: 700; cursor: pointer; font-family: inherit;
  transition: all 0.2s;
  backdrop-filter: blur(12px); box-shadow: var(--glass-inset);
}
.shake-demo-btn:hover { background: var(--glass-hi); border-color: var(--glass-border-hi); color: var(--text); }
.shake-demo-btn.active {
  background: linear-gradient(135deg, rgba(255,107,0,0.18) 0%, rgba(255,107,0,0.08) 100%);
  border-color: rgba(255,107,0,0.4); color: var(--orange);
  box-shadow: 0 4px 16px rgba(255,107,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
}
.shake-phone-wrap {
  display: flex; align-items: center; justify-content: center;
}
.shake-phone-frame {
  width: 160px;
  aspect-ratio: 9/16;
  border-radius: 20px; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5), 0 24px 64px rgba(0,0,0,0.8),
    inset 0 1px 0 rgba(255,255,255,0.2);
  background: #000;
  position: relative;
}
.shake-phone-frame::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 40%; height: 3px; background: rgba(255,255,255,0.1);
  border-radius: 0 0 4px 4px; z-index: 2;
}
.shake-demo-video {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center center; transform: scale(1.12);
}
.shake-params-panel {
  background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border);
  border-radius: var(--radius); padding: 18px;
  backdrop-filter: blur(20px); box-shadow: var(--glass-inset);
}
.shake-params-panel h4 { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.sp-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.sp-lbl { font-size: 0.62rem; font-weight: 700; color: var(--text-3); width: 70px; flex-shrink: 0; }
.sp-track { flex: 1; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.sp-fill { height: 100%; background: var(--orange); border-radius: 2px; transition: width 0.4s cubic-bezier(0.4,0,0.2,1); box-shadow: 0 0 6px rgba(255,107,0,0.5); }
.sp-val { font-size: 0.62rem; font-weight: 700; color: var(--text-3); width: 24px; text-align: right; }

/* ── 4 Tabs Section ── */
.tool-tabs-section { padding: 80px 0; border-bottom: 1px solid var(--glass-border); }
.tool-tabs-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 44px;
}
.tool-tab-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.065) 0%, rgba(255,255,255,0.025) 100%);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--glass-inset), 0 4px 20px rgba(0,0,0,0.3);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.tool-tab-card:hover {
  border-color: rgba(255,107,0,0.35);
  transform: translateY(-3px);
  box-shadow: var(--glass-inset), 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,107,0,0.1);
}
.tool-tab-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tool-tab-badge {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em;
  background: rgba(255,107,0,0.15); color: var(--orange);
  border: 1px solid rgba(255,107,0,0.3); border-radius: 6px; padding: 3px 10px;
  box-shadow: 0 2px 8px rgba(255,107,0,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.tool-tab-card-title { font-size: 1rem; font-weight: 700; }
.tool-tab-card-desc { font-size: 0.85rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }
.tool-tab-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.tool-tab-list li { font-size: 0.8rem; color: var(--text-3); padding-left: 15px; position: relative; line-height: 1.4; }
.tool-tab-list li::before { content: '–'; position: absolute; left: 0; color: var(--orange); }

/* ── Deep Dive Sections ── */
.tool-deep { padding: 80px 0; border-top: 1px solid var(--glass-border); }
.tool-deep-alt { background: rgba(255,255,255,0.02); }
.tool-deep-row { display: grid; gap: 80px; align-items: center; }
.tool-deep-ltr { grid-template-columns: 1fr 1fr; }
.tool-deep-rtl { grid-template-columns: 1fr 1fr; }
.tool-deep-rtl .tool-deep-text  { order: 1; }
.tool-deep-rtl .tool-deep-visual { order: 2; }
.tool-deep-eyebrow { font-size: 0.72rem; font-weight: 700; color: var(--orange); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 14px; }
.tool-deep-title { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 16px; }
.tool-deep-desc { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.tool-deep-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tool-deep-list li { font-size: 0.88rem; color: var(--text-2); padding-left: 18px; position: relative; line-height: 1.5; }
.tool-deep-list li::before { content: '↗'; position: absolute; left: 0; color: var(--orange); font-size: 0.7rem; top: 2px; }

/* ── Graphs Preset Mockup ── */
.gp-mockup {
  background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px; padding: 20px;
  box-shadow: var(--glass-inset), 0 16px 48px rgba(0,0,0,0.5);
  backdrop-filter: blur(24px);
}
.ae-mock-label { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.22); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.gp-toggle { display: flex; margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; overflow: hidden; background: rgba(0,0,0,0.3); }
.gp-tog-btn { flex: 1; padding: 7px 8px; font-size: 0.62rem; font-weight: 800; color: rgba(255,255,255,0.3); background: transparent; border: none; cursor: default; font-family: inherit; }
.gp-tog-active { background: rgba(255,107,0,0.15); color: var(--orange); box-shadow: inset 0 1px 0 rgba(255,255,255,0.1); }
.gp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 5px; margin-bottom: 12px; }
.gp-cell { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 7px; padding: 8px 6px; display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: default; }
.gp-active { background: rgba(255,107,0,0.12); border-color: rgba(255,107,0,0.4); box-shadow: 0 0 12px rgba(255,107,0,0.1), inset 0 1px 0 rgba(255,255,255,0.08); }
.gp-svg { width: 40px; height: 28px; display: block; }
.gp-cell span { font-size: 0.52rem; font-weight: 700; color: rgba(255,255,255,0.25); text-transform: uppercase; letter-spacing: 0.04em; }
.gp-active span { color: var(--orange); }
.gp-bezier-hint { display: flex; align-items: flex-start; gap: 8px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 7px; padding: 10px 12px; font-size: 0.68rem; color: rgba(255,255,255,0.3); line-height: 1.5; }
.gp-bh-icon { color: var(--orange); flex-shrink: 0; margin-top: 1px; }

/* ── Shake Mockup ── */
.shake-mockup { background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.10); border-radius: 14px; padding: 20px; box-shadow: var(--glass-inset), 0 16px 48px rgba(0,0,0,0.5); backdrop-filter: blur(24px); }
.shake-opts-row { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.shake-check-lbl { display: flex; align-items: center; gap: 6px; font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.3); cursor: default; }
.shake-check-on { color: var(--orange); }
.shake-check { accent-color: var(--orange); width: 12px; height: 12px; cursor: default; }
.shake-presets-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.shake-preset { font-size: 0.65rem; font-weight: 700; padding: 5px 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 100px; color: rgba(255,255,255,0.4); cursor: default; font-family: inherit; }
.shake-preset.active { background: rgba(255,107,0,0.15); border-color: rgba(255,107,0,0.4); color: var(--orange); box-shadow: 0 0 8px rgba(255,107,0,0.15); }
.shake-sliders { display: flex; flex-direction: column; gap: 11px; margin-bottom: 16px; }
.shake-row { display: flex; align-items: center; gap: 10px; }
.shake-lbl { font-size: 0.62rem; font-weight: 600; color: rgba(255,255,255,0.3); width: 64px; flex-shrink: 0; }
.shake-track { flex: 1; height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.shake-fill { height: 100%; background: var(--orange); border-radius: 2px; box-shadow: 0 0 6px rgba(255,107,0,0.4); }
.shake-val { font-size: 0.62rem; font-weight: 700; color: rgba(255,255,255,0.4); width: 28px; text-align: right; }
.shake-apply { width: 100%; background: linear-gradient(160deg, rgba(255,140,51,0.9) 0%, rgba(255,107,0,0.9) 100%); border: none; border-radius: 8px; padding: 10px; font-size: 0.8rem; font-weight: 800; color: #fff; cursor: default; font-family: inherit; letter-spacing: 0.04em; box-shadow: 0 4px 16px rgba(255,107,0,0.3), inset 0 1px 0 rgba(255,255,255,0.2); }

/* ── CTA Section ── */
.tool-cta { padding: 100px 0; border-top: 1px solid var(--glass-border); text-align: center; position: relative; overflow: hidden; }
.tool-cta-inner { position: relative; z-index: 1; max-width: 580px; margin: 0 auto; }
.tool-cta-glow { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 900px; height: 900px; background: radial-gradient(circle, rgba(255,107,0,0.09) 0%, transparent 55%); pointer-events: none; }
.tool-cta-eyebrow { display: inline-flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: linear-gradient(135deg, rgba(255,107,0,0.18) 0%, rgba(255,107,0,0.08) 100%); border: 1px solid rgba(255,107,0,0.3); border-radius: 100px; padding: 6px 16px; margin-bottom: 24px; box-shadow: 0 2px 12px rgba(255,107,0,0.15), inset 0 1px 0 rgba(255,255,255,0.1); }
.tool-cta-title { font-size: clamp(3rem,7vw,6rem); font-weight: 900; letter-spacing: -0.06em; line-height: 0.95; margin-bottom: 18px; }
.tool-cta-sub { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 32px; }
.tool-cta-price { margin-bottom: 24px; }
.tool-price { font-size: 4rem; font-weight: 900; color: var(--orange); letter-spacing: -0.05em; display: block; line-height: 1; text-shadow: 0 0 40px rgba(255,107,0,0.3); }
.tool-price-note { font-size: 0.8rem; color: var(--text-3); margin-top: 6px; display: block; }
.tool-cta-trust { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.75rem; color: var(--text-3); margin-top: 20px; }

/* ── Responsive — Tool Page ── */
@media (max-width: 1100px) {
  .tool-deep-row { grid-template-columns: 1fr; gap: 44px; }
  .tool-deep-rtl .tool-deep-text  { order: 1; }
  .tool-deep-rtl .tool-deep-visual { order: 2; }
  .tool-tabs-grid { grid-template-columns: 1fr; }
  .graphs-demo { grid-template-columns: 1fr; }
  .shakes-demo { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .tool-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  /* Grid items default to min-width:auto so any wide child (e.g. the launch
     bar with its absolute pixel padding) can blow the column past the
     viewport. Force every direct grid item to be shrinkable, and pin the
     text column to 100% of available space. */
  .tool-hero-inner > * { min-width: 0; }
  .tool-hero-text { width: 100%; max-width: 100%; }
  .tool-hero-text > * { max-width: 100%; }
  .tool-hero-right { width: 100%; max-width: 420px; margin: 0 auto; min-height: 320px; }
  .logo3d-layers { width: 420px; height: 420px; }
  .logo3d-layer { width: 360px; }
  .ae-glass-panel { max-width: 270px; }
  .tool-ba-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .tool-hero-title { letter-spacing: -0.04em; }
  .tool-tabs-grid  { grid-template-columns: 1fr; }
  .demo-tab-btn { padding: 8px 16px; font-size: 0.72rem; }
}

/* ══════════════════════════════════════════════
   CATEGORY HERO — VIDEO BACKGROUND
══════════════════════════════════════════════ */
.cat-hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: 540px;
  max-height: 960px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #0d0d0d 0%, #120d06 100%);
}

.cat-hero-video-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.cat-hero-video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Gradient overlay: subtle top, fades to bg at bottom */
.cat-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(8,8,8,0.30) 0%,
      rgba(8,8,8,0.15) 25%,
      rgba(8,8,8,0.55) 65%,
      rgba(8,8,8,0.96) 100%
    );
}

/* Orange mood glow — bottom left */
.cat-hero-glow {
  position: absolute; bottom: -120px; left: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,107,0,0.10) 0%, transparent 60%);
  z-index: 1; pointer-events: none;
}

/* Content block — sits at bottom of hero */
.cat-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 68px; width: 100%;
}

.cat-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.35); border-radius: 100px;
  padding: 6px 16px; margin-bottom: 22px;
}

.cat-hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 900; letter-spacing: -0.05em; line-height: 1.02;
  margin-bottom: 20px; max-width: 820px;
}

.cat-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.68);
  max-width: 600px; line-height: 1.72; margin-bottom: 36px;
}

/* Stats strip */
.cat-hero-stats {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius);
  background: rgba(8,8,8,0.55); backdrop-filter: blur(14px);
  overflow: hidden; margin-bottom: 32px;
}
.cat-hero-stat {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 30px; gap: 3px;
}
.cat-hero-stat + .cat-hero-stat {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.cat-hero-stat-num {
  font-size: 1.25rem; font-weight: 900; color: var(--orange); line-height: 1;
}
.cat-hero-stat-lbl {
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.07em;
}

/* Benefit chips */
.cat-hero-benefits {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cat-hero-benefit {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; padding: 7px 16px;
  backdrop-filter: blur(8px);
}
.cat-hero-benefit::before {
  content: '✓'; color: var(--orange); font-weight: 900; font-size: 0.75rem; flex-shrink: 0;
}

/* Animated scroll-down indicator */
.cat-hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.35); padding: 8px;
  animation: catScrollBob 2.2s ease-in-out infinite;
  transition: color 0.2s;
}
.cat-hero-scroll:hover { color: rgba(255,255,255,0.7); }
@keyframes catScrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── CATEGORY HIGHLIGHT SECTIONS ──────────────── */
.cat-highlight-section {
  padding: 56px 0 40px;
  background: var(--bg);
}

/* Featured product card (clip-packs) */
.cat-hl-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 24px;
}
.cat-hl-featured-clickable {
  cursor: pointer;
  transition: transform .12s var(--ease-out), border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.cat-hl-featured-clickable:hover {
  border-color: rgba(255,107,0,0.45);
  box-shadow: 0 14px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,107,0,.18);
  transform: translateY(-2px);
}
.cat-hl-featured-clickable:active {
  transform: translateY(3px) scale(.992);
  box-shadow: inset 0 3px 10px rgba(0,0,0,.4);
  transition-duration: .05s;
}
.cat-hl-featured-clickable:focus-visible { outline: 2px solid var(--orange); outline-offset: 4px; }
.cat-hl-img { border-radius: 10px; overflow: hidden; }
.cat-hl-thumb { width: 100%; height: auto; border-radius: 8px; display: block; }
.cat-hl-thumb-placeholder { width: 100%; aspect-ratio: 16/9; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.cat-hl-eyebrow { font-size: 0.75rem; font-weight: 700; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 10px; }
.cat-hl-title { font-size: 1.6rem; font-weight: 800; color: var(--text-1); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.4px; }
.cat-hl-desc { font-size: 0.88rem; color: var(--text-3); line-height: 1.65; margin-bottom: 20px; }

/* FPS row (clip packs) */
.cat-hl-fps-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
}
.cat-hl-fps-item { display: flex; flex-direction: column; gap: 2px; }
.cat-hl-fps-num { font-size: 1rem; font-weight: 800; color: var(--orange); }
.cat-hl-fps-lbl { font-size: 0.72rem; color: var(--text-3); }
.cat-hl-fps-sep { color: var(--text-3); font-size: 1rem; opacity: 0.4; }

/* Callout row — 4 chips */
.cat-hl-callout-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}
.cat-hl-callout {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.cat-hl-callout-icon { font-size: 1.3rem; flex-shrink: 0; }
.cat-hl-callout div { display: flex; flex-direction: column; gap: 2px; }
.cat-hl-callout strong { font-size: 0.88rem; color: var(--text-1); font-weight: 700; }
.cat-hl-callout span { font-size: 0.75rem; color: var(--text-3); }

/* ── VFX Page — Offer banner ── */
.vfx-offer-banner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px;
  padding: 36px 40px; margin-bottom: 32px;
  background: linear-gradient(135deg, #0d0d0d 0%, rgba(255,107,0,.12) 50%, #1a0d05 100%);
  border: 1.5px solid rgba(255,107,0,.4);
  border-radius: 24px;
  transition: border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.vfx-offer-banner:hover { border-color: var(--orange); transform: translateY(-2px); }
.vfx-offer-glow {
  position: absolute; top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,.15) 0%, transparent 60%);
  pointer-events: none;
}
.vfx-offer-left { position: relative; }
.vfx-offer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  color: var(--orange); background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4); border-radius: 100px;
  padding: 6px 16px; margin-bottom: 18px;
}
.vfx-offer-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 8px var(--orange); animation: vfxPulse 1.6s infinite;
}
.vfx-offer-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.15; color: var(--text);
  margin-bottom: 12px;
}
.vfx-offer-accent { color: var(--orange); }
.vfx-offer-sub {
  font-size: .92rem; color: var(--text-2); line-height: 1.55;
  margin-bottom: 16px; max-width: 460px;
}
.vfx-offer-checks { display: flex; flex-wrap: wrap; gap: 6px 18px; }
.vfx-offer-checks span { font-size: .76rem; color: var(--text-3); font-weight: 600; }

.vfx-offer-right {
  position: relative; display: flex; flex-direction: column;
  align-items: flex-end; justify-content: center; gap: 14px;
}
.vfx-offer-price-row { display: flex; align-items: baseline; gap: 12px; }
.vfx-offer-price-old { font-size: 1.1rem; color: var(--text-3); text-decoration: line-through; }
.vfx-offer-price {
  font-size: 3rem; font-weight: 900; color: var(--orange); letter-spacing: -.03em;
  transition: transform .25s var(--ease-out);
}
.vfx-offer-banner:hover .vfx-offer-price { transform: scale(1.04); }
.vfx-offer-alt {
  font-size: .76rem; color: var(--text-3); cursor: pointer;
  text-decoration: underline; text-decoration-color: var(--border-2);
}
.vfx-offer-alt:hover { color: var(--orange); }

@media (max-width: 760px) {
  .vfx-offer-banner { grid-template-columns: 1fr; padding: 28px 22px; }
  .vfx-offer-right { align-items: flex-start; }
  .vfx-offer-price { font-size: 2.4rem; }
}

/* ── VFX Page — Extension Hero ── */
.vfx-ext-hero {
  position: relative; padding: 48px 40px; margin-bottom: 48px;
  background: linear-gradient(135deg, #0d0d0d 0%, rgba(255,107,0,.08) 50%, #0d0d0d 100%);
  border: 1.5px solid rgba(255,107,0,.25);
  border-radius: 24px; text-align: center; overflow: hidden;
}
.vfx-ext-hero::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,.08) 0%, transparent 60%);
  pointer-events: none;
}
.vfx-ext-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 800; letter-spacing: .1em;
  color: var(--orange); background: rgba(255,107,0,.1);
  border: 1px solid rgba(255,107,0,.3); border-radius: 100px;
  padding: 6px 18px; margin-bottom: 22px; position: relative;
}
.vfx-ext-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: vfxPulse 1.6s infinite;
}
@keyframes vfxPulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.vfx-ext-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 16px; position: relative;
}
.vfx-ext-sub {
  font-size: .98rem; color: var(--text-2); line-height: 1.6;
  max-width: 660px; margin: 0 auto 28px; position: relative;
}
.vfx-ext-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 700px; margin: 0 auto; position: relative;
}
.vfx-ext-stat {
  background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 12px;
  display: flex; flex-direction: column; gap: 4px;
}
.vfx-ext-num { font-size: 1.4rem; font-weight: 900; color: var(--orange); }
.vfx-ext-lbl { font-size: .7rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Screenshot placeholders ── */
.vfx-screen-row { margin: 32px 0; }
.vfx-screen-placeholder {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0d0d0d 0%, #161616 100%);
  border: 2px dashed var(--border-2);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.vfx-screen-icon { font-size: 2rem; opacity: .5; color: var(--orange); }
.vfx-screen-icon svg { width: 40px; height: 40px; }
.vfx-screen-label { font-size: .9rem; font-weight: 700; color: var(--text-2); }
.vfx-screen-hint { font-size: .76rem; color: var(--text-3); }

/* ── Video placeholder ── */
.vfx-video-section { margin-bottom: 48px; }
.vfx-video-head { text-align: center; margin-bottom: 24px; }
.vfx-video-head .cat-hl-desc { max-width: 600px; margin: 12px auto 0; }
.vfx-video-placeholder {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, #0a0a0a 0%, rgba(255,107,0,.05) 50%, #0a0a0a 100%);
  border: 2px dashed rgba(255,107,0,.25);
  border-radius: 16px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; cursor: pointer;
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out);
}
.vfx-video-placeholder:hover { border-color: rgba(255,107,0,.5); background: linear-gradient(135deg, #0a0a0a 0%, rgba(255,107,0,.08) 50%, #0a0a0a 100%); }
.vfx-video-play {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,107,0,.1); border: 2px solid rgba(255,107,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); padding-left: 4px;
}
.vfx-video-label { font-size: 1rem; font-weight: 800; color: var(--text); }
.vfx-video-hint { font-size: .8rem; color: var(--text-3); }
.vfx-video-embed {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.vfx-video-embed iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

/* ── Side-by-side feature rows ── */
.vfx-feature-row {
  display: grid; grid-template-columns: 460px 1fr; gap: 40px;
  align-items: center; margin-bottom: 32px;
  padding: 28px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 18px;
  transition: border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
.vfx-feature-row:hover { border-color: rgba(255,107,0,.25); transform: translateY(-2px); }
.vfx-feature-row.reverse { grid-template-columns: 1fr 460px; }
.vfx-feature-row.reverse .vfx-feature-screen { order: 2; }
.vfx-feature-row.reverse .vfx-feature-text { order: 1; }

.vfx-feature-screen {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.vfx-feature-screen .vfx-screen-placeholder {
  width: 100%; height: 100%; aspect-ratio: auto;
}
.vfx-feature-img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain; display: block;
  border-radius: 14px;
  transition: transform .4s var(--ease-out);
}
.vfx-feature-row:hover .vfx-feature-img { transform: scale(1.02); }

.vfx-feature-text { display: flex; flex-direction: column; gap: 12px; }
.vfx-feature-num {
  font-size: .9rem; font-weight: 900; color: var(--orange);
  letter-spacing: .04em;
}
.vfx-feature-text h4 {
  font-size: 1.4rem; font-weight: 900; color: var(--text);
  letter-spacing: -.02em; line-height: 1.2;
  display: flex; align-items: center; gap: 14px;
}
.vfx-feature-emoji {
  flex-shrink: 0; width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,.18) 0%, rgba(255,107,0,.04) 100%);
  border: 1px solid rgba(255,107,0,.25);
  color: var(--orange);
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.vfx-feature-emoji svg { width: 22px; height: 22px; }
.vfx-feature-row:hover .vfx-feature-emoji {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(255,107,0,.28) 0%, rgba(255,107,0,.08) 100%);
}
.vfx-feature-text p {
  font-size: .92rem; color: var(--text-2); line-height: 1.6; margin: 0;
}

@media (max-width: 900px) {
  .vfx-feature-row,
  .vfx-feature-row.reverse { grid-template-columns: 1fr; gap: 24px; }
  .vfx-feature-row.reverse .vfx-feature-screen { order: 1; }
  .vfx-feature-row.reverse .vfx-feature-text { order: 2; }
  .vfx-feature-screen { aspect-ratio: 9/16; max-height: 400px; max-width: 280px; margin: 0 auto; }
}

/* How it works section */
.vfx-how-section { margin-bottom: 48px; }
.vfx-how-head { text-align: center; margin-bottom: 32px; }
.vfx-how-head .cat-hl-desc { max-width: 700px; margin: 12px auto 0; }
.vfx-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vfx-step {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 8px;
}
.vfx-step-num {
  font-size: 1.4rem; font-weight: 900; color: var(--orange);
  margin-bottom: 4px;
}
.vfx-step strong { font-size: 1rem; color: var(--text); }
.vfx-step span { font-size: .82rem; color: var(--text-3); line-height: 1.55; }

/* Features grid */
.vfx-features-section { margin-bottom: 48px; }
.vfx-features-section .cat-hl-title { margin-bottom: 24px; }
.vfx-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px;
}
.vfx-feature {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 20px 18px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s var(--ease-out);
}
.vfx-feature:hover { border-color: rgba(255,107,0,.3); }
.vfx-feature-icon { font-size: 1.4rem; margin-bottom: 4px; }
.vfx-feature strong { font-size: .92rem; color: var(--text); }
.vfx-feature span { font-size: .78rem; color: var(--text-3); line-height: 1.5; }

/* Pack tiers */
.vfx-packs-section { margin-bottom: 32px; }
.vfx-packs-section .cat-hl-title { margin-bottom: 8px; }
.vfx-packs-section .cat-hl-desc { margin-bottom: 24px; }
.vfx-tiers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.vfx-tier {
  position: relative;
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out);
}
.vfx-tier:hover { transform: translateY(-3px); }
.vfx-tier--featured { background: linear-gradient(135deg, var(--surface) 0%, rgba(16,185,129,.05) 100%); }
.vfx-tier-badge {
  position: absolute; top: -10px; right: 12px;
  font-size: .62rem; font-weight: 800; letter-spacing: .07em;
  color: #fff; padding: 4px 10px; border-radius: 100px;
}
.vfx-tier strong { font-size: 1rem; }
.vfx-tier span { font-size: .76rem; color: var(--text-3); line-height: 1.5; }
.vfx-tier-ext {
  margin-top: 6px; font-size: .7rem !important; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  width: fit-content;
}
.vfx-tier-ext.has { color: var(--green) !important; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); }
.vfx-tier-ext.no { color: var(--text-3) !important; background: rgba(85,85,85,.1); border: 1px solid var(--border); }

/* Bonus perks */
.vfx-bonus-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.vfx-bonus {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 12px;
  transition: border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.vfx-bonus:hover { border-color: rgba(255,107,0,.25); transform: translateY(-2px); }
.vfx-bonus > span { font-size: 1.3rem; flex-shrink: 0; }
.vfx-bonus-ico {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,107,0,.15) 0%, rgba(255,107,0,.04) 100%);
  border: 1px solid rgba(255,107,0,.22);
  color: var(--orange);
  transition: transform .25s var(--ease-out);
}
.vfx-bonus-ico svg { width: 18px; height: 18px; }
.vfx-bonus:hover .vfx-bonus-ico { transform: scale(1.1); }
.vfx-bonus div { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.vfx-bonus strong { font-size: .82rem; color: var(--text); }
.vfx-bonus div > span { font-size: .72rem; color: var(--text-3); }

@media (max-width: 900px) {
  .vfx-ext-stats { grid-template-columns: repeat(2, 1fr); }
  .vfx-steps-grid { grid-template-columns: 1fr; }
  .vfx-features-grid { grid-template-columns: repeat(2, 1fr); }
  .vfx-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .vfx-bonus-row { grid-template-columns: repeat(2, 1fr); }
  .vfx-ext-hero { padding: 32px 20px; }
}
@media (max-width: 560px) {
  .vfx-features-grid { grid-template-columns: 1fr; }
}

/* VFX alpha banner */
.cat-hl-alpha-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 24px;
}
.cat-hl-mode-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cat-hl-mode {
  font-size: 0.75rem; font-weight: 700; color: var(--orange);
  background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.25);
  padding: 5px 11px; border-radius: 20px; letter-spacing: 0.5px;
}
.cat-hl-type-card {
  display: flex; align-items: center; gap: 12px;
  background: #0d0d0d; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px; margin-bottom: 10px;
}
.cat-hl-type-icon { font-size: 1.4rem; flex-shrink: 0; }
.cat-hl-type-card div { display: flex; flex-direction: column; gap: 2px; }
.cat-hl-type-card strong { font-size: 0.9rem; color: var(--text-1); font-weight: 700; }
.cat-hl-type-card span { font-size: 0.78rem; color: var(--text-3); }

/* Project files template row */
.cat-hl-template-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 20px;
}
.cat-hl-steps-col { display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.cat-hl-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: #0d0d0d; border: 1px solid var(--border);
  border-radius: 10px; padding: 14px 16px;
}
.cat-hl-step-num { font-size: 1.2rem; font-weight: 900; color: var(--orange); flex-shrink: 0; line-height: 1; margin-top: 2px; }
.cat-hl-step div { display: flex; flex-direction: column; gap: 3px; }
.cat-hl-step strong { font-size: 0.9rem; color: var(--text-1); font-weight: 700; }
.cat-hl-step span { font-size: 0.78rem; color: var(--text-3); }

/* Project file original edits */
.pf-edits-section { margin: 32px 0; }
.pf-edits-title {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-3); margin-bottom: 6px;
}
.pf-edits-sub { font-size: .82rem; color: var(--text-3); margin-bottom: 18px; line-height: 1.5; }
.pf-edits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pf-edit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; text-decoration: none;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.pf-edit-card:hover { border-color: var(--orange); transform: translateY(-2px); }
.pf-edit-thumb {
  position: relative; width: 100%; aspect-ratio: 9/16;
  background: #0a0a0a; overflow: hidden;
}
.pf-edit-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s var(--ease-out); }
.pf-edit-card:hover .pf-edit-thumb img { transform: scale(1.03); }
.pf-edit-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; opacity: 0; transition: opacity .2s var(--ease-out);
}
.pf-edit-card:hover .pf-edit-play { opacity: 1; }
.pf-edit-info { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.pf-edit-name { font-size: .88rem; font-weight: 700; color: var(--text); }
.pf-edit-desc { font-size: .74rem; color: var(--text-3); line-height: 1.4; }
.pf-edit-cta { font-size: .76rem; font-weight: 600; color: var(--orange); margin-top: 4px; }
@media (max-width: 640px) {
  .pf-edits-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .pf-edit-info { padding: 10px 10px; gap: 2px; }
  .pf-edit-name { font-size: .75rem; line-height: 1.2; }
  .pf-edit-desc { display: none; }
  .pf-edit-cta { font-size: .68rem; margin-top: 4px; }
}

/* Bundle banner */
.cat-hl-bundle-banner {
  display: flex; align-items: stretch; gap: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, rgba(139,92,246,0.08) 100%);
  border: 1.5px solid rgba(139,92,246,0.35);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  margin-top: 24px;
}
.cat-hl-bundle-banner:hover { border-color: rgba(139,92,246,0.7); transform: translateY(-2px); }
.cat-hl-bundle-cover {
  width: 220px; flex-shrink: 0; background: #0a0a0a; overflow: hidden;
}
.cat-hl-bundle-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cat-hl-bundle-info { flex: 1; padding: 24px 28px; display: flex; flex-direction: column; gap: 6px; }
.cat-hl-bundle-badge {
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  color: #a855f7; background: rgba(168,85,247,.1);
  border: 1px solid rgba(168,85,247,.25); border-radius: 100px;
  padding: 4px 12px; width: fit-content;
}
.cat-hl-bundle-name { font-size: 1.2rem; font-weight: 900; color: var(--text); }
.cat-hl-bundle-sub { font-size: .84rem; color: var(--text-2); line-height: 1.5; }
.cat-hl-bundle-list {
  list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-wrap: wrap; gap: 4px 16px;
}
.cat-hl-bundle-list li {
  font-size: .76rem; color: var(--text-3);
}
.cat-hl-bundle-list li::before { content: '✓ '; color: var(--green); font-weight: 700; }
.cat-hl-bundle-action {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 24px 28px; gap: 8px; flex-shrink: 0;
  border-left: 1px solid rgba(139,92,246,0.15);
}
.cat-hl-bundle-old { font-size: 0.88rem; color: var(--text-3); text-decoration: line-through; }
.cat-hl-bundle-price { font-size: 1.8rem; font-weight: 900; color: #a855f7; }

/* LUT section */
.cat-hl-luts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.cat-hl-compat-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.cat-hl-compat {
  font-size: 0.75rem; font-weight: 600; color: var(--text-2);
  background: var(--surface-2, #111); border: 1px solid var(--border);
  padding: 5px 11px; border-radius: 20px;
}
/* ══════════════════════════════════════════════
   LUT STANDALONE PAGE
   ══════════════════════════════════════════════ */

/* Hero */
.lut-hero {
  position: relative; padding: 80px 0 60px; overflow: hidden;
}
.lut-hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060e1a 0%, #0d1f35 40%, #1a3858 70%, #0a1220 100%);
  z-index: 0;
}
.lut-hero-inner { display: flex; gap: 48px; align-items: center; }
.lut-hero-text { flex: 1; }
.lut-hero-badge {
  display: inline-block; font-size: .68rem; font-weight: 800;
  letter-spacing: .07em; color: #7090d0;
  background: rgba(112,144,208,.1); border: 1px solid rgba(112,144,208,.3);
  border-radius: 100px; padding: 5px 16px; margin-bottom: 20px;
}
.lut-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.05; color: #d0e4f0;
  margin-bottom: 16px;
}
.lut-hero-sub { font-size: .95rem; color: #8aacc8; line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
.lut-hero-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 20px; }
.lut-hero-price-num { font-size: 2rem; font-weight: 900; color: #d0e4f0; }
.lut-hero-price-old { font-size: 1rem; color: #5a7a90; text-decoration: line-through; }
.lut-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.lut-hero-compat { display: flex; gap: 10px; }
.lut-hero-compat span {
  font-size: .7rem; font-weight: 600; color: #6a90b0;
  background: rgba(112,144,208,.08); border: 1px solid rgba(112,144,208,.2);
  padding: 4px 12px; border-radius: 100px;
}

.lut-hero-visual { width: 340px; flex-shrink: 0; }
.lut-hero-gradient-block {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(112,144,208,.2);
}
.lut-hero-grad-inner {
  height: 280px;
  background: linear-gradient(180deg,
    #d0e4f0 0%, #90b8d4 15%, #5a8aaa 30%,
    #2e5070 50%, #14263e 70%, #080e18 100%);
}
.lut-hero-grad-label {
  padding: 12px 16px; font-size: .72rem; font-weight: 700;
  color: #6a90b0; text-align: center;
  background: rgba(8,14,24,.8);
}

/* Sections */
.lut-section { padding: 48px 0; }
.lut-sect-head { margin-bottom: 28px; }
.lut-sect-title { font-size: 1.5rem; font-weight: 900; margin-bottom: 6px; }
.lut-sect-sub { font-size: .86rem; color: var(--text-3); }

/* File cards */
.lut-files-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lut-file-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.lut-fc-header {}
.lut-fc-grad { height: 120px; }
.lut-fc-body { padding: 20px 22px; }
.lut-fc-name { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.lut-fc-desc { font-size: .82rem; color: var(--text-2); line-height: 1.5; margin-bottom: 10px; }
.lut-fc-format { font-size: .72rem; color: var(--text-3); font-weight: 600; }

/* Steps */
.lut-steps { display: flex; flex-direction: column; gap: 12px; }
.lut-step {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 20px 24px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
}
.lut-step-num { font-size: 1.3rem; font-weight: 900; color: #7090d0; flex-shrink: 0; }
.lut-step-text { display: flex; flex-direction: column; gap: 4px; }
.lut-step-text strong { font-size: .9rem; color: var(--text); }
.lut-step-text span { font-size: .8rem; color: var(--text-3); line-height: 1.5; }

@media (max-width: 900px) {
  .lut-hero-inner { flex-direction: column; }
  .lut-hero-visual { width: 100%; }
  .lut-hero-grad-inner { height: 180px; }
  .lut-files-row { grid-template-columns: 1fr; }
}

/* ── LUT Before/After Slider ── */
.lut-compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.lut-compare {
  position: relative; width: 100%; aspect-ratio: 9/16;
  border-radius: 16px; overflow: hidden; cursor: col-resize;
  border: 1px solid var(--border); background: #0a0a0a;
  user-select: none; -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.lut-compare img, .lut-compare video { -webkit-user-drag: none; user-drag: none; }
.lut-compare-before {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.lut-compare-clip {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  clip-path: inset(0 0 0 50%); z-index: 2;
}
.lut-compare-after-clip {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.lut-compare-handle {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 4px; height: 100%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.lut-handle-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 3px; height: 100%; background: #fff; border-radius: 2px;
  box-shadow: 0 0 12px rgba(0,0,0,.5);
}
.lut-handle-circle {
  position: relative; z-index: 1;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.95); color: #111;
  display: flex; align-items: center; justify-content: center; gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.lut-compare-label {
  position: absolute; bottom: 16px; z-index: 4;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em;
  padding: 5px 14px; border-radius: 100px;
  backdrop-filter: blur(8px);
}
.lut-label-before { left: 12px; background: rgba(255,255,255,.15); color: #fff; }
.lut-label-after { right: 12px; background: rgba(112,144,208,.25); color: #d0e4f0; }

@media (max-width: 640px) {
  .lut-compare-row { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* ── LUT Page — Shared ── */
.lut-intro { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 48px; }
.lut-intro-left { flex: 1; }
.lut-intro-right { width: 380px; flex-shrink: 0; }

.lut-files { display: flex; flex-direction: column; gap: 12px; }
.lut-file {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 14px;
}
.lut-file-icon { color: #7090d0; flex-shrink: 0; }
.lut-file-info { display: flex; flex-direction: column; gap: 2px; }
.lut-file-name { font-size: .88rem; font-weight: 700; color: var(--text); }
.lut-file-format { font-size: .72rem; color: var(--text-3); }

/* ── LUT Page — Palette ── */
.lut-palette { margin-bottom: 48px; }
.lut-palette-title {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-3); margin-bottom: 16px;
}
.lut-palette-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 12px; }
.lut-palette-block {
  aspect-ratio: 1; border-radius: 12px; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.06);
}
.lut-hex { font-size: .6rem; opacity: .5; font-family: monospace; }
.lut-gradient-wide { height: 8px; border-radius: 4px; }

/* ── LUT Page — Used In ── */
.lut-used-section { margin-bottom: 48px; }
.lut-used-header { margin-bottom: 20px; }
.lut-used-sub { font-size: .84rem; color: var(--text-3); margin-top: 6px; }
.lut-used-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lut-used-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; text-decoration: none;
  transition: border-color .2s, transform .2s;
}
.lut-used-card:hover { border-color: #7090d0; transform: translateY(-3px); }
.lut-used-card-thumb {
  position: relative; width: 100%; aspect-ratio: 9/16; max-height: 280px;
  overflow: hidden; background: #0a0a0a;
}
.lut-used-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.lut-used-card:hover .lut-used-card-thumb img { transform: scale(1.05); }
.lut-used-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #fff; opacity: 0; transition: opacity .25s;
}
.lut-used-card:hover .lut-used-play { opacity: 1; }
.lut-used-card-bar { height: 6px; background: linear-gradient(to right, #0a1628, #2e5070, #90b8d4); display: none; }
.lut-used-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; }
.lut-used-car { font-size: .92rem; font-weight: 800; color: var(--text); }
.lut-used-desc { font-size: .78rem; color: var(--text-3); font-style: italic; }
.lut-used-cta { font-size: .78rem; font-weight: 700; color: #7090d0; margin-top: 6px; }

/* ── LUT Page — Buy Block ── */
.lut-buy-block {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: linear-gradient(135deg, #0a0a0a 0%, rgba(112,144,208,.08) 100%);
  border: 1.5px solid rgba(112,144,208,.3);
  border-radius: 20px; padding: 32px 36px;
  transition: border-color .2s, transform .2s;
}
.lut-buy-block:hover { border-color: rgba(112,144,208,.6); transform: translateY(-2px); }
.lut-buy-left { flex: 1; }
.lut-buy-badge {
  font-size: .68rem; font-weight: 800; letter-spacing: .06em;
  color: #7090d0; background: rgba(112,144,208,.1);
  border: 1px solid rgba(112,144,208,.25); border-radius: 100px;
  padding: 4px 14px; display: inline-block; margin-bottom: 12px;
}
.lut-buy-title { font-size: 1.3rem; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.lut-buy-sub { font-size: .84rem; color: var(--text-2); margin-bottom: 14px; }
.lut-buy-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 4px 18px; }
.lut-buy-list li { font-size: .76rem; color: var(--text-3); }
.lut-buy-list li::before { content: '✓ '; color: #7090d0; font-weight: 700; }
.lut-buy-right { display: flex; flex-direction: column; align-items: center; gap: 12px; flex-shrink: 0; }
.lut-buy-price { font-size: 2.2rem; font-weight: 900; color: #7090d0; }

@media (max-width: 900px) {
  .lut-intro { flex-direction: column; gap: 24px; }
  .lut-intro-right { width: 100%; }
  .lut-palette-row { grid-template-columns: repeat(3, 1fr); }
  .lut-used-grid { grid-template-columns: 1fr; }
  .lut-buy-block { flex-direction: column; text-align: center; }
  .lut-buy-list { justify-content: center; }
}

/* Extensions feature grid */
.cat-hl-ext-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.cat-hl-ext-header { margin-bottom: 28px; }
.cat-hl-ext-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cat-hl-ext-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.cat-hl-ext-feature {
  display: flex; flex-direction: column; gap: 8px;
  background: #0d0d0d; border: 1px solid var(--border);
  border-radius: 10px; padding: 16px;
}
.cat-hl-ext-icon { font-size: 1.5rem; }
.cat-hl-ext-info { display: flex; flex-direction: column; gap: 4px; }
.cat-hl-ext-info strong { font-size: 0.88rem; color: var(--text-1); font-weight: 700; }
.cat-hl-ext-info span { font-size: 0.76rem; color: var(--text-3); line-height: 1.4; }

/* Courses learning path */
.cat-hl-learning-path {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 24px;
}
.cat-hl-path-header { margin-bottom: 28px; }
.cat-hl-path-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.cat-hl-path-step {
  flex: 1;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 8px;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-hl-path-step:hover { transform: translateY(-2px); }
.cat-hl-path-num {
  font-size: 1.8rem; font-weight: 900;
  border: 2px solid;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cat-hl-path-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.cat-hl-path-title { font-size: 1rem; font-weight: 800; color: var(--text-1); line-height: 1.3; }
.cat-hl-path-sub { font-size: 0.8rem; color: var(--text-3); line-height: 1.5; flex-grow: 1; }
.cat-hl-path-arrow {
  font-size: 1.4rem; color: var(--text-3); opacity: 0.3;
  display: flex; align-items: center; padding: 0 10px;
  flex-shrink: 0;
}

/* ── Course Blocks (full-width) ── */
.course-block {
  display: flex; gap: 32px; align-items: stretch;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden; cursor: pointer;
  transition: border-color .2s, transform .2s;
  margin-bottom: 20px;
}
.course-block:hover { border-color: var(--orange); transform: translateY(-2px); }
.course-block--soon { cursor: default; }
.course-block--soon:hover { border-color: var(--border); transform: none; }
.course-block--soon .cb-info { opacity: 0.5; }
.course-block--soon .cb-cover-img { filter: grayscale(1) brightness(0.5); }

.cb-cover {
  width: 420px; flex-shrink: 0; aspect-ratio: 4/3;
  position: relative; overflow: hidden; background: #0a0a0a;
}
.cb-cover-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cb-cover-placeholder {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center; font-size: 3rem;
}
.cb-soon-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(168,85,247,.15); color: #a855f7;
  border: 1px solid rgba(168,85,247,.3); border-radius: 100px;
  padding: 4px 14px; font-size: .72rem; font-weight: 800;
  letter-spacing: .06em;
}

.cb-info { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; }
.cb-step { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cb-step-num { font-size: 1.4rem; font-weight: 900; }
.cb-step-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em;
}
.cb-title { font-size: 1.35rem; font-weight: 900; color: var(--text); margin-bottom: 6px; }
.cb-tagline { font-size: .88rem; color: var(--text-2); margin-bottom: 12px; }
.cb-desc { font-size: .82rem; color: var(--text-3); line-height: 1.55; margin-bottom: 16px; }

.cb-includes {
  list-style: none; padding: 0; margin: 0 0 20px;
  display: flex; flex-wrap: wrap; gap: 6px 16px;
}
.cb-inc-item {
  font-size: .78rem; color: var(--text-2); display: flex; align-items: center; gap: 6px;
}
.cb-inc-check { color: var(--green); font-size: .7rem; font-weight: 700; }

.cb-footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; }
.cb-price { display: flex; align-items: baseline; gap: 8px; }
.cb-price-free {
  font-size: 1rem; font-weight: 800; color: var(--green);
  background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25);
  border-radius: 8px; padding: 4px 14px;
}
.cb-price-num { font-size: 1.2rem; font-weight: 900; color: var(--text); }
.cb-price-old { font-size: .88rem; color: var(--text-3); text-decoration: line-through; }
.cb-coming { font-size: .82rem; color: var(--text-3); font-weight: 600; }

@media (max-width: 768px) {
  .course-block { flex-direction: column; }
  .cb-cover { width: 100%; aspect-ratio: 4/3; }
  .cb-info { padding: 20px; }
}

/* Products section below hero */
.cat-products-section { padding: 52px 0 80px; }
.cat-products-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.cat-products-count {
  font-size: 0.82rem; color: var(--text-3); font-weight: 600;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cat-hero { height: auto; min-height: 72vh; }
  .cat-hero-content { padding-bottom: 56px; }
  .cat-hero-stat { padding: 12px 20px; }
  .cat-hl-featured,
  .cat-hl-alpha-banner,
  .cat-hl-template-row,
  .cat-hl-luts { grid-template-columns: 1fr; gap: 28px; }
  .cat-hl-ext-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-hl-callout-row { grid-template-columns: repeat(2, 1fr); }
  .cat-hl-path-steps { flex-direction: column; gap: 12px; }
  .cat-hl-path-arrow { display: none; }
  .products-grid--2col { grid-template-columns: 1fr !important; }
}
@media (max-width: 640px) {
  .cat-hero-title { letter-spacing: -0.04em; }
  .cat-hero-sub { font-size: 0.95rem; }
  .cat-hero-stats { flex-wrap: wrap; }
  .cat-hero-stat { padding: 10px 16px; }
  .cat-hero-stat-num { font-size: 1.1rem; }
  .cat-hl-callout-row { grid-template-columns: 1fr; }
  .cat-hl-ext-grid { grid-template-columns: 1fr; }
  .cat-hl-bundle-banner { flex-direction: column; }
  .cat-hl-bundle-cover { width: 100%; aspect-ratio: 4/3; }
  .cat-hl-bundle-action { border-left: none; border-top: 1px solid rgba(139,92,246,0.15); flex-direction: row; padding: 16px 20px; }
}

/* ══════════════════════════════════════════════
   ICON SYSTEM — global SVG container
══════════════════════════════════════════════ */
.ico { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.ico svg { width: 1em; height: 1em; }

/* Card thumb placeholder uses brand SVG */
.card-thumb-placeholder svg { width: 64px; height: 64px; color: var(--orange); opacity: .6; }
.card-thumb-placeholder { font-size: 0; }
.product-card:hover .card-thumb-placeholder svg {
  transform: scale(1.08) rotate(-2deg);
  transition: transform .35s var(--ease-out);
}

/* Cart item icon */
.cart-item-icon svg { width: 26px; height: 26px; color: var(--orange); }
.cart-item-icon { font-size: 0; }

/* Floating reveal — combines fade + lift */
.float-up {
  opacity: 0; transform: translateY(20px);
  animation: floatUp 0.5s var(--ease-out) forwards;
}
@keyframes floatUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Subtle brand pulse — only for active CTAs */
@keyframes brandPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(255,107,0,.35); }
  50% { box-shadow: 0 6px 28px rgba(255,107,0,.55); }
}

/* Icon badge — orange gradient container, used in feature lists */
.icon-badge {
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,.18) 0%, rgba(255,107,0,.04) 100%);
  border: 1px solid rgba(255,107,0,.25);
  color: var(--orange);
  transition: transform .3s var(--ease-out), background .3s var(--ease-out);
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge--sm { width: 36px; height: 36px; border-radius: 10px; }
.icon-badge--sm svg { width: 18px; height: 18px; }
.icon-badge--lg { width: 56px; height: 56px; border-radius: 14px; }
.icon-badge--lg svg { width: 28px; height: 28px; }

/* Hover lift on icon badges within hovered parent */
*:hover > .icon-badge,
*:hover .icon-badge[data-pop] {
  transform: scale(1.08) rotate(-3deg);
  background: linear-gradient(135deg, rgba(255,107,0,.28) 0%, rgba(255,107,0,.08) 100%);
}

/* Generic interactive lift class — apply for hover lift+border */
.lift {
  transition: transform .25s var(--ease-out), border-color .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.lift:hover { transform: translateY(-3px); border-color: rgba(255,107,0,.3); }
.lift:active { transform: scale(0.98); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s var(--ease-out),
              transform 0.45s var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* Page-level fade-in on route change.
   No transform: would create a containing block for descendant
   position:fixed elements (e.g. modals) and break viewport pinning. */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.page-enter { animation: pageFadeIn 0.3s var(--ease-out) both; }

/* Hero entrance — CSS-only, fires on every home render */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeInUp 0.5s var(--ease-out) 0.05s both; }
.hero-title   { animation: fadeInUp 0.5s var(--ease-out) 0.12s both; }
.hero-sub     { animation: fadeInUp 0.5s var(--ease-out) 0.19s both; }
.hero-ctas    { animation: fadeInUp 0.5s var(--ease-out) 0.26s both; }
.hero-stats   { animation: fadeInUp 0.5s var(--ease-out) 0.33s both; }

/* ══════════════════════════════════════════════
   BUNDLE SPOTLIGHT
══════════════════════════════════════════════ */
.bundle-spotlight {
  background: linear-gradient(135deg, var(--surface) 0%, #130f07 100%);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: var(--radius);
  padding: 52px 60px;
  display: flex; align-items: center; gap: 64px;
  position: relative; overflow: hidden;
  margin-bottom: 80px;
}
.bundle-spotlight::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.bundle-spotlight-icon {
  flex-shrink: 0;
  width: 180px; height: 180px;
  background: var(--orange-dim); border: 1px solid rgba(255,107,0,0.25);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 5rem;
}
.bundle-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.3); border-radius: 100px;
  padding: 5px 14px; margin-bottom: 16px;
}
.bundle-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.1;
  margin-bottom: 12px;
}
.bundle-sub {
  font-size: 0.95rem; color: var(--text-2); margin-bottom: 28px;
  line-height: 1.65; max-width: 480px;
}
.bundle-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.bundle-price     { font-size: 2.8rem; font-weight: 900; color: var(--orange); }
.bundle-price-old { font-size: 1.2rem; color: var(--text-3); text-decoration: line-through; }
.bundle-save {
  font-size: 0.75rem; font-weight: 700; color: var(--green);
  background: rgba(16,185,129,0.12); border-radius: 100px; padding: 3px 10px;
}
.bundle-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.bundle-chip {
  font-size: 0.73rem; font-weight: 600; color: var(--text-2);
  background: var(--surface-3); border: 1px solid var(--border-2);
  border-radius: 100px; padding: 5px 14px;
}

/* ══════════════════════════════════════════════
   ON SALE + NEW ARRIVALS
══════════════════════════════════════════════ */
.sale-section { padding: 0 0 80px; }
.new-section  { padding: 0 0 80px; }

/* ══════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .bundle-spotlight {
    flex-direction: column; padding: 36px 28px; gap: 28px;
  }
  .bundle-spotlight-icon { width: 100px; height: 100px; font-size: 3rem; }
}

/* ── 360 Tool Launch Spotlight ───────────────── */
.tool-launch {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0f00 50%, #0d0d0d 100%);
  border: 1px solid #FF6B0030;
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.tool-launch::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #FF6B0012 0%, transparent 70%);
  pointer-events: none;
}
.tool-launch-badge {
  display: inline-block;
  background: #FF6B00;
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.tool-launch-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.tool-launch-left { flex: 1.3; }
.tool-launch-right {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.tool-launch-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
  color: #fff;
}
.tool-launch-sub {
  color: var(--text-2);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.tool-launch-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.tool-launch-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-2);
  background: #ffffff06;
  border: 1px solid #ffffff0a;
  border-radius: 8px;
  padding: 8px 12px;
}
.tool-launch-feat span:first-child { font-size: 1rem; }
.tool-launch-compat {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Price block */
.tool-launch-price-block {
  text-align: center;
  padding: 24px;
  background: #ffffff06;
  border: 1px solid #FF6B0020;
  border-radius: 16px;
  width: 100%;
}
.tool-launch-price-old {
  font-size: 1.1rem;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.tool-launch-price {
  font-size: 3rem;
  font-weight: 800;
  color: #FF6B00;
  line-height: 1;
  margin-bottom: 8px;
}
.tool-launch-save {
  font-size: 0.82rem;
  color: #FF6B00;
  font-weight: 600;
}

/* Countdown */
.tool-launch-countdown {
  width: 100%;
  text-align: center;
}
.tool-launch-countdown-label {
  font-size: 0.78rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.tool-launch-timer {
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
}
.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff08;
  border: 1px solid #ffffff10;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 54px;
}
.timer-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.timer-lbl {
  font-size: 0.65rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}
.timer-sep {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FF6B0060;
  margin-top: -10px;
}

/* ── 360 Tool launch countdown — reused on home + 360 Tool page ── */
.tool-countdown {
  width: 100%;
  text-align: center;
  padding: 18px;
  background: rgba(255,107,0,0.04);
  border: 1px solid rgba(255,107,0,0.20);
  border-radius: 14px;
}
.tool-hero-countdown {
  display: inline-block;
  margin: 18px 0 22px;
  padding: 18px 24px;
  background: rgba(255,107,0,0.04);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 14px;
  text-align: center;
}
.tool-cta-countdown {
  margin: 18px auto 18px;
  padding: 18px 24px;
  background: rgba(255,107,0,0.05);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 14px;
  text-align: center;
  display: inline-block;
}
.tool-countdown-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #FF6B00);
  margin-bottom: 10px;
}
.tool-countdown-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tool-countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 56px;
}
.tool-countdown-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tool-countdown-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.tool-countdown-grid-lg .tool-countdown-cell {
  padding: 12px 16px;
  min-width: 68px;
}
.tool-countdown-grid-lg .tool-countdown-num { font-size: 1.85rem; }
.tool-countdown-meta {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-3);
}
@media (max-width: 600px) {
  .tool-countdown-cell { min-width: 48px; padding: 8px 10px; }
  .tool-countdown-grid-lg .tool-countdown-cell { min-width: 56px; padding: 10px 12px; }
  .tool-countdown-num { font-size: 1.25rem; }
  .tool-countdown-grid-lg .tool-countdown-num { font-size: 1.5rem; }
}

/* 360 Tool product page link */
.tool-page-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 4px;
  padding: 12px 20px;
  background: #FF6B0010;
  border: 1px solid #FF6B0030;
  border-radius: 10px;
  color: #FF6B00;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.tool-page-link:hover {
  background: #FF6B0018;
  border-color: #FF6B0050;
}
.tool-page-link svg { flex-shrink: 0; stroke: #FF6B00; }

@media (max-width: 900px) {
  .tool-launch { padding: 32px 24px; }
  .tool-launch-content { flex-direction: column; gap: 32px; }
  .tool-launch-right { width: 100%; }
  .tool-launch-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .tool-launch { padding: 24px 18px; }
  .tool-launch-title { font-size: 1.5rem; }
  .tool-launch-features { grid-template-columns: 1fr; }
  .tool-launch-price { font-size: 2.4rem; }
  .timer-block { padding: 8px 10px; min-width: 46px; }
  .timer-num { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════════
   REFERRAL PROGRAM PAGE
══════════════════════════════════════════════ */
.ref-hero {
  padding: 80px 0 60px; text-align: center;
  background: linear-gradient(180deg, rgba(255,107,0,0.06) 0%, transparent 60%);
}
.ref-hero-eyebrow {
  font-size: 0.82rem; font-weight: 700; color: var(--orange);
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px;
}
.ref-hero-title { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1.15; margin-bottom: 16px; }
.ref-hero-sub { font-size: 1.05rem; color: var(--text-2); max-width: 600px; margin: 0 auto 32px; line-height: 1.6; }
.ref-hero-stats {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-bottom: 32px;
}

/* Tiers */
.ref-tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ref-tier {
  background: var(--surface); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px; text-align: center;
}
.ref-tier-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; border: 1px solid; margin-bottom: 12px;
}
.ref-tier-pct { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 4px; }
.ref-tier-sales { font-size: 0.85rem; color: var(--text-3); margin-bottom: 8px; }
.ref-tier-reward { font-size: 0.9rem; font-weight: 700; color: var(--text-2); }

/* Example calc */
.ref-example {
  background: var(--surface); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 20px 28px; text-align: center;
}
.ref-example-title { font-size: 0.85rem; color: var(--text-3); margin-bottom: 8px; }
.ref-example-calc { font-size: 1.2rem; font-weight: 600; color: var(--text-2); }

/* Steps */
.ref-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ref-step {
  background: var(--surface); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 28px 20px;
}
.ref-step-num { font-size: 2rem; font-weight: 900; color: var(--orange); opacity: 0.4; margin-bottom: 12px; }
.ref-step-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.ref-step-desc { font-size: 0.85rem; color: var(--text-3); line-height: 1.6; }

/* Perks */
.ref-perks-grid { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.ref-perk {
  background: var(--surface); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px;
  flex: 0 0 calc(33.333% - 11px); min-width: 220px;
}
.ref-perk-icon { font-size: 1.6rem; margin-bottom: 12px; }
.ref-perk-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.ref-perk-desc { font-size: 0.82rem; color: var(--text-3); line-height: 1.55; }

/* Who is it for */
.ref-who { text-align: center; }
.ref-who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ref-who-card {
  background: var(--surface); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 32px 20px; text-align: center;
}
.ref-who-icon { font-size: 2rem; margin-bottom: 12px; }
.ref-who-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.ref-who-desc { font-size: 0.82rem; color: var(--text-3); line-height: 1.55; }

/* Apply form */
.ref-apply { max-width: 640px; margin: 0 auto; text-align: center; }
.ref-form { display: flex; flex-direction: column; gap: 12px; }
.ref-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ref-input {
  width: 100%; padding: 14px 16px; border-radius: 10px;
  border: 1px solid var(--border-2); background: var(--surface);
  color: var(--text); font-size: 0.88rem; font-family: inherit;
  transition: border-color 0.2s;
}
.ref-input:focus { outline: none; border-color: var(--orange); }
.ref-textarea { min-height: 100px; resize: vertical; }

/* Home page referral CTA banner */
.ref-cta-section { padding: 0 0 20px; }
.ref-cta-banner {
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, rgba(168,85,247,0.06) 100%);
  border: 1px solid rgba(255,107,0,0.15); border-radius: 20px;
  padding: 36px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.ref-cta-badge {
  font-size: 0.75rem; font-weight: 700; color: var(--orange);
  background: rgba(255,107,0,0.12); border: 1px solid rgba(255,107,0,0.2);
  border-radius: 100px; padding: 4px 12px; display: inline-block; margin-bottom: 10px;
}
.ref-cta-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.ref-cta-desc { font-size: 0.88rem; color: var(--text-3); line-height: 1.5; }

/* Social links in proof bar */
.proof-chip-link {
  text-decoration: none; color: var(--text-3); transition: color 0.2s, border-color 0.2s;
}
.proof-chip-link:hover { color: var(--orange); border-color: rgba(255,107,0,0.3); }

/* ── Referral responsive ── */
@media (max-width: 860px) {
  .ref-hero-title { font-size: 2rem; }
  .ref-tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ref-perk { flex: 0 0 calc(50% - 8px); }
  .ref-who-grid { grid-template-columns: 1fr; }
  .ref-form-row { grid-template-columns: 1fr; }
  .ref-cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .ref-tiers-grid { grid-template-columns: 1fr 1fr; }
  .ref-steps-grid { grid-template-columns: 1fr; }
  .ref-perk { flex: 0 0 100%; }
  .ref-hero-stats { gap: 20px; }
}

/* ─────────────────────────────────────────────
   COURSE PAGE
───────────────────────────────────────────── */
.cs-hero {
  position: relative;
  padding: 60px 0 76px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.cs-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(145deg, #090909 35%, color-mix(in srgb, var(--ca) 16%, #090909) 100%);
}
.cs-hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: var(--hero-img);
  background-size: cover; background-position: center;
  opacity: .18;
}
.cs-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: center;
}
.cs-hero-text   { min-width: 0; }
.cs-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.cs-badge {
  font-size: .67rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text-3);
}
.cs-badge-free  { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); color: #10b981; }
.cs-badge-paid  { background: rgba(255,107,0,.12);  border-color: rgba(255,107,0,.3);  color: var(--orange); }
.cs-hero-title  { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
.cs-hero-sub    { font-size: 1rem; color: var(--text-2); max-width: 520px; margin-bottom: 32px; line-height: 1.65; }
.cs-hero-stats  { display: flex; align-items: center; flex-wrap: wrap; margin-bottom: 36px; }
.cs-stat        { display: flex; flex-direction: column; gap: 3px; padding: 0 20px; }
.cs-stat:first-child { padding-left: 0; }
.cs-stat-num    { font-size: 1.1rem; font-weight: 900; }
.cs-stat-lbl    { font-size: .67rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.cs-stat-divider { width: 1px; height: 28px; background: var(--border-2); }
.cs-hero-cta    { display: flex; gap: 12px; flex-wrap: wrap; }

/* Video preview block */
.cs-hero-video-wrap {
  width: 100%; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  background: var(--surface);
}
.cs-preview-iframe,
.cs-preview-video {
  width: 100%; height: 100%; display: block; border: none;
}
.cs-preview-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--ca) 10%, var(--surface)) 100%);
  cursor: default;
}
.cs-preview-play {
  width: 56px; height: 56px; border-radius: 50%;
  background: color-mix(in srgb, var(--ca) 20%, transparent);
  border: 2px solid color-mix(in srgb, var(--ca) 40%, transparent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--ca);
}
.cs-preview-lbl { font-size: .9rem; font-weight: 700; color: var(--text-2); }
.cs-preview-sub { font-size: .75rem; color: var(--text-3); }

/* Screenshots */
.cs-screenshots-section { padding: 64px 0; }
.cs-screenshots-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.cs-screenshot { display: flex; flex-direction: column; gap: 10px; }
.cs-screenshot-img-wrap {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  background: var(--surface);
}
.cs-screenshot-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform .3s;
}
.cs-screenshot:hover .cs-screenshot-img-wrap img { transform: scale(1.03); }
.cs-screenshot-caption {
  font-size: .78rem; color: var(--text-3); line-height: 1.4; padding: 0 2px;
}

/* Sections */
.cs-section      { padding: 72px 0; }
.cs-section-alt  { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cs-section-head { text-align: center; margin-bottom: 48px; }
.cs-section-label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: var(--text-3); text-transform: uppercase; margin-bottom: 10px; }
.cs-section-title { font-size: 2rem; font-weight: 900; margin-bottom: 10px; }
.cs-section-sub   { color: var(--text-3); font-size: .88rem; }

/* Modules accordion */
.cs-modules { display: flex; flex-direction: column; gap: 8px; max-width: 800px; margin: 0 auto; }
.cs-module {
  background: var(--surface); border: 1px solid var(--border);
  border-left: 3px solid var(--mc, var(--border));
  border-radius: 12px; overflow: hidden; transition: border-color .2s;
}
.cs-module-head {
  display: flex; align-items: center; gap: 14px; padding: 18px 22px;
  cursor: pointer; user-select: none;
}
.cs-module-head:hover { background: rgba(255,255,255,.025); }
.cs-module-num    { font-size: .7rem; font-weight: 800; letter-spacing: .06em; min-width: 64px; }
.cs-module-title  { font-size: .95rem; font-weight: 700; flex: 1; }
.cs-module-meta   { font-size: .75rem; color: var(--text-3); white-space: nowrap; }
.cs-module-arrow  { color: var(--text-3); transition: transform .2s; flex-shrink: 0; }
.cs-module.open .cs-module-arrow { transform: rotate(180deg); }
.cs-module-body   { display: none; padding: 0 22px 18px 100px; }
.cs-module.open .cs-module-body { display: block; }
.cs-module-topic  {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: .85rem; color: var(--text-2);
  border-top: 1px solid var(--border);
}
.cs-module-topic:first-child { border-top: none; padding-top: 4px; }
.cs-topic-check   { font-weight: 800; font-size: .78rem; flex-shrink: 0; }

/* Skills */
.cs-skills-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  max-width: 1000px; margin: 0 auto;
}
.cs-skill {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 18px; display: flex; align-items: flex-start; gap: 14px;
}
.cs-skill-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 1px; }
.cs-skill-text { font-size: .84rem; font-weight: 600; line-height: 1.45; color: var(--text-2); }

/* Before → After */
.cs-ba { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.cs-ba-row { display: grid; grid-template-columns: 1fr 40px 1fr; gap: 12px; align-items: center; }
.cs-ba-cell {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 20px 22px; font-size: .9rem; font-weight: 600; line-height: 1.45;
}
.cs-ba-before  { border-color: rgba(239,68,68,.3); }
.cs-ba-label   { display: block; font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #ef4444; margin-bottom: 7px; }
.cs-ba-after .cs-ba-label { color: inherit; }
.cs-ba-arrow   { text-align: center; font-size: 1.3rem; color: var(--text-3); }

/* Who it's for */
.cs-who-grid  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 820px; margin: 0 auto; }
.cs-who-card  { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.cs-who-title { font-size: 1rem; font-weight: 800; margin-bottom: 7px; }
.cs-who-desc  { font-size: .84rem; color: var(--text-3); line-height: 1.6; }

/* Final CTA */
.cs-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface) 0%, color-mix(in srgb, var(--ca) 8%, var(--surface)) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
}
.cs-final-title { font-size: 2.2rem; font-weight: 900; margin-bottom: 12px; }
.cs-final-sub   { color: var(--text-3); font-size: .95rem; margin-bottom: 32px; }

/* Responsive */
@media (max-width: 1100px) {
  .cs-hero-inner    { grid-template-columns: 1fr 360px; gap: 36px; }
}
@media (max-width: 900px) {
  .cs-hero-inner    { grid-template-columns: 1fr; }
  .cs-hero-video-wrap { max-width: 560px; }
  .cs-hero-title    { font-size: 2.3rem; }
  .cs-skills-grid   { grid-template-columns: repeat(2, 1fr); }
  .cs-screenshots-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cs-screenshots-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .cs-hero-title    { font-size: 1.9rem; }
  .cs-hero-stats    { gap: 0; }
  .cs-stat          { padding: 0 14px; }
  .cs-section-title { font-size: 1.6rem; }
  .cs-who-grid      { grid-template-columns: 1fr; }
  .cs-ba-row        { grid-template-columns: 1fr; }
  .cs-ba-arrow      { display: none; }
  .cs-module-body   { padding-left: 22px; }
  .cs-hero-cta      { flex-direction: column; align-items: stretch; gap: 10px; }
  .cs-hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .cs-stat-divider  { display: none; }
  .cs-stat          { padding: 0 12px 0 0; }
  .cs-skills-grid   { grid-template-columns: 1fr 1fr; }
  .cs-final-title   { font-size: 1.7rem; }
}

/* ════════════════════════════════════════════════
   GUIDES PAGE
════════════════════════════════════════════════ */

/* ── Hero ── */
.guides-hero-section {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border);
}
.guides-hero-eyebrow {
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 12px;
}
.guides-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 16px;
}
.guides-hero-sub {
  font-size: 1rem; color: var(--text-2); max-width: 520px; line-height: 1.6;
}

/* ── Grid section ── */
.guides-grid-section { padding: 56px 0 80px; }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.guides-loading {
  grid-column: 1 / -1;
  display: flex; justify-content: center; padding: 60px 0;
}
.guides-error, .guides-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 0; color: var(--text-3);
}

/* ── Guide Card ── */
.guide-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-2);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.guide-card-thumb {
  position: relative;
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--surface-2);
  flex-shrink: 0;
}
.guide-card-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .35s ease;
  z-index: 1;
}
.guide-card:hover .guide-card-thumb img { transform: scale(1.04); }
.guide-card-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--text-3);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  z-index: 0;
}
.guide-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 50%);
  display: flex; align-items: flex-end; justify-content: center;
  padding-bottom: 16px;
  opacity: 0; transition: opacity .2s ease;
}
.guide-card:hover .guide-card-overlay { opacity: 1; }
.guide-card-view {
  font-size: .78rem; font-weight: 700; color: #fff;
  background: var(--orange); border-radius: 100px;
  padding: 6px 16px; letter-spacing: .02em;
}

/* ── Card body ── */
.guide-card-body {
  padding: 16px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.guide-card-title {
  font-size: .92rem; font-weight: 800; line-height: 1.3;
  color: var(--text);
}
.guide-card-desc {
  font-size: .78rem; color: var(--text-3); line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.guide-card-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding-top: 8px;
}
.guide-card-platforms { display: flex; gap: 6px; flex-wrap: wrap; }
.guide-card-platform {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .68rem; font-weight: 700;
  color: var(--text-3);
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 100px; padding: 3px 9px;
  transition: color .15s, border-color .15s;
}
.guide-card-platform:hover { color: var(--orange); border-color: rgba(255,107,0,.4); }
.guide-card-pdf-badge {
  font-size: .65rem; font-weight: 800; letter-spacing: .06em;
  color: var(--orange); border: 1.5px solid var(--orange);
  border-radius: 4px; padding: 2px 7px; flex-shrink: 0;
}

/* ── Guide Modal ── */
.guide-modal {
  position: fixed; inset: 0; z-index: 9000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(0,0,0,.88);
  opacity: 0; pointer-events: none;
  transition: opacity .2s var(--ease-out);
}
.guide-modal.open { opacity: 1; pointer-events: all; }

.guide-modal-wrap {
  width: calc(100% - 32px); max-width: 1100px;
  min-height: calc(100% - 32px);
  margin: 16px auto;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 20px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.guide-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px 0 20px;
  height: 48px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.guide-modal-header-title {
  font-size: .82rem; font-weight: 700; color: var(--text-3);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  padding-right: 12px;
}
.guide-modal-close {
  width: 30px; height: 30px; flex-shrink: 0;
  background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: 50%; color: var(--text-3);
  font-size: .85rem; cursor: pointer; transition: .15s;
  display: flex; align-items: center; justify-content: center;
}
.guide-modal-close:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* Modal two-column layout */
.guide-modal-body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

/* Left sidebar */
.gm-left {
  width: 260px;
  flex-shrink: 0;
  padding: 28px 22px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.gm-title {
  font-size: 1.05rem; font-weight: 900; line-height: 1.3;
  color: var(--text); padding-right: 24px;
}
.gm-desc {
  font-size: .82rem; color: var(--text-3); line-height: 1.6;
}
.gm-links { display: flex; flex-direction: column; gap: 8px; }
.gm-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700;
  color: var(--text-2);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 10px; padding: 9px 14px;
  transition: .15s;
}
.gm-link:hover { color: var(--orange); border-color: rgba(255,107,0,.4); }
.gm-link-pdf {
  color: var(--orange); border-color: rgba(255,107,0,.3);
  background: rgba(255,107,0,.06);
}
.gm-link-pdf:hover { background: rgba(255,107,0,.12); }
.gm-link-source {
  color: #b48cff; border-color: rgba(180,140,255,.3);
  background: rgba(180,140,255,.06);
}
.gm-link-source:hover { background: rgba(180,140,255,.12); color: #c5a3ff; }
.gm-tool-label {
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-3); margin-top: 8px; margin-bottom: 4px;
}
.gm-link-tool {
  color: #5588FF; border-color: rgba(85,136,255,.3);
  background: rgba(85,136,255,.06);
}
.gm-link-tool:hover { background: rgba(85,136,255,.12); }
.gm-cover {
  width: 100%; border-radius: 12px;
  object-fit: cover; aspect-ratio: 9/16;
  flex-shrink: 0;
}
.gm-no-pdf {
  display: flex; align-items: center; justify-content: center;
  flex: 1; color: var(--text-3); font-size: .9rem;
}

/* Right preview area */
.gm-right {
  flex: 1;
  min-width: 0; min-height: 0;
  display: flex; flex-direction: column;
  background: var(--surface-2);
}
.gm-pdf {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
}
/* Canva variant — overlay becomes flex so wrap stays centered in
   viewport regardless of scroll. Wrap sized to fit one A4 page exactly. */
.guide-modal.gm-canva {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.guide-modal-wrap.gw-canva {
  width: calc(76vh * 210 / 297 + 261px);
  height: calc(76vh + 48px);
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 64px);
  margin: 0;
  min-height: 0;
  flex: none;
}
.gm-right.gm-right-canva {
  background: #0a0a0a;
}
.gm-right.gm-right-canva .gm-pdf {
  background: #0a0a0a;
}

/* Responsive */
@media (max-width: 1100px) {
  .guides-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .guide-modal-wrap { margin: 8px auto; width: calc(100% - 16px); min-height: calc(100% - 16px); border-radius: 12px; }
  .guide-modal-body { flex-direction: column; overflow-y: auto; }
  .gm-left { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 16px; overflow-y: visible; max-height: none; flex-shrink: 0; }
  .gm-cover { display: none; }
  .gm-right { flex-shrink: 0; min-height: 50vh; }
}
@media (max-width: 500px) {
  .guides-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .guide-card-body { padding: 12px; }
  .guides-hero-section { padding: 60px 0 36px; }
}

/* ══════════════════════════════════════════════
   MARKETING UI — countdown, modals, UGC,
   trust chips, refund box, cart upsell
══════════════════════════════════════════════ */

/* Hero trust chips */
.hero-trust-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 24px;
}
.hero-trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-2);
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 7px 14px;
  backdrop-filter: blur(10px);
}
.hero-trust-chip-ico { color: var(--orange); font-weight: 800; }

/* ══════════════════════════════════════════════
   FREE STARTER KIT (homepage strip)
══════════════════════════════════════════════ */
.free-kit {
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, #0c0c0c 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.free-kit-head { text-align: center; max-width: 720px; margin: 0 auto 36px; }
.free-kit-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 14px;
}
.free-kit-title {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.15;
  margin-bottom: 12px;
}
.free-kit-sub {
  font-size: 0.95rem; color: var(--text-2); line-height: 1.65;
}
.free-kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.free-kit-card {
  position: relative;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 20px 20px;
  cursor: pointer;
  transition: transform .2s, border-color .2s, background .2s;
  display: flex; flex-direction: column; gap: 8px;
}
.free-kit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34,197,94,0.5);
  background: #151515;
}
.free-kit-card-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.08em;
  color: #22c55e;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px; padding: 3px 8px;
}
.free-kit-card-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 2px; }
.free-kit-card-name {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em;
  color: var(--text);
}
.free-kit-card-meta {
  font-size: 0.8rem; color: var(--text-3); line-height: 1.5;
  flex: 1;
}
.free-kit-card-cta {
  font-size: 0.82rem; font-weight: 700; color: var(--orange);
  margin-top: 6px;
}
.free-kit-foot {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px;
  font-size: 0.8rem; color: var(--text-3);
}
.free-kit-foot-item { font-weight: 600; }

@media (max-width: 900px) {
  .free-kit-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .free-kit-grid { grid-template-columns: 1fr; }
  .free-kit { padding: 48px 0 40px; }
  .free-kit-foot { gap: 12px; font-size: 0.75rem; }
}

/* Refund box on product page */
.refund-box {
  display: flex; align-items: flex-start; gap: 14px;
  margin-top: 16px; padding: 16px 18px;
  background: rgba(16,185,129,0.06);
  border: 1px solid rgba(16,185,129,0.22);
  border-radius: var(--radius-sm);
}
.refund-box-icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(16,185,129,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
}
.refund-box-body { flex: 1; min-width: 0; }
.refund-box-title {
  font-size: 0.88rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.refund-box-desc {
  font-size: 0.8rem; color: var(--text-2); line-height: 1.55;
}


/* ── Email capture + exit-intent modals (shared) */
.email-modal,
.exit-modal {
  position: fixed; inset: 0; z-index: 600;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.22s var(--ease-out);
}
.email-modal.on,
.exit-modal.on { opacity: 1; }

.email-modal-overlay,
.exit-modal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(8px);
}

.email-modal-box,
.exit-modal-box {
  position: relative;
  width: 100%; max-width: 460px;
  background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--radius);
  padding: 36px 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), var(--glass-inset);
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  transition: transform 0.3s var(--ease-out), opacity 0.25s var(--ease-out);
}
.email-modal.on .email-modal-box,
.exit-modal.on .exit-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.email-modal-close,
.exit-modal-close {
  position: absolute; top: 12px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  color: var(--text-2);
  font-size: 1.3rem; line-height: 1;
  transition: background var(--transition), color var(--transition);
}
.email-modal-close:hover,
.exit-modal-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.email-modal-eyebrow,
.exit-modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(255,107,0,0.32);
  border-radius: 100px;
  padding: 5px 12px;
  margin-bottom: 16px;
}

.email-modal-title,
.exit-modal-title {
  font-size: 1.45rem;
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.15;
  margin-bottom: 10px;
}
.email-modal-sub,
.exit-modal-sub {
  font-size: 0.92rem; color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.email-modal-sub strong,
.exit-modal-sub strong {
  color: var(--orange); font-weight: 800;
}

.email-modal-form {
  display: flex; flex-direction: column; gap: 10px;
}
.email-modal-input {
  width: 100%;
  padding: 13px 14px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border-hi);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.email-modal-input::placeholder { color: var(--text-3); }
.email-modal-input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,107,0,0.05);
}

.email-modal-trust,
.exit-modal-trust {
  margin-top: 14px;
  font-size: 0.72rem; color: var(--text-3);
  text-align: center; line-height: 1.5;
}

/* Exit-modal unique: big promo code block */
.exit-modal-code {
  margin: 18px 0 16px;
  padding: 14px;
  font-family: 'Courier New', monospace;
  font-size: 1.6rem; font-weight: 900;
  letter-spacing: 0.3em;
  color: var(--orange);
  text-align: center;
  background: rgba(255,107,0,0.08);
  border: 1px dashed rgba(255,107,0,0.4);
  border-radius: var(--radius-sm);
}

/* ── Cart upsell (injected by marketing.js) ─── */
.cart-upsell {
  margin: 14px 4px 4px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-2);
}
.cart-upsell-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.cart-upsell-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255,107,0,0.08) 0%, var(--surface) 100%);
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform .08s var(--ease-out), border-color .15s var(--ease-out), box-shadow .15s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.cart-upsell-card:hover {
  border-color: rgba(255,107,0,0.45);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  transform: translateY(-1px);
}
.cart-upsell-card:active {
  transform: translateY(2px) scale(.985);
  box-shadow: inset 0 2px 6px rgba(0,0,0,.35);
  transition-duration: .04s;
}
.cart-upsell-card:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
.cart-upsell-card img {
  width: 52px; height: 52px; border-radius: 10px;
  object-fit: cover; flex-shrink: 0;
  background: var(--surface-2);
}
.cart-upsell-icon {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  font-size: 1.4rem; flex-shrink: 0;
}
.cart-upsell-info { flex: 1; min-width: 0; }
.cart-upsell-name {
  font-size: 0.85rem; font-weight: 700; line-height: 1.25;
}
.cart-upsell-reason {
  font-size: 0.72rem; color: var(--text-2);
  line-height: 1.4; margin: 2px 0 4px;
}
.cart-upsell-price {
  font-size: 0.82rem; font-weight: 800; color: var(--orange);
}
.cart-upsell-price s {
  color: var(--text-3); font-weight: 500; margin-left: 4px;
}
.cart-upsell-add {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 0.78rem; font-weight: 700;
  color: #fff; background: var(--orange);
  border-radius: 100px;
  transition: background var(--transition), transform var(--transition);
}
.cart-upsell-add:hover {
  background: var(--orange-2);
  transform: translateY(-1px);
}

/* Mobile tweaks */
@media (max-width: 520px) {
  .email-modal-box,
  .exit-modal-box { padding: 28px 22px 22px; }
  .email-modal-title,
  .exit-modal-title { font-size: 1.25rem; }
  .exit-modal-code { font-size: 1.3rem; letter-spacing: 0.22em; }
  .hero-trust-row { gap: 6px; }
  .hero-trust-chip { font-size: 0.72rem; padding: 6px 11px; }
}

/* ── Bundle spotlight inner content wrapper ───── */
.bundle-spotlight-content { flex: 1; min-width: 0; position: relative; z-index: 1; }

/* ══════════════════════════════════════════════
   FAQ (home page)
══════════════════════════════════════════════ */
.faq-section { padding: 0 0 80px; }
.faq-list {
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}
.faq-item[open] {
  border-color: rgba(255,107,0,0.35);
  background: linear-gradient(180deg, rgba(255,107,0,0.04) 0%, var(--surface) 100%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 0.98rem; font-weight: 700;
  color: var(--text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 1.1rem; font-weight: 600;
  color: var(--orange);
  transition: transform 0.2s var(--ease-out), background var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--orange-dim); }
.faq-item summary:hover { color: var(--orange); }
.faq-body {
  padding: 0 22px 20px;
  font-size: 0.92rem; color: var(--text-2);
  line-height: 1.65;
}
.faq-body code {
  background: var(--surface-3);
  border: 1px solid var(--border-2);
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--orange);
}
.faq-body a { color: var(--orange); border-bottom: 1px dashed rgba(255,107,0,0.4); }
.faq-body a:hover { border-bottom-color: var(--orange); }
.faq-foot {
  max-width: 860px; margin: 32px auto 0;
  text-align: center;
  font-size: 0.88rem; color: var(--text-3);
  line-height: 1.6;
}
.faq-foot a { color: var(--orange); font-weight: 700; }
.faq-foot a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .faq-item summary { padding: 14px 16px; font-size: 0.92rem; }
  .faq-body { padding: 0 16px 16px; font-size: 0.88rem; }
}

/* ══════════════════════════════════════════════
   DESIGN POLISH v2 — Cinematic
   ───────────────────────────────────────────────
   Signature touches that position 360 MEDIA as an
   editor-first brand (not a generic creator store):
   • subtle film grain overlay
   • speed-ramp-inspired reveal (scale + ease-out)
   • section-title accent rule
   • card shine sweep on hover
   • button idle shimmer (CTA breathes without shouting)
   • hero accent halo
   Kept deliberately restrained. No extra colors.
══════════════════════════════════════════════ */

/* ── Spring-ish ease tokens ──────────────────── */
:root {
  --ease-cine: cubic-bezier(0.2, 0.9, 0.25, 1.1);   /* subtle overshoot */
  --ease-quick: cubic-bezier(0.16, 1, 0.3, 1);       /* ease-out expo */
}

/* ── 1. Film grain (whole-page texture, 3% opacity) ── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
}
@media (prefers-reduced-motion: reduce) {
  body::after { display: none; }
}

/* ── 2. Improved reveal: spring + subtle scale ── */
.reveal {
  transform: translateY(20px) scale(0.985);
  transition: opacity 0.7s var(--ease-quick),
              transform 0.7s var(--ease-quick);
}
.reveal.revealed {
  transform: translateY(0) scale(1);
}

/* Stagger direct children of a revealed container (up to 8) */
.reveal.revealed > * { animation: polishChildIn 0.6s var(--ease-quick) both; }
.reveal.revealed > *:nth-child(1) { animation-delay: 0.02s; }
.reveal.revealed > *:nth-child(2) { animation-delay: 0.08s; }
.reveal.revealed > *:nth-child(3) { animation-delay: 0.14s; }
.reveal.revealed > *:nth-child(4) { animation-delay: 0.20s; }
.reveal.revealed > *:nth-child(5) { animation-delay: 0.26s; }
.reveal.revealed > *:nth-child(6) { animation-delay: 0.32s; }
.reveal.revealed > *:nth-child(7) { animation-delay: 0.38s; }
.reveal.revealed > *:nth-child(8) { animation-delay: 0.44s; }
@keyframes polishChildIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
/* Opt-out: containers that manage their own entrance (hero, carousels) */
.hero.reveal.revealed > *,
.cslide-slide.reveal.revealed > *,
.reveal.no-stagger > * { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal.revealed > * { animation: none; }
}

/* ── 3. Section-title accent rule (left bar on headings) ── */
.section-title {
  position: relative;
  padding-left: 14px;
}
.section-title::before {
  content: '';
  position: absolute; left: 0; top: 0.25em; bottom: 0.2em;
  width: 3px; border-radius: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, #ff8c33 100%);
  box-shadow: 0 0 12px rgba(255,107,0,0.35);
}

/* ── 4. Card shine sweep on hover (cat-card + free-kit-card + product-card) ── */
.cat-card,
.free-kit-card,
.product-card {
  position: relative;
  overflow: hidden;
}
.cat-card::after,
.free-kit-card::after,
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(255,255,255,0.07) 45%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.07) 55%,
    transparent 100%
  );
  transform: skewX(-18deg);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cat-card:hover::after,
.free-kit-card:hover::after,
.product-card:hover::after {
  opacity: 1;
  animation: polishShine 0.9s var(--ease-quick) forwards;
}
@keyframes polishShine {
  0%   { left: -75%; }
  100% { left: 125%; }
}
@media (prefers-reduced-motion: reduce) {
  .cat-card::after,
  .free-kit-card::after,
  .product-card::after { display: none; }
}

/* ── 5. Primary CTA: idle breath + sharper press ── */
@keyframes polishCtaBreath {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,107,0,0.35), inset 0 1px 0 rgba(255,255,255,0.25); }
  50%      { box-shadow: 0 6px 28px rgba(255,107,0,0.55), inset 0 1px 0 rgba(255,255,255,0.3); }
}
.btn-primary {
  animation: polishCtaBreath 3.6s ease-in-out infinite;
}
.btn-primary:hover {
  animation: none;
  transform: translateY(-2px) scale(1.01);
}
.btn-primary:active {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary { animation: none; }
}

/* ── 6. Hero accent halo — gradient glow behind orange word ── */
.hero-title .accent {
  background: linear-gradient(180deg, #ffa258 0%, var(--orange) 55%, #e05900 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: 0 0 40px rgba(255,107,0,0.25);
  position: relative;
}
.hero-title .accent::after {
  content: '';
  position: absolute; left: -8%; right: -8%; top: 50%;
  height: 0.3em;
  background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(255,107,0,0.35) 0%, transparent 70%);
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
  filter: blur(18px);
}

/* ── 7. Lift: gentler spring curve ── */
.lift {
  transition: transform 0.35s var(--ease-cine),
              border-color 0.25s var(--ease-quick),
              box-shadow 0.35s var(--ease-quick);
}
.lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

/* ── 8. Category card icon: subtle scale+glow on hover ── */
.cat-card:hover .cat-card-icon {
  box-shadow: 0 0 24px rgba(255,107,0,0.22);
}

/* ── 9. Hero eyebrow: slight float ── */
@keyframes polishEyebrowFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}
.hero-eyebrow {
  animation: fadeInUp 0.5s var(--ease-quick) 0.05s both,
             polishEyebrowFloat 4s ease-in-out 1s infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow { animation: none; }
}

/* ── 10. Stats: tabular numerals, slight reveal glow ── */
.stat-num,
.free-kit-card-meta strong,
.hero-stats .stat-num {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* ── 11. Proof chips: subtle uppercase spacing ── */
.proof-chip {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.68rem;
}

/* ── 12. Focus polish (accessibility) ── */
.btn:focus-visible,
.cat-card:focus-visible,
.product-card:focus-visible,
.free-kit-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

/* ── VFX Extension Hero — Trial CTA ── */
.vfx-ext-cta {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  margin-top: 28px;
}
.vfx-ext-cta-row {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.vfx-ext-cta-note {
  font-size: .75rem; color: var(--text-3); letter-spacing: .02em;
}
.vfx-trial-strip-buttons {
  display: flex; gap: 8px; flex-shrink: 0;
}
@media (max-width: 760px) {
  .vfx-trial-strip-buttons { width: 100%; }
  .vfx-trial-strip-buttons .btn { flex: 1; }
}

/* ── 360 Tool Spotlight — availability indicator (replaces countdown) ── */
.tool-launch-availability {
  display: flex; align-items: center; gap: 8px;
  margin: 14px 0 16px;
  padding: 10px 14px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 8px;
  font-size: .82rem; color: var(--text-2);
}
.tool-launch-avail-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; box-shadow: 0 0 10px #22c55e;
  flex-shrink: 0;
  animation: vfxPulse 2s infinite;
}

/* ── VFX Trial Strip (homepage banner) ── */
.vfx-trial-strip {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 22px 28px; margin: 24px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, rgba(255,107,0,.10) 50%, #1a0d05 100%);
  border: 1.5px solid rgba(255,107,0,.3); border-radius: 18px;
  cursor: pointer;
  transition: border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.vfx-trial-strip:hover { border-color: var(--orange); transform: translateY(-2px); }
.vfx-trial-strip-left {
  display: flex; align-items: center; gap: 18px;
  flex: 1; min-width: 0;
}
.vfx-trial-strip-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em;
  color: var(--orange); background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4); border-radius: 100px;
  padding: 5px 12px; flex-shrink: 0;
}
.vfx-trial-strip-pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 8px var(--orange); animation: vfxPulse 1.6s infinite;
}
.vfx-trial-strip-copy {
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.vfx-trial-strip-copy strong {
  font-size: .98rem; font-weight: 700; color: var(--text-1); letter-spacing: -.01em;
}
.vfx-trial-strip-copy span {
  font-size: .8rem; color: var(--text-3); line-height: 1.4;
}
.vfx-trial-strip .btn { flex-shrink: 0; }

@media (max-width: 760px) {
  .vfx-trial-strip {
    flex-direction: column; align-items: stretch;
    gap: 16px; padding: 20px;
  }
  .vfx-trial-strip-left { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vfx-trial-strip .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════════════
   COURSE PLAYER  /learn/<courseId>
   Two-column shell: chapter sidebar (left) + video player + nav (right).
   Matches brand: dark + orange accent (#FF6B00), bold typography,
   subtle motion. All animations cap at 0.35s — never feel slow.
   ══════════════════════════════════════════════════════════════ */

.learn-page {
  min-height: calc(100vh - 80px);
  background: radial-gradient(ellipse at top, rgba(255,107,0,0.04) 0%, transparent 60%), #050505;
  color: var(--text-1);
}

/* ── Loading spinner ── */
.learn-loading {
  min-height: calc(100vh - 80px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; color: var(--text-3); font-size: 0.9rem;
}
.learn-loading-spinner {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,107,0,0.18);
  border-top-color: #FF6B00;
  border-radius: 50%;
  animation: learnSpin 0.8s linear infinite;
}
@keyframes learnSpin { to { transform: rotate(360deg); } }

/* ── Auth gate ── */
.learn-gate {
  min-height: calc(100vh - 80px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.learn-gate-inner {
  width: 100%; max-width: 440px;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,107,0,0.22);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(255,107,0,0.06);
  text-align: center;
}
.learn-gate-eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent, #FF6B00);
  padding: 6px 14px;
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 100px;
  margin-bottom: 16px;
}
.learn-gate-title {
  font-size: 1.6rem; font-weight: 800;
  line-height: 1.15; margin: 0 0 10px;
  color: #fff;
}
.learn-gate-sub {
  font-size: 0.92rem; color: var(--text-3); line-height: 1.5;
  margin: 0 0 26px;
}
.learn-gate-form {
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.learn-gate-input {
  width: 100%;
  padding: 13px 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-1); font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.learn-gate-input:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255,107,0,0.12);
}
.learn-gate-input-code {
  text-align: center; letter-spacing: 0.4em;
  font-size: 1.4rem; font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.learn-gate-status {
  font-size: 0.82rem; min-height: 18px; margin: 0; text-align: center;
  color: var(--red, #ef4444);
}
.learn-gate-back {
  margin-top: 6px; font-size: 0.82rem;
  color: var(--text-3); background: none; border: none; cursor: pointer;
}
.learn-gate-back:hover { color: var(--accent, #FF6B00); }

/* ── Player shell (two columns) ── */
.learn-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 28px 64px;
  min-height: calc(100vh - 80px);
}

/* ── Sidebar ── */
.learn-sidebar {
  position: sticky; top: 100px;
  align-self: start;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 22px 18px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 18px;
}
.learn-sidebar::-webkit-scrollbar { width: 4px; }
.learn-sidebar::-webkit-scrollbar-thumb { background: rgba(255,107,0,0.3); border-radius: 4px; }

.learn-sidebar-head {
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}
.learn-eyebrow {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.16em;
  color: var(--accent, #FF6B00);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.learn-course-title {
  font-size: 1.1rem; font-weight: 800; color: #fff;
  margin: 0; line-height: 1.25;
  padding-right: 70px;
}
.learn-signout {
  position: absolute; top: 0; right: 0;
  font-size: 0.72rem; color: var(--text-3);
  background: none; border: none; cursor: pointer;
  padding: 4px 0;
  transition: color 0.18s ease;
}
.learn-signout:hover { color: var(--accent, #FF6B00); }

.learn-chapters {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.learn-chapter {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  position: relative;
}
.learn-chapter:hover {
  background: rgba(255,107,0,0.06);
  border-color: rgba(255,107,0,0.2);
  transform: translateX(2px);
}
.learn-chapter.is-active {
  background: linear-gradient(135deg, rgba(255,107,0,0.12), rgba(255,107,0,0.04));
  border-color: rgba(255,107,0,0.5);
  box-shadow: 0 0 0 1px rgba(255,107,0,0.2) inset, 0 8px 24px rgba(255,107,0,0.08);
}
.learn-chapter.is-active .learn-chapter-name { color: #fff; }
.learn-chapter.is-active .learn-chapter-num {
  background: #FF6B00; color: #fff;
  box-shadow: 0 0 16px rgba(255,107,0,0.5);
}
.learn-chapter.is-done .learn-chapter-num {
  background: rgba(34,197,94,0.15); color: var(--green, #22c55e);
  border-color: rgba(34,197,94,0.4);
}
.learn-chapter.is-done .learn-chapter-num::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.95rem;
  background: var(--green, #22c55e); color: #fff;
  border-radius: inherit;
}
.learn-chapter-num {
  position: relative;
  width: 34px; height: 34px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 9px;
  font-size: 0.78rem; font-weight: 800;
  color: var(--text-2);
  font-variant-numeric: tabular-nums;
  transition: all 0.2s ease;
  overflow: hidden;
}
.learn-chapter-info { flex: 1; min-width: 0; }
.learn-chapter-name {
  font-size: 0.88rem; font-weight: 600;
  color: var(--text-1);
  line-height: 1.3;
  margin-bottom: 3px;
}
.learn-chapter-meta {
  font-size: 0.72rem; color: var(--text-3);
  font-variant-numeric: tabular-nums;
}
.learn-chapter-arrow {
  font-size: 0.85rem; color: rgba(255,107,0,0.3);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.learn-chapter:hover .learn-chapter-arrow,
.learn-chapter.is-active .learn-chapter-arrow {
  opacity: 1; transform: translateX(0);
  color: var(--accent, #FF6B00);
}

.learn-sidebar-foot {
  padding-top: 14px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}
.learn-sidebar-foot .btn-text {
  font-size: 0.82rem; color: var(--text-3);
  background: none; border: none; text-decoration: none;
  transition: color 0.18s ease;
}
.learn-sidebar-foot .btn-text:hover { color: var(--accent, #FF6B00); }

/* ── Main column ── */
.learn-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }

.learn-main-head {
  padding-bottom: 4px;
}
.learn-step {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em;
  color: var(--accent, #FF6B00);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.learn-chapter-title {
  font-size: 2rem; font-weight: 800;
  line-height: 1.15; margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.01em;
}
.learn-chapter-desc {
  font-size: 1rem; line-height: 1.55;
  color: var(--text-2);
  max-width: 720px;
  margin: 0;
}

/* ── Video ── */
.learn-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,107,0,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,107,0,0.05);
}
.learn-video {
  width: 100%; display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}
.learn-video::-webkit-media-controls-overlay-play-button { display: none; }

/* ── Nav row ── */
.learn-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}
.learn-nav-btn {
  font-size: 0.88rem;
  padding: 11px 18px;
  transition: transform 0.15s ease, background 0.18s ease;
}
.learn-nav-btn:hover:not(:disabled) { transform: translateY(-1px); }
.learn-nav-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.learn-autonext {
  font-size: 0.78rem; color: var(--text-3);
  flex: 1; text-align: center; min-width: 200px;
}
.learn-autonext strong { color: var(--green, #22c55e); }

/* ── Reveal animations — soft, generous timing ──
   cubic-bezier(0.16, 1, 0.3, 1) is a gentle "spring-out": the motion
   eases off slowly so it feels relaxed instead of snappy. Sidebar
   drifts in from the left, main-column blocks fade up with stagger. */
.learn-page .reveal {
  opacity: 0;
  transform: translateY(16px);
  will-change: opacity, transform;
  animation: learnFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.learn-page .learn-sidebar.reveal {
  transform: translateX(-18px);
  animation: learnSlideInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.06s;
}
@keyframes learnSlideInLeft { to { opacity: 1; transform: translateX(0); } }

.learn-page .learn-main-head.reveal  { animation-delay: 0.18s; }
.learn-page .learn-video-wrap.reveal { animation-delay: 0.30s; }
.learn-page .learn-nav.reveal        { animation-delay: 0.42s; }

@keyframes learnFadeUp { to { opacity: 1; transform: translateY(0); } }

/* Each chapter row cascades in (40 ms apart) so the sidebar
   fills with content rather than popping all at once. */
.learn-page .learn-chapter {
  opacity: 0;
  transform: translateY(8px);
  animation: learnFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.learn-page .learn-chapter:nth-child(1) { animation-delay: 0.20s; }
.learn-page .learn-chapter:nth-child(2) { animation-delay: 0.24s; }
.learn-page .learn-chapter:nth-child(3) { animation-delay: 0.28s; }
.learn-page .learn-chapter:nth-child(4) { animation-delay: 0.32s; }
.learn-page .learn-chapter:nth-child(5) { animation-delay: 0.36s; }
.learn-page .learn-chapter:nth-child(6) { animation-delay: 0.40s; }
.learn-page .learn-chapter:nth-child(7) { animation-delay: 0.44s; }
.learn-page .learn-chapter:nth-child(8) { animation-delay: 0.48s; }
.learn-page .learn-chapter:nth-child(n+9) { animation-delay: 0.52s; }

/* Auth gate scales in subtly — feels like a popover settling
   rather than a hard cut. */
.learn-page .learn-gate-inner.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  animation: learnGateIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes learnGateIn { to { opacity: 1; transform: translateY(0) scale(1); } }

/* Smooth chapter-text swap when user navigates between chapters. */
.learn-page .learn-chapter-title,
.learn-page .learn-chapter-desc,
.learn-page .learn-step {
  transition: color 0.3s ease, opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .learn-page .reveal,
  .learn-page .learn-chapter,
  .learn-page .learn-sidebar.reveal,
  .learn-page .learn-gate-inner.reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ── Responsive (tablet ≤ 980px: stack columns; mobile ≤ 600px: shrink type) ── */
@media (max-width: 980px) {
  .learn-shell { grid-template-columns: 1fr; padding: 20px 16px 48px; gap: 22px; }
  .learn-sidebar {
    position: static; max-height: none; order: 2;
  }
  .learn-main { order: 1; }
}
@media (max-width: 600px) {
  .learn-chapter-title { font-size: 1.5rem; }
  .learn-chapter-desc { font-size: 0.92rem; }
  .learn-gate-inner { padding: 28px 22px; }
  .learn-gate-title { font-size: 1.35rem; }
  .learn-nav { padding: 12px 14px; }
  .learn-nav-btn { font-size: 0.82rem; padding: 10px 14px; }
  .learn-autonext { display: none; }
}

/* ── 360 Tool launch offer — founder pricing progress bar ── */
.launch-bar {
  background: linear-gradient(135deg, #1a0d05 0%, #111 60%, #0a0a0a 100%);
  border: 1.5px solid rgba(255, 107, 0, 0.45);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0;
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.08);
}
.launch-bar-lg { padding: 22px 24px; margin: 22px 0; }
.launch-bar-sm { padding: 12px 14px; margin: 12px 0; }
.launch-bar-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #FF6B00;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.launch-bar-lg .launch-bar-eyebrow { font-size: 0.82rem; }
.launch-bar-old {
  color: #737373;
  font-weight: 600;
  font-size: 0.85em;
  text-decoration: line-through;
  letter-spacing: 0;
}
.launch-bar-track {
  background: #0a0a0a;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
  margin: 8px 0 10px;
}
.launch-bar-lg .launch-bar-track { height: 14px; }
.launch-bar-fill {
  background: linear-gradient(90deg, #FF6B00 0%, #e85d00 100%);
  height: 100%;
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 16px rgba(255, 107, 0, 0.45);
}
.launch-bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: #d4d4d4;
  font-size: 0.82rem;
  line-height: 1.4;
  flex-wrap: wrap;
}
.launch-bar-meta strong { color: #fff; }
.launch-bar-remain {
  color: #FF6B00;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: rgba(255, 107, 0, 0.1);
  padding: 3px 9px;
  border-radius: 999px;
}
.launch-bar-foot {
  margin-top: 8px;
  font-size: 0.72rem;
  color: #737373;
  line-height: 1.4;
}
.launch-bar-sold {
  border-color: #1a1a1a;
  background: #0a0a0a;
}
.launch-bar-sold .launch-bar-eyebrow { color: #737373; }

/* Inline founder badge on price row (product page + cart) */
.founder-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.founder-price-now {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.founder-price-old {
  color: #737373;
  text-decoration: line-through;
  font-size: 1.05rem;
  font-weight: 600;
}
.founder-price-badge {
  background: linear-gradient(135deg, #FF6B00 0%, #e85d00 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

/* Founder # badge on success / my orders */
.founder-badge {
  margin: 0 0 12px;
  padding: 10px 14px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 8px;
  text-align: center;
  font-size: 0.8rem;
  color: #d4d4d4;
}
.founder-badge strong { color: #FF6B00; font-weight: 800; letter-spacing: 0.05em; }

/* ── Launch bar — mobile (≤640px) ── */
@media (max-width: 640px) {
  .launch-bar { padding: 14px 14px; margin: 14px 0; border-radius: 10px; }
  .launch-bar-lg { padding: 16px 16px; margin: 16px 0; }
  .launch-bar-eyebrow {
    font-size: 0.68rem;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .launch-bar-lg .launch-bar-eyebrow { font-size: 0.72rem; }
  .launch-bar-old { font-size: 0.92em; }
  .launch-bar-track { height: 8px; margin: 8px 0; }
  .launch-bar-lg .launch-bar-track { height: 10px; }
  .launch-bar-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.78rem;
  }
  .launch-bar-meta strong { display: inline; }
  .launch-bar-remain {
    align-self: flex-start;
    font-size: 0.7rem;
    padding: 2px 8px;
  }
  .launch-bar-foot { font-size: 0.68rem; line-height: 1.35; margin-top: 6px; }
}

/* On very narrow screens (≤380px) trim further */
@media (max-width: 380px) {
  .launch-bar-eyebrow { font-size: 0.64rem; }
  .launch-bar-meta { font-size: 0.74rem; }
}

/* 360 Tool walkthrough section — sits between hero (with launch bar) and features.
   Generous top padding visually separates it from the founder pricing CTA. */
.tool-video-section {
  padding: 56px 0 32px;
  position: relative;
}
@media (max-width: 768px) {
  .tool-video-section { padding: 36px 0 20px; }
}

/* Cart crypto fallback button — secondary visual weight under "Pay Now". */
.cart-crypto-btn {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 11px 14px;
  border: 1px solid #2a2a2a;
  color: #d4d4d4;
  background: #0f0f0f;
}
.cart-crypto-btn:hover:not(:disabled) {
  border-color: #FF6B00;
  color: #fff;
  background: #141414;
}
.cart-crypto-btn svg { opacity: 0.85; }
