/* ============================================================
   VELONGIX — Full-Screen Snap Scroll CSS
   ============================================================ */

:root {
  --gold:       #C9A84C;
  --gold-light: #F5D98B;
  --bg-dark:    #050507;
  --bg-darker:  #020203;
  --text:       #f0f0f0;
  --muted:      rgba(240,240,240,0.55);
  --border:     rgba(201,168,76,0.18);
  --ease:       cubic-bezier(0.77,0,0.175,1);
  --dur:        0.85s;

}
html, body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
::-webkit-scrollbar {
  display: none;
}
* {
  scrollbar-width: none;
}

/* ── Utility ── */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;

/* ─── SLIDES WRAPPER ─────────────────────────────────── */
}
.slides-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;

/* ─── INDIVIDUAL SLIDE ─── */
}
.slide {
  width: 100vw; height: 100vh;
  position: absolute; top: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: center center;
  

/* Slide backgrounds */
}
.slide-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.slide-bg-img {
  width: 100%; height: 100%; object-fit: cover;
}
.slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(160deg, rgba(5,5,7,0.55) 0%, rgba(5,5,7,0.85) 100%);
}
#particles-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;

/* ─── SLIDE CONTENT (shared) ─── */
}
.slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  padding: 0 2.5rem;
  margin: 0 auto;

/* ─── ANIMATION ITEMS ─── */
}
.anim-item {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  filter: blur(8px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), filter 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 110ms + 200ms);
}
.slide-active .anim-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}
.slide-exit .anim-item {
  opacity: 0;
  transform: translateY(-40px) scale(1.05);
  filter: blur(8px);
  transition-delay: calc(var(--i, 0) * 40ms);

/* ─── NAVBAR ─── */
}
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 1rem 0;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s, padding 0.5s;
  border-bottom: 1px solid transparent;
}
#navbar.dim {
  background: rgba(5,5,7,0.8);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.5rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-wrapper {
  position: relative;
  display: inline-flex;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#navbar.dim .nav-logo-wrapper {
  opacity: 1;
  transform: translateY(0);
}
.nav-logo-img {
  height: 75px;
  width: auto;
  visibility: hidden; /* reserves aspect ratio space */
}
.nav-logo-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(240,240,240,0.7); text-decoration: none;
  font-size: 0.88rem; font-weight: 500; transition: color 0.2s; cursor: pointer;
}
.nav-links .nav-cta {
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000 !important; font-weight: 700; border-radius: 50px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.nav-links .nav-cta:hover {
  box-shadow: 0 4px 22px rgba(201,168,76,0.45);
  transform: translateY(-1px);
}
.slide-dots {
  position: fixed; right: 2rem; top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  display: flex; flex-direction: column; gap: 10px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer; border: none; padding: 0;
  transition: background 0.35s, transform 0.35s, height 0.35s, border-radius 0.35s;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.2);
  height: 22px; border-radius: 4px;

/* ─── SLIDE COUNTER ─── */
}
.slide-counter {
  position: fixed; left: 2.5rem; bottom: 2.5rem; z-index: 200;
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.25);

/* ════════════════════ HERO ════════════════════ */
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.hero-logo-wrapper {
  position: relative;
  display: inline-flex;
  width: 420px;
  max-width: 80vw;
  margin-bottom: 2.5rem;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  display: block;
  visibility: hidden; /* reserve space */
}
.hero-logo-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
}
.hero-title {
  font-size: clamp(3.5rem, 8.5vw, 7.5rem);
  font-weight: 900; letter-spacing: -0.045em; line-height: 1.0;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--muted); line-height: 1.75; margin-bottom: 2.5rem;
}
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.65rem;
  letter-spacing: 0.12em; text-transform: uppercase; z-index: 10;
  animation: fade-pulse 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.7), transparent);

