/* ── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080808;
  --surface:  #101010;
  --card:     #141414;
  --card2:    #1a1a1a;
  --border:   rgba(255,255,255,0.07);
  --blight:   rgba(255,255,255,0.14);
  --text:     #f0f0f0;
  --muted:    #777777;
  --soft:     #aaaaaa;
  --gold:     #C9922A;
  --lgold:    #E8B84B;
  --white:    #ffffff;
  --red:      #8B0000;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--lgold); }

/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1 { font-size: clamp(2.6rem, 6vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); }
p  { color: var(--muted); font-size: 0.95rem; }

.gold  { color: var(--gold) !important; }
.white { color: var(--white) !important; }
.soft  { color: var(--soft) !important; }

/* ── LAYOUT ────────────────────────────────────────────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 6rem 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.section-label::before {
  content: ''; width: 1.5rem; height: 1px; background: var(--gold);
}

.divider {
  width: 2.5rem; height: 1px; background: var(--gold);
  margin: 1.2rem 0 1.8rem;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(8,8,8,0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  transition: border-color 0.3s;
}

.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.nav-logo img {
  width: 36px; height: 36px; object-fit: contain;
}
.nav-logo-text {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white);
}
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.85rem; color: var(--muted); font-weight: 500; letter-spacing: 0.02em; }
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold); color: #000 !important;
  padding: 0.5rem 1.2rem; border-radius: 6px;
  font-weight: 700 !important; font-size: 0.82rem !important;
}
.nav-cta:hover { background: var(--lgold) !important; }

/* ── HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 5rem; position: relative; overflow: hidden;
  background: var(--bg);
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 75% 50%, rgba(20,20,20,0) 0%, transparent 100%),
    radial-gradient(ellipse 40% 80% at 70% 50%, rgba(201,146,42,0.04) 0%, transparent 70%);
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,146,42,0.08); border: 1px solid rgba(201,146,42,0.2);
  border-radius: 50px; padding: 0.35rem 1rem;
  font-size: 0.72rem; color: var(--gold); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-title { margin-bottom: 1.5rem; color: var(--white); }
.hero-title span { color: var(--gold); }

.hero-sub {
  font-size: 1.05rem; color: var(--soft);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.btn-primary {
  background: var(--gold); color: #000;
  padding: 0.8rem 1.8rem; border-radius: 7px;
  font-weight: 700; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--lgold); color: #000; transform: translateY(-2px); }

.btn-outline {
  border: 1px solid var(--blight); color: var(--soft);
  padding: 0.8rem 1.8rem; border-radius: 7px;
  font-weight: 600; font-size: 0.9rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.stat-num  { display: block; font-size: 1.7rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-lbl  { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.25rem; display: block; }

/* Hero logo side */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-img {
  width: 100%; max-width: 420px;
  filter: drop-shadow(0 0 60px rgba(201,146,42,0.08));
  animation: floatLogo 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── PILLARS ───────────────────────────────────────────── */
#pillars {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--card); }

.pillar-icon {
  width: 44px; height: 44px;
  background: rgba(201,146,42,0.08);
  border: 1px solid rgba(201,146,42,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.pillar-icon svg { width: 20px; height: 20px; color: var(--gold); fill: none; stroke: currentColor; stroke-width: 1.8; }

.pillar h3 { margin-bottom: 0.5rem; }
.pillar p  { font-size: 0.88rem; line-height: 1.65; }

/* ── ABOUT ─────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.about-text { font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.about-text.lead { color: var(--soft); }

.cred-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.cred-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem; color: var(--muted);
}
.cred-list li svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 0.15rem;
  stroke: var(--gold); fill: none; stroke-width: 2;
}

.number-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.num-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.4rem;
  transition: border-color 0.2s;
}
.num-card:hover { border-color: var(--blight); }
.num-card .big  { display: block; font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.num-card .desc { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }

/* ── MUSIC ─────────────────────────────────────────────── */
#music { background: var(--bg); }

.releases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}

.rel-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.rel-card:hover { border-color: var(--blight); transform: translateY(-4px); }

.rel-cover {
  aspect-ratio: 1; background: var(--card2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.rel-cover svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.6; fill: none; stroke: currentColor; stroke-width: 1.4; }
.rel-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(201,146,42,0.15), transparent 65%);
}

.rel-info { padding: 0.9rem 1rem 1rem; }
.rel-title { font-weight: 700; color: var(--text); font-size: 0.92rem; }
.rel-meta  { font-size: 0.75rem; color: var(--muted); margin-top: 0.15rem; }
.rel-tag {
  display: inline-block; margin-top: 0.55rem;
  background: rgba(201,146,42,0.1); color: var(--gold);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 0.18rem 0.55rem; border-radius: 4px;
}

.spotify-embeds {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.spotify-embeds iframe {
  border-radius: 12px;
  display: block;
}

.spotify-cta-box {
  margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem 2rem; gap: 1rem; flex-wrap: wrap;
}
.spotify-cta-box p { font-size: 0.95rem; color: var(--soft); }

/* ── SOFTWARE ──────────────────────────────────────────── */
#software { background: var(--surface); }

.sw-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}

.sw-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s;
}
.sw-card:hover { border-color: var(--blight); transform: translateY(-3px); }

