/* ==========================================================================
   NixiCam.com — Cyber-Editorial Vision Studio Design System
   Aesthetic: High-Fashion Avant-Garde Tech • Leica Optics • Holographic Obsidian
   ========================================================================== */

/* Fonts are loaded once, from the <link> in index.html's <head> (with
   preconnect) — not repeated here as an @import, which would block this
   stylesheet's own parsing until a second font fetch round-trip completes. */

:root {
  --bg: #07070a;
  --bg-subtle: #0d0c13;
  --panel: rgba(18, 17, 26, 0.7);
  --panel-solid: #13121c;
  --panel-border: rgba(255, 255, 255, 0.1);
  --panel-border-bright: rgba(255, 255, 255, 0.25);
  
  --text-main: #f5f2fa;
  --text-muted: #8e88a0;
  --text-dim: #5c566e;
  
  --accent-pink: #ff2a85;
  --accent-sakura: #ff75b5;
  --accent-cyan: #00f2fe;
  --accent-violet: #8e52ff;
  --accent-gold: #ffb84d;
  
  --holo-gradient: linear-gradient(135deg, #ff2a85 0%, #ff75b5 25%, #00f2fe 70%, #8e52ff 100%);
  --metal-gradient: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.02) 100%);
  
  --font-display: 'Exo 2', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  --radius-sm: 4px;
  --radius-btn: 10px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-card: 28px;
  
  --transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  background: 
    radial-gradient(circle at 10% 20%, rgba(255, 42, 133, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(142, 82, 255, 0.08) 0%, transparent 50%),
    #07070a;
  position: relative;
}

/* Subtle Architectural Grid Lines in Background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* Typography Elements */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.08;
}

.gradient-holo {
  background: var(--holo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 7, 10, 0.75);
  border-bottom: 1px solid var(--panel-border);
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
}

.logo-aperture {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-pink);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(255, 42, 133, 0.4);
}

.logo-aperture::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 8px #fff;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 42, 133, 0.15);
  color: var(--accent-sakura);
  border: 1px solid rgba(255, 42, 133, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

/* ==========================================================================
   Unified Button System
   Every call-to-action on the site — nav install, hero primary/secondary,
   pricing checkouts, final banner — shares this one base plus a color
   modifier and (when needed) a size modifier, so padding/radius/type never
   drift out of sync between buttons that all do the same kind of job.
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 19px 44px; font-size: 14px; }

/* Solid white — the nav bar's install CTA */
.btn--solid {
  background: #fff;
  color: #07070a;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.22);
}
.btn--solid:hover {
  background: var(--accent-pink);
  color: #fff;
  box-shadow: 0 0 35px rgba(255, 42, 133, 0.6);
  transform: translateY(-2px);
}

/* Holographic gradient fill — the site's highest-emphasis action */
.btn--glow {
  background: var(--holo-gradient);
  color: #fff;
  box-shadow: 0 8px 30px rgba(255, 42, 133, 0.4);
}
.btn--glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 42, 133, 0.65);
}

/* Outline — secondary action next to a glow button */
.btn--outline {
  background: transparent;
  color: var(--text-main);
  border-color: var(--panel-border-bright);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

/* Ghost — quieter default for the two non-featured pricing cards */
.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: var(--panel-border-bright);
}
.btn--ghost:hover {
  background: #fff;
  color: #07070a;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--panel-border);
  padding-bottom: 16px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
}

.meta-rec {
  color: #ff334b;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

.rec-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff334b;
  box-shadow: 0 0 10px #ff334b;
  animation: pulseRec 1.4s infinite;
}
@keyframes pulseRec {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.85); }
}

.hero-header {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: flex-end;
  margin-bottom: 50px;
}

.hero-headline {
  font-size: clamp(44px, 6.5vw, 84px);
  text-transform: uppercase;
}

.hero-manifesto {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
  border-left: 2px solid var(--accent-pink);
  padding-left: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}


/* ==========================================================================
   Interactive Optical Viewfinder Studio (Centerpiece)
   ========================================================================== */
.viewfinder-wrapper {
  margin: 20px 0 100px;
  position: relative;
}

.viewfinder-frame {
  background: var(--panel-solid);
  border: 1px solid var(--panel-border-bright);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(255, 42, 133, 0.15);
  position: relative;
}

/* Viewfinder Top Telemetry Bar */
.viewfinder-top-bar {
  background: #0d0c14;
  border-bottom: 1px solid var(--panel-border);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
}

.hud-specs {
  display: flex;
  gap: 20px;
}

.hud-specs span {
  color: #fff;
  font-weight: 700;
}