/* ════════════════════ ABOUT ════════════════════ */
}
.about-content {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 8rem; align-items: center;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.035em; line-height: 1.1;
}
.about-body {
  color: var(--muted); font-size: 1rem;
  line-height: 1.85; margin-bottom: 1.25rem;
}
.stat-number {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -0.045em;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem;

/* ════════════════════ PRODUCTS ════════════════════ */
}
.featured-badge {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: #000;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 0.3rem 1rem; border-radius: 50px;
}
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.product-mockup {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.mockup-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-mockup:hover .mockup-img {
  transform: scale(1.05);
}
.portfolio-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portal-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Below the text initially, or text can be over it */
}
.laptop-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  object-fit: fill;

}
.scene-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.77vh; /* 16:9 */
  will-change: transform;
}
.scene-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;

}
.portal-wrapper {
  position: absolute;
  background: #050505;
  overflow: hidden;
  will-change: transform;

/* OPA Dell Laptop Screen (Exact stadium background) */
}
#portal-3 {
  left: 33.87%;
  top: 34.90%;
  width: 33.72%;
  height: 37.8%;
  border-radius: 4px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);

/* Archubi Apple Monitor (Centered, flat) */
}
#portal-4 {
  width: 42.4%;
  height: 44.5%;
  top: 18.5%;
  left: 28.8%;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}
.laptop-base {
  width: calc(100% + 40px);
  height: 18px;
  background: linear-gradient(to bottom, #d4d4d4, #737373);
  border-radius: 0 0 16px 16px;
  position: relative;
  display: flex;
  justify-content: center;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.4), 0 10px 20px rgba(0,0,0,0.6);
  z-index: 2;
  margin-top: -1px;
  will-change: opacity, transform;
}
.laptop-notch {
  width: 120px;
  height: 6px;
  background: #999;
  border-radius: 0 0 6px 6px;

/* Black MacBook Override */

/* Apple Monitor Mockup */
}
.monitor-mockup {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.monitor-mockup .portal-wrapper {
  border: 12px solid #050505;
  border-radius: 16px;
}
.monitor-stand {
  width: 80px;
  height: 60px;
  background: linear-gradient(to bottom, #d4d4d4, #a3a3a3);
  position: relative;
  z-index: 0;
  margin-top: -12px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
  will-change: opacity, transform;
}
.monitor-base {
  width: 220px;
  height: 12px;
  background: #a3a3a3;
  border-radius: 6px 6px 0 0;
  z-index: 2;
  will-change: opacity, transform;
}
.portal-long-img {
  width: 100%;
  height: auto;
  display: block;
  /* y translation animated by GSAP */
  will-change: transform;

}
.portfolio-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row !important;
  align-items: flex-end !important; /* Position in bottom corner */
  z-index: 15;
  padding: 0 !important;
}
.portfolio-content.align-right {
  justify-content: flex-end !important;
  text-align: right;
  padding: 0 3.5vw 4vh 0 !important; /* Bottom-right corner */
}
.portfolio-content.align-left {
  justify-content: flex-start !important;
  text-align: left;
  padding: 0 0 4vh 3.5vw !important; /* Bottom-left corner */
}
.portfolio-text {
  padding: 1.75rem 2.25rem;
  max-width: 380px;
  background: rgba(5,5,7,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  pointer-events: auto;
  will-change: opacity, transform;
  position: relative;
  z-index: 999;
}
.portfolio-text .section-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.portfolio-text .product-name {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  line-height: 1.1;
}
.portfolio-text .product-tagline {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}
.portfolio-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  position: relative;
  z-index: 1000;
}
.portfolio-link:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
.visit-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  transition: border-color 0.3s, color 0.3s;
  position: relative;
  z-index: 1000;
}
.visit-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.product-name {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.04em; margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 1rem; color: var(--muted); line-height: 1.8;
  max-width: 540px; margin-bottom: 2rem;

/* AI animated icon */
}
.ai-icon {
  position: relative;
  background: radial-gradient(circle, rgba(201,168,76,0.1), transparent 70%);
}
.ai-pulse-large {
  width: 52px; height: 52px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-light), var(--gold));
  position: relative; z-index: 2;
  box-shadow: 0 0 30px rgba(201,168,76,0.5);
}
.ai-center-label {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.85rem; font-weight: 900; color: #000; z-index: 3;
}
.ai-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  animation: ring-anim 2.5s ease-out infinite;
}
@keyframes ring-anim {
  0% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

/* ════════════════════ STORY ════════════════════ */
.story-num {
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 900; letter-spacing: -0.06em; line-height: 1;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(245,217,139,0.03));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: -0.5rem; user-select: none;
}
.story-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1.05;
  margin: 0.75rem 0 1.5rem;
}
.story-body {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted); line-height: 1.85;
  max-width: 580px; margin: 0 auto;

}