.sw-icon-wrap {
  width: 44px; height: 44px;
  background: var(--card2); border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.sw-icon-wrap svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.8; }

.sw-card h3 { margin-bottom: 0.45rem; }
.sw-card p  { font-size: 0.88rem; line-height: 1.6; }

.sw-link-icon { color: var(--gold); font-size: 0.85rem; margin-left: 0.3rem; }
a.sw-card { text-decoration: none; display: block; }
a.sw-card h3 { color: var(--text); }

.tech-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
.tech-tags span {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.04em;
  background: var(--card2); border: 1px solid var(--border);
  color: var(--muted); padding: 0.18rem 0.55rem; border-radius: 4px;
}

/* ── MONETIZATION ──────────────────────────────────────── */
#monetization { background: var(--bg); }

.mono-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2.5rem;
}

.mono-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem;
  position: relative; overflow: hidden;
  transition: border-color 0.2s;
}
.mono-card:hover { border-color: var(--blight); }
.mono-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.mono-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.8rem;
}
.mono-card h3 { font-size: 0.95rem; margin-bottom: 0.45rem; }
.mono-card p  { font-size: 0.83rem; line-height: 1.55; }
.mono-val {
  margin-top: 1rem; font-size: 0.8rem;
  color: var(--lgold); font-weight: 700;
  display: flex; align-items: center; gap: 0.4rem;
}
.mono-val svg { width: 12px; height: 12px; stroke: var(--lgold); fill: none; stroke-width: 2; }

/* ── TIMELINE ──────────────────────────────────────────── */
#strategy { background: var(--surface); }

.timeline { margin-top: 2.5rem; position: relative; padding-left: 0; }
.timeline::before {
  content: ''; position: absolute;
  left: 1.25rem; top: 1.5rem; bottom: 0;
  width: 1px; background: var(--border);
}

.tl-item { display: flex; gap: 2rem; margin-bottom: 2rem; position: relative; }
.tl-dot {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--card); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 800; color: var(--gold);
  flex-shrink: 0; z-index: 1;
}
.tl-body {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.3rem 1.5rem; flex: 1;
}
.tl-period { font-size: 0.7rem; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.tl-body h3 { color: var(--text); margin-bottom: 0.5rem; font-size: 1rem; }
.tl-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.tl-body li { font-size: 0.85rem; color: var(--muted); padding-left: 1.1rem; position: relative; }
.tl-body li::before { content: '→'; position: absolute; left: 0; color: var(--gold); top: 0; font-size: 0.7rem; }

/* ── CONTACT ───────────────────────────────────────────── */
#contact { background: var(--bg); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}

.ch-list { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
.ch-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.9rem 1.1rem;
}
.ch-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--card2); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.ch-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.ch-label { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ch-value { font-size: 0.9rem; color: var(--text); font-weight: 600; }

.cform { display: flex; flex-direction: column; gap: 1rem; }
.fg    { display: flex; flex-direction: column; gap: 0.35rem; }
.fg label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.fg input, .fg textarea, .fg select {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.75rem 1rem;
  color: var(--text); font-size: 0.93rem; font-family: inherit;
  transition: border-color 0.2s; outline: none;
  -webkit-appearance: none;
}
.fg select option { background: var(--card); }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--blight); }
.fg textarea { resize: vertical; min-height: 110px; }