/* The Live Viewport Stage */
.viewport-stage {
  position: relative;
  width: 100%;
  height: 640px;
  background: #000;
  overflow: hidden;
  user-select: none;
}

/* Background image on the stage */
.model-portrait {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
}

.model-enhanced {
  filter: contrast(1.04) brightness(1.03);
}

.model-raw-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 2px solid var(--accent-pink);
  z-index: 10;
  box-shadow: 4px 0 25px rgba(255, 42, 133, 0.5);
}

.model-raw-layer .model-portrait {
  width: 100vw;
  max-width: 1280px;
  filter: contrast(1.2) brightness(0.85) saturate(0.82) sepia(0.18) blur(0.6px);
}

/* Optical HUD Overlay Markers */
.hud-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.hud-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(255, 255, 255, 0.6);
  border-style: solid;
}
.corner-tl { top: 24px; left: 24px; border-width: 2px 0 0 2px; }
.corner-tr { top: 24px; right: 24px; border-width: 2px 2px 0 0; }
.corner-bl { bottom: 24px; left: 24px; border-width: 0 0 2px 2px; }
.corner-br { bottom: 24px; right: 24px; border-width: 0 2px 2px 0; }

.hud-center-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
}
.hud-center-cross::before, .hud-center-cross::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.4);
}
.hud-center-cross::before { top: 15px; left: 0; right: 0; height: 2px; }
.hud-center-cross::after { left: 15px; top: 0; bottom: 0; width: 2px; }

/* 468 Face Mesh SVG Overlay */
.mesh-svg-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 320px;
  height: 380px;
  z-index: 15;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.mesh-svg-overlay.hidden {
  opacity: 0;
}

/* Viewport Slider Divider */
.split-laser-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent-pink);
  z-index: 30;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent-pink);
}

.laser-shutter-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 14px;
  background: #000;
  border: 1px solid var(--accent-pink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 20px rgba(255, 42, 133, 0.8);
  white-space: nowrap;
}

/* HUD Labels on Stage */
.stage-tag-left, .stage-tag-right {
  position: absolute;
  top: 24px;
  z-index: 25;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stage-tag-left {
  left: 36px;
  background: rgba(0, 0, 0, 0.7);
  color: #888;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stage-tag-right {
  right: 36px;
  background: rgba(255, 42, 133, 0.2);
  color: #fff;
  border: 1px solid var(--accent-pink);
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
}

/* Studio Deck / Tactile Console underneath the lens */
.studio-console {
  background: #0d0c14;
  border-top: 1px solid var(--panel-border);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1.4fr 1.6fr;
  gap: 32px;
  align-items: center;
}

.console-presets-block h4, .console-sliders-block h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.preset-dial-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.preset-dial-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: #181624;
  border: 1px solid var(--panel-border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.preset-dial-btn.active, .preset-dial-btn:hover {
  background: var(--accent-pink);
  color: #fff;
  border-color: var(--accent-pink);
  box-shadow: 0 0 15px rgba(255, 42, 133, 0.4);
}

.toggle-mesh-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.4);
  color: var(--accent-cyan);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.toggle-mesh-btn.active {
  background: var(--accent-cyan);
  color: #07070a;
}

.preset-dial-btn--danger {
  border-color: #ff334b;
  color: #ff8595;
}

.console-chip-row {
  margin-top: 14px;
  display: flex;
  gap: 10px;
}

.console-sliders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.studio-slider {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-muted);
}

.studio-slider input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #242033;
  border-radius: 2px;
  outline: none;
}

.studio-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 8px rgba(255, 42, 133, 0.8);
  border: 2px solid var(--accent-pink);
}

/* ==========================================================================
   Infinite Kinetic Ticker
   ========================================================================== */
.marquee-band {
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  background: rgba(13, 12, 19, 0.6);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  gap: 48px;
  animation: scrollMarquee 25s linear infinite;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-item span {
  color: var(--accent-pink);
  margin-right: 8px;
}

@keyframes scrollMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Bento Vision Grid (High-Fashion Avant-Garde Architecture)
   ========================================================================== */
.bento-section {
  padding: 120px 0;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-sakura);
  margin-bottom: 12px;
}

.section-head {
  max-width: 750px;
  margin-bottom: 60px;
}

.section-head--center {
  text-align: center;
  margin: 0 auto 60px;
}

.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  color: var(--text-muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.bento-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card:hover {
  border-color: var(--panel-border-bright);
  background: rgba(26, 24, 38, 0.85);
  transform: translateY(-4px);
}

.bento-sculpt {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  background: radial-gradient(circle at 100% 0%, rgba(255, 42, 133, 0.15) 0%, rgba(18, 17, 26, 0.8) 60%);
}

.bento-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: inline-block;
  margin-bottom: 24px;
}