/* ════════════════════ VENTURE STUDIO / PARTNERSHIPS CTA ════════════════════ */
.venture-cta-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}
.venture-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  text-align: left;
}
.venture-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.85rem;
}
.venture-headline {
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 1rem;
}
.venture-desc {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 1.5rem;
}
.venture-contact-box {
  padding: 1.15rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.25rem;
  max-width: 460px;
}
.venture-contact-meta {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.4rem;
}
.venture-email-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.venture-email-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.venture-email-link:hover {
  color: var(--gold-light);
}
.venture-copy-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.2s ease;
}
.venture-copy-btn:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.4);
  color: #fff;
}
.copy-toast-tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f3822;
  border: 1px solid #22c55e;
  color: #4ade80;
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
  z-index: 10;
}
.copy-toast-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}
.venture-timezone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.6rem;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.45);
}
.live-dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s infinite ease-in-out;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.85); }
}
.venture-ecosystem-links {
  max-width: 460px;
}
.venture-eco-label {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.4rem;
}
.venture-eco-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.eco-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s ease;
}
.eco-pill span {
  color: rgba(255, 255, 255, 0.4);
}
.eco-pill:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: rgba(201, 168, 76, 0.06);
  color: #fff;
}

/* Right Intake Card */
.venture-card {
  position: relative;
  background: rgba(14, 14, 16, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: border-color 0.3s ease;
  text-align: left;
}
.venture-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
}
.venture-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.venture-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #4ade80;
  font-size: 0.7rem;
  font-weight: 500;
}
.live-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
}
.confidential-badge {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}
.intake-intro h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.2rem;
}
.intake-intro p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 1rem;
}
.form-field-group {
  margin-bottom: 0.85rem;
}
.form-field-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.35rem;
}
.project-tags-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.2rem;
}
.scope-tag {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.scope-tag:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.scope-tag.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.25);
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.venture-intake-form input,
.venture-intake-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.venture-intake-form input:focus,
.venture-intake-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}
.venture-intake-form textarea {
  resize: none;
}
.btn-venture-action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.25);
  transition: transform 0.2s, filter 0.2s;
  margin-top: 0.2rem;
}
.btn-venture-action:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.venture-success-panel {
  text-align: center;
  padding: 2rem 1rem;
}
.venture-success-badge {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-size: 1.15rem;
}
.venture-success-panel h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #fff;
}
.venture-success-panel p {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer-row {
  margin-top: 2.2rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; gap: 2rem; justify-content: center;
  align-items: center; flex-wrap: wrap;
  color: rgba(255,255,255,0.25); font-size: 0.8rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2.2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #000; font-weight: 700; font-size: 0.95rem;
  border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 0 30px rgba(201,168,76,0.3);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: 0.95rem 2rem;
  color: var(--text); font-weight: 500; font-size: 0.95rem;
  border-radius: 50px; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}

/* ─── CURSOR GLOW ─── */
#cursor-glow {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: left 0.1s ease, top 0.1s ease;
}

/* ─── RESPONSIVE ─── */
/* ════════════════════ ADMIN EDITOR PANEL ════════════════════ */
#admin-panel {
  display: none; /* HIDDEN BY DEFAULT */
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid var(--gold); border-radius: 12px;
  padding: 15px; width: 220px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
}
.admin-header {
  font-size: 0.75rem; font-weight: 800; color: var(--gold);
  margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px;
}
#admin-panel button {
  background: rgba(255,255,255,0.05); color: #fff; 
  border: 1px solid rgba(255,255,255,0.1); 
  padding: 10px; border-radius: 6px; 
  cursor: pointer; font-size: 0.8rem; font-weight: 600;
  transition: all 0.2s ease;
}
#admin-panel button:hover:not(:disabled) { 
  background: var(--gold); color: #000; border-color: var(--gold);
}