.captcha-wrap label { color: var(--gold); font-size: 0.88rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
.captcha-hint { font-size: 0.8rem; margin-top: 0.3rem; display: block; }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 2rem 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-logo img { width: 24px; height: 24px; object-fit: contain; }
.footer-logo span { font-weight: 800; font-size: 0.88rem; letter-spacing: 0.12em; color: var(--white); }
.footer-logo span em { color: var(--gold); font-style: normal; }
footer p { font-size: 0.78rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 0.78rem; color: var(--muted); }
.footer-links a:hover { color: var(--gold); }

/* ── RELEASE COVER VARIANTS ────────────────────────────── */
.rel-cover-1 { background: linear-gradient(135deg,#1a0e0e,#0d1a0d); }
.rel-cover-2 { background: linear-gradient(135deg,#0e0e1a,#0a1020); }
.rel-cover-3 { background: linear-gradient(135deg,#080f1a,#0a0d14); }
.rel-cover-4 { background: linear-gradient(135deg,#0d0d10,#111118); }
.rel-cover-5 { background: linear-gradient(135deg,#120e05,#1a1408); }
.rel-cover-6 { background: linear-gradient(135deg,#0e1010,#121616); }

/* Number card gold accent */
.num-card-gold .big { color: var(--gold); }

/* ── MONOPULSE SECTION ─────────────────────────────────── */
.mp-section { background: var(--surface); position: relative; overflow: hidden; }
.mp-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.mp-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.mp-badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 4px;
  background: var(--card); border: 1px solid var(--border); color: var(--muted);
}
.mp-badge-v { border-color: rgba(0,180,216,0.4); color: #00b4d8; }
.mp-badge-os { color: var(--soft); }

.mp-type { color: var(--muted); font-weight: 400; }
.mp-desc { color: var(--soft); margin-bottom: 1.5rem; }

.mp-feat-list {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.5rem;
  margin-bottom: 2rem;
}
.mp-feat-list li {
  display: flex; align-items: flex-start; gap: 0.55rem;
  font-size: 0.83rem; color: var(--soft);
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.6rem 0.8rem;
}
.mp-feat-list li svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
  stroke: #00b4d8; fill: none; stroke-width: 2;
}
.mp-feat-list li svg *  { fill: none; stroke: #00b4d8; stroke-width: 2; }
.mp-feat-list li strong { color: var(--text); display: block; font-size: 0.8rem; }

.mp-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.mp-price { font-size: 0.85rem; color: var(--muted); }
.mp-price strong { color: var(--gold); }

.mp-visual { position: relative; display: flex; justify-content: center; }
.mp-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mp-box-img {
  width: 100%; max-width: 340px; border-radius: 12px;
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 60px rgba(0,180,216,0.2));
}

/* ── MONOPULSE SHOWCASE ────────────────────────────────── */
.mp-showcase {
  margin-top: 4rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
}
.mp-showcase-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  background: var(--card); border-bottom: 1px solid var(--border);
}
.mp-showcase-label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted);
}
.mp-tabs { display: flex; gap: 0.4rem; }
.mp-tab {
  font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.85rem;
  border-radius: 6px; border: 1px solid var(--border);
  background: transparent; color: var(--muted); cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.mp-tab.active { background: rgba(0,180,216,0.15); border-color: rgba(0,180,216,0.4); color: #00b4d8; }
.mp-tab:hover:not(.active) { color: var(--text); border-color: var(--blight); }

.mp-screen-wrap { position: relative; }
.mp-screen-chrome {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.55rem 1rem;
  background: #111; border-bottom: 1px solid #1e1e1e;
}
.mp-chrome-dots { display: flex; gap: 5px; }
.mp-chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #333;
}
.mp-chrome-dots span:nth-child(1) { background: #ff5f57; }
.mp-chrome-dots span:nth-child(2) { background: #febc2e; }
.mp-chrome-dots span:nth-child(3) { background: #28c840; }
.mp-chrome-title {
  font-size: 0.72rem; color: var(--muted);
  flex: 1; text-align: center;
}
.mp-screen-img {
  width: 100%; display: block;
  transition: opacity 0.25s;
}
.mp-screen-hidden { display: none; }

@media (max-width: 860px) {
  .mp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .mp-visual { order: -1; }
  .mp-box-img { max-width: 240px; }
  .mp-feat-list { grid-template-columns: 1fr; }
}

/* ── REVEAL ────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── PROGETTI ──────────────────────────────────────────── */
.proj-block { margin-top: 5rem; }
.proj-block-header { margin-bottom: 2.5rem; }

.proj-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.proj-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.proj-info {
  padding: 2rem 0 2rem 2rem;
  display: flex; flex-direction: column; gap: 1.2rem;
}

.proj-badges { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.proj-status {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: #4ade80;
}
.proj-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.proj-year {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  background: var(--card2); border: 1px solid var(--border);
  padding: 0.2rem 0.6rem; border-radius: 4px;
}

.proj-title {
  font-size: 1.6rem; font-weight: 800;
  color: var(--white); line-height: 1.2;
  letter-spacing: -0.01em;
}

.proj-desc {
  font-size: 0.9rem; color: var(--soft); line-height: 1.7;
}

.proj-genres { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.proj-genres span {
  font-size: 0.72rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 20px;
  border: 1px solid rgba(201,146,42,0.35);
  color: var(--gold); background: rgba(201,146,42,0.07);
  letter-spacing: 0.04em;
}

.proj-credits { display: flex; flex-direction: column; gap: 0.5rem; margin-top: auto; }
.proj-credit-item { display: flex; gap: 0.75rem; align-items: center; }
.proj-credit-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); width: 80px; flex-shrink: 0;
}
.proj-credit-val { font-size: 0.85rem; color: var(--text); font-weight: 500; }

/* Video */
.proj-video-wrap {
  background: #050505;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  position: relative;
}
.proj-video-inner { width: 100%; height: 100%; }

.proj-video-placeholder {
  width: 100%; height: 100%;
  min-height: 320px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, #050510, #0a0508);
  position: relative; overflow: hidden;
}
.proj-video-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,146,42,0.05) 0%, transparent 70%);
}

.proj-play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
  position: relative; z-index: 1;
}
.proj-play-btn:hover {
  background: rgba(201,146,42,0.2);
  border-color: var(--gold);
  transform: scale(1.08);
}
.proj-play-btn svg { width: 28px; height: 28px; color: var(--white); }

.proj-coming {
  font-size: 0.75rem; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; z-index: 1;
}

.proj-video-el {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: none;
  background: #000;
  object-fit: contain;
}
.proj-video-wrap iframe {
  width: 100%; height: 100%;
  min-height: 320px;
  border: none; display: block;
}

@media (max-width: 860px) {
  .proj-card { grid-template-columns: 1fr; }
  .proj-info { padding: 1.5rem; }
  .proj-video-wrap { min-height: 220px; }
  .proj-video-placeholder { min-height: 220px; }
}

/* ── HAMBURGER ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1002;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── OVERLAY ───────────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* ── DRAWER ────────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: var(--surface);
  border-left: 1px solid var(--border);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-logo { gap: 0.5rem; }

.drawer-close {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.drawer-close:hover { background: var(--card); border-color: var(--blight); }
.drawer-close svg { width: 16px; height: 16px; stroke: var(--text); }

.drawer-links {
  list-style: none;
  display: flex; flex-direction: column;
  padding: 1rem 1.4rem 0;
  gap: 0;
}
.drawer-links li a {
  display: block;
  padding: 0.9rem 0.4rem;
  font-size: 1rem; font-weight: 600;
  color: var(--soft);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
  letter-spacing: 0.02em;
}
.drawer-links li:last-child a { border-bottom: none; }
.drawer-links li a:hover { color: var(--gold); padding-left: 0.8rem; }

.drawer-cta {
  margin: 1.5rem 1.4rem 0;
  justify-content: center;
}

.drawer-footer {
  padding: 1.5rem 1.4rem 0;
  font-size: 0.72rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ── LANGUAGE SWITCHER ─────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-left: 0.5rem;
}
.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 5px;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.45rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-btn:hover {
  color: var(--text);
  border-color: var(--border);
}
.lang-btn.active {
  color: var(--gold);
  border-color: rgba(201,146,42,0.5);
  background: rgba(201,146,42,0.08);
}

.drawer-lang {
  display: flex;
  gap: 0.4rem;
  padding: 1.2rem 1.4rem 0;
}
.drawer-lang .lang-btn {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  border-color: var(--border);
}
.drawer-lang .lang-btn.active {
  color: var(--gold);
  border-color: rgba(201,146,42,0.5);
  background: rgba(201,146,42,0.08);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 860px) {
  .hero-grid     { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .pillar        { border-right: none; border-bottom: 1px solid var(--border); }
  .releases-grid { grid-template-columns: repeat(2,1fr); }
  .sw-grid       { grid-template-columns: 1fr; }
  .mono-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }
  .lang-switcher { display: none; }
}

@media (max-width: 500px) {
  .releases-grid { grid-template-columns: 1fr; }
  .number-grid   { grid-template-columns: 1fr; }
  .hero-stats    { gap: 1.5rem; flex-wrap: wrap; }
  .mp-feat-list  { grid-template-columns: 1fr; }
}