.bento-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.bento-card-art {
  margin-top: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  position: relative;
}

.bento-card-art img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* Swatch Interactive Dots */
.swatch-picker {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.swatch-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.swatch-btn:hover, .swatch-btn.active {
  border-color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}
.swatch-peach { background: #df6956; }
.swatch-rose { background: #ba4365; }
.swatch-cherry { background: #b01b38; }
.swatch-nude { background: #b87b70; }

.swatch-active-name {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-sakura);
  margin-top: 10px;
}

.bento-card-art--compact {
  margin-top: 20px;
}
.bento-card-art--compact img {
  height: 140px;
}

/* Local GPU Sandbox Visual */
.gpu-meter-box {
  margin-top: 24px;
  background: #08080c;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
}

.gpu-metric-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.gpu-metric-row:last-child { margin-bottom: 0; }
.status-green { color: #00ff88; font-weight: 700; }
.status-locked { color: var(--accent-pink); font-weight: 700; }
.status-accent { color: var(--accent-sakura); font-weight: 700; }

/* ==========================================================================
   Titanium Membership Passes (Pricing Redefined)
   ========================================================================== */
.pricing-section {
  padding: 120px 0;
  position: relative;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.titanium-card {
  background: linear-gradient(160deg, #181524 0%, #0d0c14 100%);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  padding: 40px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.titanium-card:hover {
  transform: translateY(-6px);
  border-color: var(--panel-border-bright);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* The Iconic Holographic Black Card */
.titanium-card.black-card {
  background: linear-gradient(160deg, #241c33 0%, #100e18 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 25px 80px rgba(255, 42, 133, 0.25);
  position: relative;
}

.titanium-card.black-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-card);
  background: var(--holo-gradient);
  z-index: -1;
  opacity: 0.9;
}

.card-chip {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d8ba78 0%, #a6843c 100%);
  border: 1px solid #ffde99;
  margin-bottom: 24px;
  position: relative;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
}

.card-chip--holo {
  background: linear-gradient(135deg, #fff 0%, #ff75b5 50%, #00f2fe 100%);
}

.card-chip--platinum {
  background: linear-gradient(135deg, #e6e6e6 0%, #a8a8a8 100%);
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.badge-best-value {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-pink);
  color: #fff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.card-tier-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-serial {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.card-price-block {
  margin-bottom: 28px;
}

.card-price-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.card-price-num span {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.card-price-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-sakura);
  margin-top: 4px;
}

.card-price-sub--dim {
  color: var(--text-dim);
}

.card-perks-list {
  list-style: none;
  margin-bottom: 36px;
  flex-grow: 1;
}

.card-perks-list li {
  font-size: 14px;
  color: #d3cce3;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-perks-list li::before {
  content: '◆';
  color: var(--accent-pink);
  font-size: 10px;
}


/* ==========================================================================
   Editorial FAQ Accordion
   ========================================================================== */
.faq-section {
  padding: 100px 0 140px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
}

.faq-intro h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-intro p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 12px;
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-row {
  border-bottom: 1px solid var(--panel-border);
  padding: 20px 0;
  transition: var(--transition);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-btn-icon {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent-pink);
  transition: transform 0.25s ease;
}

.faq-row.active .faq-btn-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  padding-right: 40px;
}

.faq-row.active .faq-body {
  max-height: 200px;
  padding-top: 16px;
}

/* ==========================================================================
   Final Shutter Banner
   ========================================================================== */
.final-shutter {
  padding: 60px 0 120px;
}

.shutter-box {
  background: 
    radial-gradient(circle at 50% 50%, rgba(255, 42, 133, 0.18) 0%, transparent 60%),
    #110f1a;
  border: 1px solid var(--accent-pink);
  border-radius: var(--radius-card);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 80px rgba(255, 42, 133, 0.25);
}

.shutter-box h2 {
  font-size: clamp(36px, 5.5vw, 68px);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.shutter-box p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

/* Footer */
footer {
  border-top: 1px solid var(--panel-border);
  padding: 60px 0 40px;
  background: #050408;
  font-family: var(--font-mono);
  font-size: 12px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand .logo-aperture {
  width: 24px;
  height: 24px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.footer-copyright {
  color: var(--text-dim);
}

.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-pink);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-header { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-sculpt { grid-column: 1 / -1; grid-row: auto; }
  .pricing-cards-container { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .studio-console { grid-template-columns: 1fr; }
  .viewport-stage { height: 480px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .viewport-stage { height: 400px; }
  .console-sliders-grid { grid-template-columns: 1fr; }
}