/* Edit Mode Visuals */
.edit-mode-active [contenteditable="true"] {
  outline: 2px dashed rgba(201, 168, 76, 0.6); 
  outline-offset: 6px;
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.05);
  transition: background 0.2s, outline 0.2s;
  cursor: text;
}
.edit-mode-active [contenteditable="true"]:hover {
  background: rgba(201, 168, 76, 0.15);
  outline-color: var(--gold);
}
.edit-mode-active [contenteditable="true"]:focus {
  background: rgba(201, 168, 76, 0.2);
  outline: 2px solid var(--gold);
}

/* ════════════════════ DUAL-CANVAS PARTICLE ENGINE (SLIDE 0) ════════════════════ */
#slide-0 {
  background: #050507;
  overflow: hidden;
}

#slide-0 .slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#slide-0 #bg-canvas,
#slide-0 #fg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#slide-0 #bg-canvas {
  z-index: 1;
}

#slide-0 .hero-content {
  z-index: 2;
  pointer-events: none;
}

#slide-0 #fg-canvas {
  z-index: 3;
}

.hero-scroll-prompt {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(201, 168, 76, 0.75);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 4;
}

.hero-scroll-arrow {
  width: 1px;
  height: 24px;
  background: linear-gradient(180deg, #C9A84C, transparent);
  animation: heroPulse 2s infinite ease-in-out;
}

@keyframes heroPulse {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ══════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE STYLING (SMARTPHONES & PORTRAIT TABLETS <= 768px)
   Does not affect desktop viewports (> 768px)
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .slide-content {
    padding: 0 1.25rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  /* Clutter reduction on touch devices */
  #cursor-glow,
  .slide-dots,
  .slide-counter {
    display: none !important;
  }

  /* ── NAVBAR ── */
  #navbar {
    padding: 0.65rem 0 !important;
  }
  #navbar.dim {
    padding: 0.45rem 0 !important;
  }
  .nav-inner {
    padding: 0 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .nav-logo-wrapper {
    opacity: 1 !important;
    transform: none !important;
  }
  .nav-logo-img {
    height: 38px !important;
  }
  .nav-links {
    gap: 0.75rem !important;
  }
  .nav-links li:not(:nth-child(3)):not(:last-child) {
    display: none !important;
  }
  .nav-links a {
    font-size: 0.82rem !important;
  }
  .nav-links .nav-cta {
    padding: 0.42rem 0.95rem !important;
    font-size: 0.78rem !important;
  }

  /* ── SLIDE 0: HERO ── */
  .hero-scroll-prompt {
    bottom: 1.5rem;
    font-size: 0.62rem;
    letter-spacing: 1.5px;
    width: 90%;
    text-align: center;
  }
  .hero-scroll-arrow {
    height: 18px;
  }

  /* ── SLIDE 1: ABOUT ── */
  .about-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.25rem !important;
    text-align: left !important;
    align-items: flex-start !important;
    padding: 0 1.25rem !important;
  }
  .about-left,
  .about-right {
    width: 100% !important;
    max-width: 100% !important;
  }
  .section-title {
    font-size: clamp(1.55rem, 6.5vw, 2.2rem) !important;
    line-height: 1.15 !important;
  }
  .about-body {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.75rem !important;
  }
  .stats-row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
    margin-top: 1rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(201, 168, 76, 0.18) !important;
  }
  .stat-number {
    font-size: clamp(1.3rem, 5vw, 1.75rem) !important;
    line-height: 1.1 !important;
  }
  .stat-label {
    font-size: 0.62rem !important;
    line-height: 1.25 !important;
    margin-top: 0.25rem !important;
  }
  .stat-label span {
    display: none !important;
  }

  /* ── SLIDE 2: EXPERTISE ── */
  .product-content {
    padding: 0 1.25rem !important;
  }
  .product-hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    align-items: flex-start !important;
    width: 100% !important;
  }
  .product-mockup {
    display: none !important;
  }
  .product-hero .product-name {
    font-size: clamp(1.45rem, 6vw, 1.95rem);
    line-height: 1.15;
    margin-bottom: 0.35rem;
  }
  .product-hero .product-tagline {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  .product-hero .product-desc {
    font-size: 0.82rem;
    line-height: 1.55;
    margin-bottom: 0.75rem;
  }
  .product-features {
    font-size: 0.78rem;
    line-height: 1.55;
    padding-left: 0;
    list-style: none;
    margin: 0;
  }
  .product-features li {
    margin-bottom: 0.35rem;
  }

  /* ── SLIDE 3 & 4: SIGNATURE WORKS PORTFOLIO (OPA & ARCHUBI) ── */
  .portfolio-content.align-right,
  .portfolio-content.align-left {
    justify-content: center !important;
    text-align: center !important;
    padding: 0 1rem 2rem !important;
  }
  .portfolio-text {
    max-width: min(92vw, 380px);
    width: 100%;
    padding: 1.1rem 1.4rem;
    border-radius: 1rem;
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-sizing: border-box;
  }
  .portfolio-text .section-label {
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
  }
  .portfolio-text .product-name {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    margin-bottom: 0.35rem;
  }
  .portfolio-text .product-tagline {
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .visit-link {
    font-size: 0.75rem;
  }

  /* ── SLIDE 5, 6, 7: STORY SLIDES ── */
  .story-content {
    text-align: center;
  }
  .story-num {
    font-size: clamp(3.75rem, 15vw, 5.5rem);
    line-height: 1;
    margin-bottom: -0.25rem;
  }
  .story-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.15;
    margin: 0.5rem 0 0.85rem;
  }
  .story-body {
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 100%;
  }

  /* ── SLIDE 8: VENTURE CTA MOBILE ── */
  .venture-cta-wrapper {
    padding: 0 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }
  .venture-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    text-align: center;
  }
  .venture-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .venture-badge {
    margin-bottom: 0.4rem;
    font-size: 0.65rem;
    padding: 0.25rem 0.65rem;
  }
  .venture-headline {
    font-size: clamp(1.75rem, 6.5vw, 2.35rem);
    line-height: 1.1;
    margin: 0 0 0.45rem;
  }
  .venture-desc {
    font-size: 0.82rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    max-width: 100%;
  }
  .venture-contact-box {
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .venture-contact-meta {
    font-size: 0.62rem;
  }
  .venture-email-row {
    justify-content: center;
  }
  .venture-email-link {
    font-size: 0.95rem;
  }
  .venture-timezone {
    font-size: 0.68rem;
    justify-content: center;
  }
  .venture-ecosystem-links {
    display: none; /* Secondary links preserved on slides 3 & 4, hidden here to ensure perfect mobile height fit */
  }
  .venture-card {
    padding: 1.15rem;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  .venture-card-header {
    padding-bottom: 0.65rem;
    margin-bottom: 0.65rem;
  }
  .intake-intro h3 {
    font-size: 0.98rem;
  }
  .intake-intro p {
    font-size: 0.68rem;
    margin-bottom: 0.65rem;
  }
  .project-tags-selector {
    justify-content: center;
    gap: 0.35rem;
  }
  .scope-tag {
    padding: 0.3rem 0.6rem;
    font-size: 0.68rem;
  }
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .form-field-group {
    margin-bottom: 0.55rem;
    text-align: left;
  }
  .form-field-label {
    font-size: 0.62rem;
    margin-bottom: 0.25rem;
  }
  .venture-intake-form input,
  .venture-intake-form textarea {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }
  .btn-venture-action {
    padding: 0.75rem 1.25rem;
    font-size: 0.82rem;
  }
  .footer-row {
    margin-top: 1rem;
    padding-top: 0.75rem;
    font-size: 0.68rem;
    gap: 0.6rem;
  }
}

