:root {
  --ink: #f7f0e4;
  --muted: #b4aa9d;
  --muted-2: #766e64;
  --bg: #0b0a09;
  --panel: #151210;
  --panel-2: #211c17;
  --line: rgba(247, 240, 228, .11);
  --line-strong: rgba(224, 190, 126, .32);
  --lime: #d9b778;
  --lime-dark: #a9864d;
  --cyan: #d7c6a3;
  --orange: #b86f4d;
  --danger: #e88c86;
  --shadow: 0 24px 80px rgba(0, 0, 0, .32);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 4%, rgba(215, 243, 106, .08), transparent 27%), radial-gradient(circle at 91% 24%, rgba(120, 232, 223, .07), transparent 25%);
  z-index: -1;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.site-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  background: var(--bg);
  color: var(--muted);
  z-index: 100;
  transition: opacity .4s ease, visibility .4s ease;
}
.site-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-mark, .brand-symbol {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #11150a;
  background: var(--lime);
  border-radius: 12px 12px 12px 4px;
  font-weight: 900;
  letter-spacing: -.08em;
  box-shadow: 0 0 35px rgba(215, 243, 106, .18);
}
.loader-mark { margin-inline: auto; animation: breathe 1.3s ease-in-out infinite; }
@keyframes breathe { 50% { transform: translateY(-5px) rotate(4deg); } }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 10, 15, .78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(8, 10, 15, .92); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: max-content; }
.brand-symbol { width: 34px; height: 34px; border-radius: 11px 11px 11px 4px; font-size: 18px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: 13px; letter-spacing: .16em; }
.brand-copy small { margin-top: 4px; color: var(--muted-2); font-size: 8px; letter-spacing: .06em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.desktop-nav a, .mobile-nav a { color: var(--muted); font-size: 13px; transition: color .2s ease; }
.desktop-nav a:hover, .desktop-nav a.is-active, .mobile-nav a:hover, .mobile-nav a.is-active { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-button, .menu-toggle { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: rgba(255,255,255,.035); font-size: 21px; line-height: 1; }
.icon-button:hover, .menu-toggle:hover { border-color: var(--line-strong); background: rgba(255,255,255,.08); }
.menu-toggle { display: none; font-size: 18px; }
.header-cta { display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px; border: 1px solid rgba(215,243,106,.45); border-radius: 999px; color: #161b0a; background: var(--lime); font-size: 12px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(215,243,106,.16); }
.mobile-nav { display: none; padding: 8px 20px 20px; border-top: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 10px 0; }

main { min-height: 600px; }
.hero { position: relative; min-height: min(860px, calc(100svh - 76px)); display: grid; align-items: center; padding: 82px 0 64px; overflow: hidden; isolation: isolate; }
.hero-backdrop { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #0d0b0a; }
.cinema-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .72; filter: saturate(.9) contrast(1.08); transform: scale(1.04); animation: videoPush 19s ease-in-out infinite alternate; }
.hero-backdrop::before { content: ""; position: absolute; inset: 0; z-index: 4; background: linear-gradient(90deg, rgba(11,10,9,.84) 0%, rgba(11,10,9,.52) 39%, rgba(11,10,9,.16) 72%, rgba(11,10,9,.57) 100%), linear-gradient(180deg, rgba(11,10,9,.08), rgba(11,10,9,.75) 96%); }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; z-index: 5; background: radial-gradient(ellipse at 50% 45%, transparent 22%, rgba(6,5,5,.26) 76%, rgba(6,5,5,.7) 100%); pointer-events: none; }
.film-scene { position: absolute; inset: -8%; opacity: .26; transform: scale(1.08); filter: saturate(.76) contrast(1.08); background-color: #211a15; background-size: cover; background-position: center; animation: sceneDrift 22s ease-in-out infinite alternate; }
.film-scene::before { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(255,220,163,.28), transparent 34%, rgba(9,7,6,.15) 57%, rgba(15,11,10,.66)); mix-blend-mode: screen; }
.film-scene::after { content: ""; position: absolute; width: 42vw; height: 42vw; left: 52%; top: 2%; border-radius: 50%; background: rgba(229,183,111,.2); filter: blur(85px); transform: translateX(-50%); }
.scene-one { background-image: linear-gradient(112deg, rgba(125,62,35,.96) 0%, rgba(49,29,21,.68) 31%, rgba(211,151,82,.5) 55%, rgba(17,11,10,.66) 100%), radial-gradient(ellipse at 77% 35%, #e7c47f 0 4%, transparent 5% 20%), linear-gradient(168deg, #6b3827, #17100e 60%); animation-delay: -2s; opacity: .44; }
.scene-two { background-image: linear-gradient(105deg, rgba(21,27,38,.64), rgba(138,91,49,.45) 52%, rgba(9,8,7,.72)), radial-gradient(ellipse at 30% 60%, rgba(232,201,145,.8) 0 3%, transparent 4% 16%), linear-gradient(25deg, #1b222d, #93633d 52%, #10100f); animation-delay: -10s; animation-duration: 26s; opacity: .23; }
.scene-three { background-image: linear-gradient(115deg, rgba(45,22,25,.7), rgba(167,82,49,.44) 44%, rgba(8,8,8,.76)), radial-gradient(ellipse at 81% 30%, rgba(244,203,131,.78) 0 2%, transparent 3% 13%), linear-gradient(145deg, #512a28, #100f12 62%, #080808); animation-delay: -17s; animation-duration: 30s; opacity: .18; }
.film-scene > span { position: absolute; left: 12%; bottom: 20%; color: rgba(247,240,228,.34); font-size: clamp(10px, 1.15vw, 16px); font-weight: 800; letter-spacing: .38em; text-transform: uppercase; transform: rotate(-90deg); transform-origin: left bottom; }
.projector-beam { position: absolute; z-index: 2; width: 78vw; height: 62vw; top: -17%; left: 38%; background: linear-gradient(116deg, rgba(255,224,166,.18), rgba(255,224,166,.02) 34%, transparent 58%); clip-path: polygon(0 0, 100% 0, 68% 100%, 21% 100%); filter: blur(4px); transform-origin: 16% 0; animation: beamPulse 8s ease-in-out infinite; mix-blend-mode: screen; }
.screen-reflection { position: absolute; z-index: 3; border: 1px solid rgba(247,240,228,.13); border-radius: 50%; transform: rotate(-21deg); filter: blur(.2px); opacity: .7; }
.reflection-one { width: 65vw; height: 25vw; right: -14%; top: 17%; box-shadow: inset 0 0 45px rgba(232,196,129,.07), 0 0 70px rgba(232,196,129,.06); animation: reflectionMove 13s ease-in-out infinite; }
.reflection-two { width: 43vw; height: 15vw; left: -13%; bottom: 10%; opacity: .36; animation: reflectionMove 17s -6s ease-in-out infinite reverse; }
.film-grain { position: absolute; inset: -50%; z-index: 6; opacity: .09; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E"); animation: grainShift .3s steps(2) infinite; pointer-events: none; }
@keyframes videoPush { from { transform: scale(1.04) translate3d(-.5%, -.3%, 0); } to { transform: scale(1.1) translate3d(1%, .6%, 0); } }
@keyframes sceneDrift { from { transform: scale(1.08) translate3d(-1%, -1%, 0); } to { transform: scale(1.17) translate3d(2%, 1%, 0); } }
@keyframes beamPulse { 0%, 100% { opacity: .45; transform: rotate(-2deg) scale(1); } 50% { opacity: .8; transform: rotate(2deg) scale(1.04); } }
@keyframes reflectionMove { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-21deg); } 50% { transform: translate3d(3%, -10px, 0) rotate(-17deg); } }
@keyframes grainShift { 0% { transform: translate3d(0, 0, 0); } 25% { transform: translate3d(3%, -2%, 0); } 50% { transform: translate3d(-2%, 3%, 0); } 75% { transform: translate3d(2%, 2%, 0); } 100% { transform: translate3d(-3%, -2%, 0); } }
.hero-grid { position: relative; z-index: 7; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--lime); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { letter-spacing: -.055em; line-height: 1.02; }
h1 { max-width: 700px; margin: 20px 0; font-size: clamp(46px, 7.2vw, 88px); font-weight: 650; }
h1 em { color: var(--lime); font-style: normal; }
.lede { max-width: 560px; margin-bottom: 28px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 18px; border: 1px solid transparent; border-radius: 13px; font-size: 13px; font-weight: 800; transition: transform .22s var(--ease), background .22s ease, border-color .22s ease, color .22s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #151b08; background: var(--lime); }
.button-primary:hover { background: #e4fb82; box-shadow: 0 12px 28px rgba(215,243,106,.14); }
.button-ghost { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,.03); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.button-small { min-height: 36px; padding: 0 12px; border-radius: 10px; font-size: 11px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 25px; margin-top: 46px; }
.hero-stat strong { display: block; font-size: 24px; letter-spacing: -.04em; }
.hero-stat span { color: var(--muted-2); font-size: 11px; }
.hero-art { position: relative; min-height: 480px; }
.art-glow { position: absolute; width: 360px; height: 360px; top: 56px; right: 5%; border-radius: 50%; background: rgba(215,243,106,.14); filter: blur(55px); }
.art-orbit { position: absolute; inset: 25px 4% 28px 12%; border: 1px solid rgba(217,183,120,.28); border-radius: 46% 54% 62% 38%; transform: rotate(-13deg); animation: orbitDrift 14s ease-in-out infinite; }
.art-orbit::before, .art-orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(215,243,106,.1), 0 0 35px var(--lime); }
.art-orbit::before { top: 15%; left: 10%; }
.art-orbit::after { right: 9%; bottom: 16%; background: var(--cyan); box-shadow: 0 0 0 7px rgba(120,232,223,.1), 0 0 35px var(--cyan); }
.hero-stack { position: absolute; inset: 35px 0 0; display: grid; place-items: center; }
.hero-reel { position: absolute; right: -9%; bottom: 7%; z-index: 2; display: flex; gap: 9px; width: 112%; overflow: hidden; padding: 10px 0; transform: rotate(-7deg); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.hero-reel span { flex: 0 0 auto; padding: 8px 13px; border: 1px solid rgba(247,240,228,.22); border-radius: 999px; color: rgba(247,240,228,.78); background: rgba(18,14,11,.65); font-size: 9px; font-weight: 800; letter-spacing: .12em; backdrop-filter: blur(10px); animation: reelSlide 16s linear infinite; }
.hero-reel span:nth-child(2) { animation-delay: -4s; }
.hero-reel span:nth-child(3) { animation-delay: -8s; }
.hero-reel span:nth-child(4) { animation-delay: -12s; }
.hero-reel span:nth-child(5) { animation-delay: -15s; }
@keyframes reelSlide { from { transform: translateX(90px); opacity: .35; } 50% { opacity: 1; } to { transform: translateX(-120px); opacity: .35; } }
.hero-poster { width: min(300px, 70%); aspect-ratio: 4/5; padding: 20px; border: 1px solid rgba(247,240,228,.22); border-radius: 24px; background: linear-gradient(145deg, rgba(255,245,224,.15), rgba(255,255,255,.025)), linear-gradient(145deg, #34271d, #7b5c37 48%, #12100e); box-shadow: 25px 35px 70px rgba(0,0,0,.5); transform: rotate(7deg); animation: posterFloat 7s ease-in-out infinite; }
.poster-top { display: flex; justify-content: space-between; color: rgba(255,255,255,.68); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.poster-center { display: grid; place-items: center; height: 72%; text-align: center; }
.poster-center .poster-letter { color: var(--lime); font-size: 110px; font-weight: 900; line-height: .8; letter-spacing: -.15em; text-shadow: 0 0 45px rgba(215,243,106,.28); }
.poster-center span { margin-top: 16px; color: rgba(255,255,255,.72); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.poster-foot { display: flex; align-items: end; justify-content: space-between; color: rgba(255,255,255,.6); font-size: 9px; }
.floating-note { position: absolute; display: grid; gap: 5px; padding: 13px 15px; border: 1px solid var(--line-strong); border-radius: 15px; background: rgba(18,22,30,.8); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.floating-note strong { font-size: 16px; }
.floating-note span { color: var(--muted); font-size: 10px; }
.note-one { top: 22%; left: 0; animation: float 5s ease-in-out infinite; }
.note-two { right: 0; bottom: 16%; animation: float 5s 1.2s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(-9px); } }
@keyframes posterFloat { 0%, 100% { transform: translate3d(0, 0, 0) rotate(7deg); } 50% { transform: translate3d(0, -12px, 0) rotate(4deg); } }
@keyframes orbitDrift { 0%, 100% { transform: rotate(-13deg) scale(1); } 50% { transform: rotate(-7deg) scale(1.035); } }

.section { padding: 74px 0; }
.section-tight { padding-top: 34px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 28px; }
.section-heading h2 { max-width: 550px; margin: 9px 0 0; font-size: clamp(31px, 4vw, 49px); font-weight: 630; }
.section-heading p { max-width: 380px; margin: 0; color: var(--muted); font-size: 14px; }
.text-link { color: var(--lime); font-size: 13px; font-weight: 800; white-space: nowrap; }
.text-link:hover { text-decoration: underline; }
.category-rail { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.category-tile { position: relative; min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); transition: transform .25s var(--ease), border-color .25s ease, background .25s ease; }
.category-tile::after { content: ""; position: absolute; width: 85px; height: 85px; right: -25px; bottom: -35px; border-radius: 50%; background: var(--category-color, var(--lime)); opacity: .18; filter: blur(16px); }
.category-tile:hover { transform: translateY(-5px); border-color: rgba(215,243,106,.42); background: rgba(255,255,255,.09); }
.category-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: var(--category-color, var(--lime)); background: rgba(255,255,255,.07); font-size: 15px; font-weight: 900; }
.category-tile strong { font-size: 13px; }
.category-tile span { color: var(--muted-2); font-size: 10px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.product-card { position: relative; display: flex; flex-direction: column; min-width: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); border-color: var(--line-strong); box-shadow: 0 24px 45px rgba(0,0,0,.22); }
.product-image-wrap { position: relative; aspect-ratio: 1.15; overflow: hidden; background: var(--panel-2); }
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product-card:hover .product-image-wrap img { transform: scale(1.06); }
.product-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(8,7,6,.82)); pointer-events: none; }
.product-mark { position: absolute; left: 18px; bottom: 16px; z-index: 1; display: grid; place-items: center; min-width: 48px; height: 48px; padding: 0 9px; border: 1px solid rgba(247,240,228,.48); border-radius: 14px 14px 14px 4px; color: var(--ink); background: linear-gradient(145deg, rgba(255,244,220,.26), rgba(18,14,11,.58)); box-shadow: 0 10px 28px rgba(0,0,0,.28), inset 0 1px rgba(255,255,255,.16); font-size: 13px; font-weight: 850; letter-spacing: -.06em; backdrop-filter: blur(13px); transition: transform .35s var(--ease), color .35s ease, border-color .35s ease; }
.product-card:hover .product-mark { color: #1a130a; border-color: var(--lime); background: var(--lime); transform: translateY(-4px) rotate(-4deg); }
.product-card { animation: cardIn .7s var(--ease) both; }
.product-card:nth-child(2) { animation-delay: .06s; }
.product-card:nth-child(3) { animation-delay: .12s; }
.product-card:nth-child(4) { animation-delay: .18s; }
@keyframes cardIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.availability { position: absolute; top: 12px; left: 12px; z-index: 1; display: inline-flex; align-items: center; gap: 6px; padding: 6px 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #d8f6b0; background: rgba(10,14,12,.7); font-size: 9px; font-weight: 800; letter-spacing: .04em; backdrop-filter: blur(10px); }
.availability::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(215,243,106,.13); }
.availability.is-unavailable { color: var(--danger); }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 17px; }
.product-category { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.product-body h3 { margin: 7px 0 6px; font-size: 18px; letter-spacing: -.035em; }
.product-description { min-height: 43px; margin-bottom: 16px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.product-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 17px; }
.meta-chip { padding: 5px 8px; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); font-size: 10px; }
.product-bottom { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: auto; }
.price { display: grid; line-height: 1.1; }
.price strong { font-size: 21px; letter-spacing: -.045em; }
.price span { margin-top: 4px; color: var(--muted-2); font-size: 9px; }
.card-actions { display: flex; gap: 6px; }
.card-actions .button { min-height: 32px; padding: 0 9px; font-size: 10px; }
.product-card.is-unavailable { opacity: .72; }
.product-card.is-unavailable .product-image-wrap img { filter: grayscale(.6); }

.featured-band { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: linear-gradient(110deg, rgba(215,243,106,.11), rgba(120,232,223,.05) 55%, rgba(255,255,255,.03)); }
.featured-band .section-heading { margin-bottom: 24px; }
.pricing-section { position: relative; overflow: hidden; }
.pricing-section::before { content: ""; position: absolute; width: 520px; height: 260px; top: 80px; left: 50%; border-radius: 50%; background: rgba(217,183,120,.08); filter: blur(80px); transform: translateX(-50%); pointer-events: none; }
.pricing-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.pricing-card { position: relative; display: flex; flex-direction: column; min-height: 360px; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(160deg, rgba(255,255,255,.08), rgba(255,255,255,.025) 62%, rgba(217,183,120,.06)); box-shadow: 0 18px 55px rgba(0,0,0,.16); transition: transform .3s var(--ease), border-color .3s ease, box-shadow .3s ease; }
.pricing-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -68px; bottom: -68px; border: 1px solid rgba(217,183,120,.2); border-radius: 50%; box-shadow: 0 0 0 18px rgba(217,183,120,.035), 0 0 0 36px rgba(217,183,120,.025); pointer-events: none; }
.pricing-card:hover { transform: translateY(-8px); border-color: rgba(217,183,120,.48); box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.pricing-card.is-featured { border-color: rgba(217,183,120,.62); background: linear-gradient(160deg, rgba(217,183,120,.2), rgba(255,255,255,.045) 55%, rgba(37,27,17,.84)); transform: translateY(-10px); }
.pricing-card.is-featured:hover { transform: translateY(-16px); }
.pricing-ribbon { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border: 1px solid rgba(217,183,120,.4); border-radius: 999px; color: #21170d; background: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.pricing-topline { display: flex; justify-content: space-between; gap: 12px; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pricing-title { display: flex; align-items: center; gap: 13px; margin-top: 35px; }
.pricing-mark { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 8px; border: 1px solid rgba(217,183,120,.4); border-radius: 13px 13px 13px 4px; color: var(--lime); background: rgba(217,183,120,.08); font-size: 12px; font-weight: 900; letter-spacing: -.05em; }
.pricing-title h3 { margin: 0; font-size: 21px; letter-spacing: -.04em; }
.pricing-title p { margin: 3px 0 0; color: var(--muted); font-size: 11px; }
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin: 25px 0 21px; }
.pricing-price strong { color: var(--ink); font-size: 35px; letter-spacing: -.065em; }
.pricing-price span { color: var(--muted-2); font-size: 10px; }
.pricing-card ul { display: grid; gap: 9px; margin: 0 0 25px; padding: 0; list-style: none; }
.pricing-card li { display: flex; align-items: start; gap: 8px; color: var(--muted); font-size: 11px; }
.pricing-card li span { color: var(--lime); font-weight: 900; }
.pricing-button { width: 100%; margin-top: auto; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--line); }
.why-item { min-height: 185px; padding: 25px; background: var(--panel); }
.why-number { color: var(--lime); font-size: 12px; font-weight: 800; }
.why-item h3 { margin: 29px 0 8px; font-size: 17px; }
.why-item p { margin: 0; color: var(--muted); font-size: 12px; }

.faq-list { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; list-style: none; cursor: pointer; font-size: 15px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--lime); font-size: 22px; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 710px; margin: 0 38px 22px 0; color: var(--muted); font-size: 13px; }

.page-intro { padding: 70px 0 35px; }
.page-intro h1 { max-width: 800px; margin: 14px 0 12px; font-size: clamp(42px, 6vw, 72px); }
.page-intro p { max-width: 600px; margin: 0; color: var(--muted); }
.filter-panel { display: grid; grid-template-columns: minmax(230px, 1fr) 190px 180px 170px; gap: 10px; margin-bottom: 27px; padding: 12px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: rgba(255,255,255,.03); }
.search-field { position: relative; }
.search-field span { position: absolute; left: 13px; top: 50%; color: var(--muted-2); transform: translateY(-50%); }
input, select, textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: 0; color: var(--ink); background: #11141b; }
input, select { min-height: 42px; padding: 0 12px; font-size: 12px; }
.search-field input { padding-left: 34px; }
input:focus, select:focus, textarea:focus { border-color: rgba(215,243,106,.55); box-shadow: 0 0 0 3px rgba(215,243,106,.08); }
.results-line { display: flex; justify-content: space-between; margin-bottom: 16px; color: var(--muted-2); font-size: 11px; }
.empty-state { padding: 60px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius-lg); text-align: center; }
.empty-state h3 { margin-bottom: 7px; }
.empty-state p { margin-bottom: 18px; color: var(--muted); font-size: 13px; }

.product-detail { padding: 66px 0 90px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; color: var(--muted-2); font-size: 11px; }
.breadcrumbs a:hover { color: var(--ink); }
.detail-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 55px; align-items: start; }
.detail-visual { position: sticky; top: 105px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--panel); }
.detail-visual img { width: 100%; aspect-ratio: 1/1.02; object-fit: cover; }
.detail-visual-label { padding: 14px 17px; color: var(--muted-2); font-size: 10px; }
.detail-copy h1 { max-width: 580px; margin: 12px 0 15px; font-size: clamp(42px, 6vw, 76px); }
.detail-copy .lede { margin-bottom: 22px; font-size: 15px; }
.detail-price-row { display: flex; align-items: end; gap: 14px; margin: 23px 0; }
.detail-price-row .price strong { font-size: 34px; }
.detail-plan { color: var(--muted); font-size: 12px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.detail-actions .button { min-height: 48px; }
.detail-block { padding: 20px 0; border-top: 1px solid var(--line); }
.detail-block h2 { margin-bottom: 13px; font-size: 17px; letter-spacing: -.02em; }
.detail-block p, .detail-block li { color: var(--muted); font-size: 13px; }
.detail-block ul { margin: 0; padding-left: 18px; }
.detail-block li + li { margin-top: 7px; }
.related { margin-top: 70px; }

.support-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 55px; align-items: start; }
.support-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); }
.support-card h2 { margin-bottom: 10px; font-size: 28px; }
.support-card p { color: var(--muted); font-size: 13px; }
.contact-options { display: grid; gap: 10px; margin-top: 28px; }
.contact-option { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.03); }
.contact-option strong { display: block; font-size: 13px; }
.contact-option span { color: var(--muted-2); font-size: 10px; }
.form-stack { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-stack label { display: grid; gap: 6px; color: var(--muted); font-size: 11px; }
textarea { min-height: 130px; padding: 12px; resize: vertical; }

.site-footer { margin-top: 50px; padding: 60px 0 22px; border-top: 1px solid var(--line); background: rgba(255,255,255,.02); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1fr; gap: 45px; }
.footer-brand p, .footer-contact p { max-width: 290px; margin-top: 18px; color: var(--muted); font-size: 12px; }
.site-footer h3 { margin: 2px 0 16px; color: var(--muted-2); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.site-footer > * a:not(.brand) { display: block; margin: 10px 0; color: var(--muted); font-size: 12px; }
.site-footer > * a:not(.brand):hover { color: var(--ink); }
.footer-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 10px; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 20; width: 42px; height: 42px; border: 1px solid var(--line-strong); border-radius: 13px; color: var(--ink); background: rgba(18,22,30,.8); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, visibility .2s ease, transform .2s ease; backdrop-filter: blur(12px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 60; max-width: min(430px, calc(100% - 32px)); padding: 12px 16px; border: 1px solid var(--line-strong); border-radius: 12px; color: var(--ink); background: #191e28; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translate(-50%, 12px); transition: .25s var(--ease); font-size: 12px; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (max-width: 980px) {
  .desktop-nav { gap: 17px; }
  .hero-grid, .detail-grid, .support-grid { gap: 34px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .category-rail { grid-template-columns: repeat(3, 1fr); }
  .filter-panel { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.is-open { display: block; }
  .hero { min-height: 780px; align-items: start; padding-top: 48px; }
  .hero-backdrop::before { background: linear-gradient(180deg, rgba(11,10,9,.58), rgba(11,10,9,.78) 42%, rgba(11,10,9,.97) 88%); }
  .cinema-video { opacity: .5; }
  .film-scene { inset: -14%; opacity: .28; }
  .projector-beam { left: 20%; width: 120vw; height: 100vw; }
  .hero-grid, .detail-grid, .support-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 390px; order: -1; }
  .hero-poster { width: 230px; }
  .hero-reel { right: -22%; width: 132%; bottom: 2%; }
  .poster-center .poster-letter { font-size: 82px; }
  .note-one { left: 2%; }
  .note-two { right: 2%; }
  .section { padding: 52px 0; }
  .section-heading { display: block; }
  .section-heading p { margin-top: 12px; }
  .section-heading .text-link { display: inline-block; margin-top: 15px; }
  .category-rail { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-body { padding: 13px; }
  .product-body h3 { font-size: 15px; }
  .product-description { min-height: auto; font-size: 11px; }
  .product-bottom { display: block; }
  .price { margin-bottom: 12px; }
  .card-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .card-actions .button { padding: 0 5px; }
  .featured-band { padding: 19px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-card, .pricing-card.is-featured { min-height: 0; transform: none; }
  .pricing-card.is-featured:hover, .pricing-card:hover { transform: translateY(-4px); }
  .why-grid { grid-template-columns: 1fr; }
  .why-item { min-height: auto; }
  .why-item h3 { margin-top: 16px; }
  .page-intro { padding-top: 49px; }
  .filter-panel { grid-template-columns: 1fr; }
  .detail-visual { position: static; }
  .detail-copy h1 { font-size: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-brand, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 7px; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-image-wrap { aspect-ratio: 1.55; }
  .hero-stats { gap: 17px; }
}
