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

:root {
  --bg:         #000000;
  --surface:    #0c0c0c;
  --border:     rgba(255,255,255,0.09);
  --border-mid: rgba(255,255,255,0.16);
  --text:       #ffffff;
  --text-mid:   rgba(255,255,255,0.68);
  --text-muted: rgba(255,255,255,0.38);
  --accent:     #fe010f;
  --nav-h:      64px;
  --font:       'Syne', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

html[lang="ar"] body {
  font-family: 'Cairo', var(--font);
}

.lang-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-width: 106px;
  padding: 0.22rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
  overflow: hidden;
}

.lang-toggle-thumb {
  position: absolute;
  top: 0.22rem;
  left: 0.22rem;
  width: calc(50% - 0.22rem);
  height: calc(100% - 0.44rem);
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s ease;
  pointer-events: none;
}

.lang-toggle[data-lang-current="ar"] .lang-toggle-thumb {
  transform: translateX(100%);
}

.lang-toggle-btn {
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.68rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.lang-toggle-btn.is-active {
  color: var(--text);
}

html[lang="ar"] .nav-inner,
html[lang="ar"] .nav-actions,
html[lang="ar"] .hero-cta,
html[lang="ar"] .cta-buttons,
html[lang="ar"] .confirm-cta {
  flex-direction: row-reverse;
}

html[lang="ar"] .logo,
html[lang="ar"] .footer-brand {
  flex-direction: row-reverse;
}

html[lang="ar"] .drop-system-list li {
  padding-left: 0;
  padding-right: 1.35rem;
}

html[lang="ar"] .drop-system-list li::before {
  left: auto;
  right: 0;
}

html[lang="ar"] .drop-network-head,
html[lang="ar"] .what-layout,
html[lang="ar"] .signal-layout,
html[lang="ar"] .media-split,
html[lang="ar"] .footer-inner,
html[lang="ar"] .footer-nav-grid,
html[lang="ar"] .prep-grid,
html[lang="ar"] .lane-grid,
html[lang="ar"] .portfolio-grid,
html[lang="ar"] .process-grid,
html[lang="ar"] .entry-grid,
html[lang="ar"] .engage-grid,
html[lang="ar"] .problem-grid,
html[lang="ar"] .asset-grid,
html[lang="ar"] .criteria-list,
html[lang="ar"] .pipeline-stats,
html[lang="ar"] .who-grid,
html[lang="ar"] .isnot-grid {
  direction: rtl;
}

html[lang="ar"] .drop-network-copy,
html[lang="ar"] .what-body,
html[lang="ar"] .signal-left,
html[lang="ar"] .media-panel,
html[lang="ar"] .footer-brand,
html[lang="ar"] .footer-nav-group,
html[lang="ar"] .prep-grid > div,
html[lang="ar"] .lane-card,
html[lang="ar"] .portfolio-hero .container,
html[lang="ar"] .criteria-item,
html[lang="ar"] .confirm-inner,
html[lang="ar"] .access-shell,
html[lang="ar"] .hero-content,
html[lang="ar"] .section,
html[lang="ar"] .section-visual {
  text-align: right;
}

html[lang="ar"] .criteria-item,
html[lang="ar"] .signal-item,
html[lang="ar"] .who-card,
html[lang="ar"] .process-step,
html[lang="ar"] .entry-card,
html[lang="ar"] .engage-tier,
html[lang="ar"] .problem-card,
html[lang="ar"] .asset-card,
html[lang="ar"] .portfolio-card-caption {
  text-align: right;
}

html[lang="ar"] .back-link {
  direction: rtl;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

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

.section {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

/* ─── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/*
  SVG feColorMatrix filter (defined inline in each HTML file as #logo-filter):
  - Forces output color to exact #fe010f
  - Alpha = (1 - G_channel): white has G=1 → alpha=0 (transparent),
    red has G≈0 → alpha≈1 (opaque). Preserves anti-aliased soft edges.
*/
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: url('#logo-filter');
}

.logo-wordmark {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: opacity 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-nav {
  padding: 0.4rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 0.75rem;
}
.btn-nav:hover { opacity: 0.85; }

.btn-primary {
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border: 1px solid transparent;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.45); }

.btn-lg  { padding: 1rem 2.25rem; font-size: 0.85rem; }
.btn-xl  { padding: 1.1rem 2.75rem; font-size: 0.9rem; }

/* ─── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  overflow: hidden;
  background-image: url('bg-hero.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.48) 40%, rgba(0,0,0,0.92) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,1) 39px, rgba(255,255,255,1) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,1) 39px, rgba(255,255,255,1) 40px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero-title em {
  font-style: italic;
  color: var(--text-muted);
}

.hero-sub {
  max-width: 540px;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 2.25rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-meta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.75); }
  50%       { opacity: 0.8;  transform: scaleY(1); }
}

/* ─── MARQUEE ────────────────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  background: #060606;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.marquee-track .dot {
  color: var(--accent);
  padding: 0 0.5rem;
  font-size: 0.5rem;
  vertical-align: middle;
}

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

/* ─── SECTION: DROP SYSTEM ──────────────────────────────────── */
.drop-system-section {
  position: relative;
}

.drop-system-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 28%, rgba(254, 76, 44, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 40%);
  pointer-events: none;
}

.drop-system-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 4.5rem;
  align-items: center;
}

.drop-system-copy {
  max-width: 620px;
}

.drop-system-copy .section-title {
  margin-bottom: 1.5rem;
}

.drop-system-copy p {
  max-width: 58ch;
  font-size: 1rem;
  color: var(--text-mid);
}

.drop-system-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.85rem;
}

.drop-system-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.drop-system-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(254, 1, 15, 0.45);
}

.drop-system-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.drop-system-shell {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 352px;
  padding-top: 0;
}

.drop-system-svg {
  width: 100%;
  height: 188px;
  color: rgba(255, 255, 255, 0.22);
  overflow: visible;
}

.drop-system-shell .database {
  offset-anchor: 10px 0;
  animation: database-animation-path 4s cubic-bezier(0, 0, 0.2, 1) 1s infinite;
}

.db-light-1 {
  offset-path: path("M 31 10 v 15 q 0 5 5 5 h 59 q 5 0 5 5 v 25");
}

.db-light-2 {
  offset-path: path("M 77 10 v 10 q 0 5 5 5 h 13 q 5 0 5 5 v 25");
}

.db-light-3 {
  offset-path: path("M 124 10 v 10 q 0 5 -5 5 h -14 q -5 0 -5 5 v 25");
}

.db-light-4 {
  offset-path: path("M 170 10 v 15 q 0 5 -5 5 h -60 q -5 0 -5 5 v 25");
}

@keyframes database-animation-path {
  0% { offset-distance: 0%; }
  100% { offset-distance: 100%; }
}

.drop-system-badge {
  fill: #141414;
  stroke: rgba(255, 255, 255, 0.18);
}

.drop-system-badge-text {
  fill: #ffffff;
  stroke: none;
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.drop-system-surface {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.drop-system-shadow {
  position: absolute;
  bottom: 0.6rem;
  width: 64%;
  height: 112px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, rgba(254, 76, 44, 0.18), rgba(254, 76, 44, 0.02) 68%, transparent 100%);
  filter: blur(10px);
}

.drop-system-title {
  position: absolute;
  top: -0.85rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(14, 14, 14, 0.95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.drop-system-title-mark {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fe010f, #ff7340);
  box-shadow: 0 0 18px rgba(254, 76, 44, 0.45);
}

.drop-system-title span:last-child {
  font-size: 0.72rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.88);
}

.drop-system-orbit-label {
  position: absolute;
  bottom: -1.6rem;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), rgba(16, 16, 16, 0.98) 70%);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.drop-system-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 202px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.98), rgba(18, 18, 18, 0.96));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.drop-system-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 38px;
  padding: 0 0.95rem;
  max-width: calc(100% - 2rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(13, 13, 13, 0.92);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.drop-system-pill svg {
  width: 14px;
  height: 14px;
  color: #ff7a45;
  flex-shrink: 0;
}

.drop-system-pill-left {
  left: 3.25rem;
  bottom: 3.35rem;
}

.drop-system-pill-right {
  right: 3.1rem;
  top: 1.8rem;
}

.drop-system-ring {
  position: absolute;
  left: 50%;
  bottom: -3.6rem;
  border-radius: 999px;
  border-top: 1px solid rgba(255, 122, 69, 0.2);
  background: rgba(254, 76, 44, 0.04);
  transform: translateX(-50%);
  animation: dropSystemPulse 3.2s ease-in-out infinite;
}

.drop-system-ring-1 {
  width: 110px;
  height: 110px;
  animation-delay: 0s;
}

.drop-system-ring-2 {
  width: 158px;
  height: 158px;
  bottom: -4.8rem;
  animation-delay: 0.4s;
}

.drop-system-ring-3 {
  width: 208px;
  height: 208px;
  bottom: -6.1rem;
  animation-delay: 0.8s;
}

.drop-system-ring-4 {
  width: 258px;
  height: 258px;
  bottom: -7.4rem;
  animation-delay: 1.2s;
}

@keyframes dropSystemPulse {
  0%, 100% { transform: translateX(-50%) scale(0.985); }
  50% { transform: translateX(-50%) scale(1.02); }
}

@supports not (offset-path: path("M 0 0 L 1 1")) {
  .drop-system-shell .database {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .drop-system-shell .database,
  .drop-system-ring {
    animation: none !important;
  }
}

/* ─── SECTION: DROP NETWORK ─────────────────────────────────── */
.drop-network-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(254, 1, 15, 0.16), transparent 18%),
    radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.03), transparent 28%),
    linear-gradient(180deg, #040404 0%, #060606 100%);
}

.drop-network-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.55), transparent 92%);
  pointer-events: none;
}

.drop-network-head,
.drop-network-visual-frame,
.drop-network-detail {
  position: relative;
  z-index: 1;
}

.drop-network-head {
  display: block;
}

.drop-network-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.drop-network-copy .section-title {
  max-width: 12ch;
  margin-left: auto;
  margin-right: auto;
}

.drop-network-head .drop-network-toggle-wrap {
  display: flex;
  width: fit-content;
  max-width: fit-content;
  margin: 2.6rem auto 0;
}

.drop-network-copy .section-title {
  margin-bottom: 1.3rem;
  max-width: 13ch;
}

.drop-network-lead {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.drop-network-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  padding: 0.35rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.drop-network-toggle-option {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 1.1rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.drop-network-toggle-option.is-active {
  background: rgba(255,255,255,0.08);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.toggle-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

.toggle-icon svg {
  width: 100%;
  height: 100%;
}

.drop-network-visual-frame {
  margin-top: 1.75rem;
  margin-left: 0;
  position: relative;
  min-height: 0;
  padding: 0;
}

.drop-network-visual-frame::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: 72%;
  height: 56%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(160, 22, 12, 0.14), transparent 68%);
  filter: blur(32px);
  pointer-events: none;
}

.drop-network-sphere {
  position: relative;
  width: min(100%, 860px);
  height: 560px;
  margin: 0 auto;
  cursor: grab;
  touch-action: none;
  transform-origin: 50% 48%;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.26s ease, filter 0.38s ease;
}

.drop-network-sphere.is-dragging {
  cursor: grabbing;
}

.drop-network-sphere.is-collapsing {
  opacity: 0.18;
  transform: scale(0.56);
  filter: blur(5px);
  pointer-events: none;
}

.drop-network-bubble {
  position: absolute;
  display: block;
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.drop-network-bubble-frame {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.6);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  isolation: isolate;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.drop-network-bubble img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.92;
  border-radius: 999px;
  clip-path: circle(50% at 50% 50%);
}

.drop-network-bubble.is-active .drop-network-bubble-frame {
  border-color: rgba(254, 1, 15, 0.65);
  box-shadow: 0 0 0 1px rgba(254, 1, 15, 0.38), 0 20px 44px rgba(0,0,0,0.45);
}

.drop-network-bubble:hover .drop-network-bubble-frame,
.drop-network-bubble:focus-visible .drop-network-bubble-frame {
  transform: scale(1.18);
}

.drop-network-bubble.is-active:hover .drop-network-bubble-frame,
.drop-network-bubble.is-active:focus-visible .drop-network-bubble-frame {
  transform: scale(1.12);
}

.drop-network-detail {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100% - 2.5rem, 760px);
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 5000;
}

.drop-network-detail.is-hidden {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 14px));
  pointer-events: none;
}

.drop-network-card {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 28px;
  background: #0a0a0a;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 36px 120px rgba(0,0,0,0.62);
  transform: translateY(0);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  pointer-events: auto;
}

.drop-network-card.is-active {
  border-color: rgba(254, 1, 15, 0.58);
}

.drop-network-card-image {
  width: 176px;
  aspect-ratio: 1 / 1.14;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
}

.drop-network-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.drop-network-card-shell {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.drop-network-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.drop-network-card-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.drop-network-card-title {
  font-size: 1.4rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.drop-network-card-type,
.drop-network-card-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.drop-network-card-type {
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}

.drop-network-card-status {
  color: #ff8c74;
  border: 1px solid rgba(254, 1, 15, 0.18);
  background: rgba(254, 1, 15, 0.1);
}

.drop-network-card-close {
  min-height: 30px;
  padding: 0 0.8rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.82);
  font: inherit;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.drop-network-card-close:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.drop-network-card-copy {
  margin-top: 0.85rem;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.68;
  max-width: 56ch;
}

.drop-network-external {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  margin-top: 1rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(254, 1, 15, 0.24);
  background: rgba(254, 1, 15, 0.08);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.drop-network-external:hover {
  background: rgba(254, 1, 15, 0.14);
  border-color: rgba(254, 1, 15, 0.38);
}

.drop-network-tag-row,
.drop-network-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.drop-network-tag,
.drop-network-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.drop-network-tag:hover,
.drop-network-social:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}

.drop-network-socials {
  margin-top: 1.1rem;
}

.drop-network-social {
  width: 40px;
  padding: 0;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

/* ─── SECTION: WHAT IS DROP ──────────────────────────────────── */
.what-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.what-layout .section-title { margin-bottom: 0; }

.what-body p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 1.1rem;
}

.what-stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.what-stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.what-stat span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SECTION: WHO ───────────────────────────────────────────── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.who-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.who-card:hover { background: rgba(254,1,15,0.03); }
.who-card:nth-child(3n)        { border-right: none; }
.who-card:nth-last-child(-n+3) { border-bottom: none; }

.who-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.who-card p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

.section-note {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  font-style: italic;
}

/* ─── SECTION: SIGNAL ────────────────────────────────────────── */
.signal-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.signal-left .section-title { margin-bottom: 1.75rem; }
.signal-left p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.signal-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.signal-item:first-child { border-top: 1px solid var(--border); }

.signal-num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  min-width: 26px;
  padding-top: 2px;
  flex-shrink: 0;
}

.signal-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.signal-item p {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ─── SECTION: PROCESS ───────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.process-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: none; }

.step-num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(254,1,15,0.12);
  margin-bottom: 1.5rem;
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── SECTION: IS / IS NOT ───────────────────────────────────── */
.isnot-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 4rem;
}

.isnot-divider { background: var(--border); }

.isnot-block ul {
  list-style: none;
  padding: 0;
}

.isnot-block li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.isnot-block li::before {
  flex-shrink: 0;
  margin-top: 0.1em;
  font-weight: 700;
}

.is-yes li::before { content: '✓'; color: var(--accent); font-size: 0.8rem; }
.is-no  li::before { content: '✗'; color: var(--text-muted); font-size: 0.8rem; }

.isnot-block li:last-child { border-bottom: none; }

/* ─── SECTION: FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-item summary {
  list-style: none;
  padding: 1.3rem 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.22s ease;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding-bottom: 1.3rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ─── PHOTO SECTION BACKGROUNDS ─────────────────────────────── */
/* Shared setup for sections with subtle photo textures */
.section-photo {
  position: relative;
}
.section-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.065;
  pointer-events: none;
}

/* "What is DROP" — colonnade/architecture */
.section-what::before {
  background-image: url('bg-arch.jpg');
  background-position: center bottom;
}

/* "What we look for" — empty lit studio/stage */
.section-signal::before {
  background-image: url('bg-studio.jpg');
  background-position: center;
  opacity: 0.07;
}

/* "After submission" — wet structured street */
.section-process::before {
  background-image: url('bg-street.jpg');
  background-position: center 40%;
  opacity: 0.07;
}

/* ─── SECTION: FINAL CTA ─────────────────────────────────────── */
.section-cta {
  border-bottom: none;
  text-align: center;
  position: relative;
  background-image: url('bg-city.jpg');
  background-size: cover;
  background-position: center top;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.87);
  pointer-events: none;
}

.section-cta .container {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.cta-sub {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  letter-spacing: 0.02em;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cta-note {
  font-size: 0.77rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  position: relative;
  margin-top: 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(35% 128px at 50% 0%, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(33%, 320px);
  height: 1px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(6px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.footer-logo-img {
  width: 72px;
  height: auto;
  filter: none;
  display: block;
}

.footer-tagline {
  max-width: 320px;
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0;
  text-transform: none;
}

.footer-legal {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-nav-group h3 {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.footer-nav-group ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav-group a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-group a:visited {
  color: rgba(255, 255, 255, 0.56);
}

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

.footer-nav-group a:focus-visible {
  outline: 2px solid rgba(254, 1, 15, 0.65);
  outline-offset: 3px;
  border-radius: 4px;
}

.footer-link-icon {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.8;
  flex: 0 0 auto;
}

/* ─── APPLY PAGE ─────────────────────────────────────────────── */
.apply-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  border-bottom: 1px solid var(--border);
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.9) 100%),
    url('bg-studio.jpg');
  background-size: cover;
  background-position: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  transition: color 0.15s;
}
.back-link:hover { color: var(--text); }

.apply-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.apply-hero .lead {
  max-width: 560px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.apply-hero .micro {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 0.75rem;
  letter-spacing: 0.04em;
}

/* Lane cards */
.lane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.lane-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s ease;
}

.lane-card:hover { background: rgba(254,1,15,0.03); }
.lane-card:nth-child(3n)        { border-right: none; }
.lane-card:nth-last-child(-n+3) { border-bottom: none; }

.lane-card h3 {
  font-size: 1rem;
  font-weight: 700;
}

.lane-card p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.check-list li::before {
  content: '→';
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.05em;
  font-weight: 700;
}

.check-list li:last-child { border-bottom: none; }

/* Before you submit */
.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.prep-grid h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.prep-grid p {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.warning-note {
  margin-top: 1.5rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(254,1,15,0.25);
  border-left: 3px solid var(--accent);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Tally form embed */
.tally-embed-wrap {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.015);
}

.tally-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: none;
}

/* ─── CONFIRMATION PAGE ──────────────────────────────────────── */
.confirm-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.85) 100%),
    url('bg-arch.jpg');
  background-size: cover;
  background-position: center;
}

.confirm-inner {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.confirm-mark {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 2rem;
  display: block;
}

.confirm-inner h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.confirm-inner p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 0.75rem;
}

.confirm-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.confirm-note {
  margin-top: 1.5rem;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ─── NAV: secondary link ────────────────────────────────────── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
}

.nav-actions > * {
  flex-shrink: 0;
}

.nav-actions .lang-toggle {
  margin-right: 0.15rem;
}


.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-mid);
  background: rgba(255,255,255,0.02);
  color: var(--text);
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  height: 100%;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.mobile-link {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 0.85rem 0.9rem;
  border-radius: 4px;
}

.mobile-link:hover {
  border-color: var(--border-mid);
  color: var(--accent);
}

.mobile-cta {
  margin-top: 0.4rem;
  width: 100%;
}

body.nav-open {
  overflow: hidden;
}

.nav-text-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-text-link:hover { color: var(--text); }

/* ─── INVESTOR PAGE ──────────────────────────────────────────── */

/* Hero — bridge through jungle: nature meeting infrastructure */
.inv-hero {
  background-image: url('bg-bridge.jpg');
  background-position: center 40%;
}

.inv-hero-bg {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.58) 45%, rgba(0,0,0,0.95) 100%);
}

.inv-eyebrow { color: var(--accent); }

/* Creator page section backgrounds (original set) */
.section-arch::before   { background-image: url('bg-arch.jpg'); }
.section-studio::before { background-image: url('bg-studio.jpg'); opacity: 0.07; }
.section-street::before { background-image: url('bg-street.jpg'); background-position: center 40%; opacity: 0.07; }
.section-city::before   { background-image: url('bg-city.jpg'); }

/* Investor page section backgrounds (new photo set) */
.section-inv-mask::before   { background-image: url('bg-mask.jpg');   background-position: center 30%; opacity: 0.07; }
.section-inv-stage::before  { background-image: url('bg-stage.jpg');  background-position: center; opacity: 0.08; }
.section-inv-figure::before { background-image: url('bg-figure.jpg'); background-position: center 40%; opacity: 0.07; }
.section-inv-hands::before  { background-image: url('bg-hands.jpg');  background-position: center 60%; opacity: 0.08; }
.section-inv-bridge::before { background-image: url('bg-bridge.jpg'); background-position: center 50%; opacity: 0.065; }

/* Problem grid — 3 columns, open bordered */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  margin-bottom: 1.75rem;
}

.problem-card {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s ease;
}
.problem-card:last-child { border-right: none; }
.problem-card:hover { background: rgba(254,1,15,0.03); }

.problem-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.problem-card p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.62;
}

.accent-note { color: var(--accent); font-style: normal; font-weight: 600; }

/* Asset types grid */
.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.asset-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background 0.2s ease;
}
.asset-card:last-child { border-right: none; }
.asset-card:hover { background: rgba(254,1,15,0.03); }

.asset-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(254,1,15,0.3);
  padding: 0.2rem 0.5rem;
  margin-bottom: 1.25rem;
}

.asset-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.asset-card p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Investor process — same base as .process-grid + step tag */
.inv-process-grid .step-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(254,1,15,0.3);
  padding: 0.18rem 0.45rem;
  margin-bottom: 0.75rem;
}

/* Asset criteria list */
.criteria-intro {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.criteria-list { display: flex; flex-direction: column; }

.criteria-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.criteria-item:first-child { border-top: 1px solid var(--border); }

.criteria-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.criteria-item p {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Pipeline stats */
.pipeline-section { border-bottom: 1px solid var(--border); }

.pipeline-stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.pipeline-stat {
  flex: 1;
  padding: 2rem 1.75rem;
}

.pipeline-divider {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.pipeline-stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.pipeline-stat span {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}

.pipeline-sub {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* Entry points — 3 cards */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.entry-card {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.2s ease;
}
.entry-card:last-child { border-right: none; }
.entry-card:hover { background: rgba(255,255,255,0.02); }

.entry-card--investor { background: rgba(254,1,15,0.03); }
.entry-card--investor:hover { background: rgba(254,1,15,0.055); }

.entry-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.entry-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.entry-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.entry-card > p:not(.entry-tag) {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.75rem;
}

.entry-btn {
  align-self: flex-start;
  font-size: 0.72rem;
  padding: 0.65rem 1.25rem;
}

/* Engagement tiers */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.engage-tier {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.engage-tier:last-child { border-right: none; }

.engage-tier--featured {
  background: rgba(254,1,15,0.04);
  border-left: 2px solid var(--accent);
  border-right: 1px solid var(--border);
}

.engage-level {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.engage-tier h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.engage-desc {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.engage-scope {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.engage-scope span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.engage-scope span::before {
  content: '→ ';
  color: var(--accent);
}

/* Investor CTA — hands reaching up = reaching for capital */
.inv-cta {
  background-image: url('bg-hands.jpg');
  background-position: center 60%;
}

/* ─── INLINE VISUAL SYSTEM ──────────────────────────────────── */
.section-visual {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.visual-divider {
  border: 1px solid var(--border);
  background: #050505;
}

.visual-divider img,
.visual-divider video {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.visual-divider video {
  filter: contrast(1.06) saturate(0.98);
}

.visual-caption {
  padding: 0.8rem 1rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.media-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.media-block {
  border: 1px solid var(--border);
  min-height: 100%;
  background: #070707;
}

.media-block img,
.media-block video {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  display: block;
}

.media-block video {
  filter: contrast(1.06) saturate(0.98);
}

.media-panel {
  border: 1px solid var(--border);
  padding: 2rem;
  background: rgba(255,255,255,0.01);
}

.media-panel h3 {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.media-panel p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 0.85rem;
}

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

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.photo-tile {
  border: 1px solid var(--border);
  background: #080808;
}

.photo-tile img,
.photo-tile video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.photo-tile video {
  filter: contrast(1.06) saturate(0.98);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .nav-actions {
    gap: 0.55rem;
  }

  .nav-text-link {
    font-size: 0.69rem;
    letter-spacing: 0.06em;
  }

  .btn-nav {
    padding: 0.38rem 0.9rem;
  }

  .lang-toggle {
    min-width: 96px;
  }

  .lang-toggle-btn {
    font-size: 0.64rem;
    padding: 0.58rem 0.72rem;
  }
}

@media (max-width: 960px) {
  .drop-network-head,
  .drop-system-layout,
  .what-layout,
  .signal-layout,
  .isnot-grid,
  .prep-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Investor grids → 1 column on tablet */
  .problem-grid,
  .asset-grid,
  .entry-grid,
  .engage-grid {
    grid-template-columns: 1fr;
  }
  .problem-card,
  .asset-card,
  .entry-card,
  .engage-tier {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .problem-card:last-child,
  .asset-card:last-child,
  .entry-card:last-child,
  .engage-tier:last-child { border-bottom: none; }

  .pipeline-stats {
    flex-direction: column;
  }
  .pipeline-divider {
    width: auto;
    height: 1px;
  }

  .isnot-divider { display: none; }

  .drop-system-visual {
    justify-content: flex-start;
  }

  .drop-network-head {
    display: block;
  }

  .drop-network-copy .section-title {
    max-width: 14ch;
  }

  .drop-network-head .drop-network-toggle-wrap {
    margin-top: 0;
  }

  .drop-network-visual-frame {
    min-height: 0;
    margin-top: 1.35rem;
    margin-left: 0;
    padding: 0;
  }

  .drop-network-sphere {
    width: min(100%, 780px);
    height: 540px;
  }

  .drop-network-detail {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .drop-system-shell {
    min-height: 330px;
  }

  .drop-system-pill-right {
    right: 0.85rem;
    top: 1.35rem;
  }

  .who-grid,
  .lane-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-card:nth-child(3n),
  .lane-card:nth-child(3n) {
    border-right: 1px solid var(--border);
  }
  .who-card:nth-child(2n),
  .lane-card:nth-child(2n) {
    border-right: none;
  }
  .who-card:nth-last-child(-n+3),
  .lane-card:nth-last-child(-n+3) {
    border-bottom: 1px solid var(--border);
  }
  .who-card:last-child,
  .lane-card:last-child {
    border-bottom: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .process-step:last-child { border-bottom: none; }

  .what-stat-row { gap: 2rem; }
  .signal-layout { gap: 3rem; }

  .media-split,
  .photo-grid-3,
  .photo-grid-2 {
    grid-template-columns: 1fr;
  }

  .media-block img,
  .media-block video,
  .photo-tile img,
  .photo-tile video {
    min-height: 280px;
  }
}

@media (max-width: 600px) {
  /* Nav: tighter spacing */
  .nav-inner { padding: 0 1.25rem; }

  /* Hero title: smooth scale that matches the global clamp at the 600px breakpoint (~38px).
     6.3vw @ 375px → ~23.6px but min 2rem=32px kicks in; @ 600px → ~37.8px ≈ global 38.4px */
  .hero-title { font-size: clamp(2rem, 6.3vw, 3.8rem); }

  /* Eyebrow: reduce letter-spacing so long investor text fits on one line at 375px */
  .eyebrow { font-size: 0.65rem; letter-spacing: 0.09em; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .section-title { margin-bottom: 1.75rem; }

  .drop-system-shell {
    min-height: 296px;
  }

  .drop-network-head {
    gap: 1.2rem;
  }

  .drop-network-toggle-wrap {
    width: 100%;
    max-width: 420px;
    position: relative;
    z-index: 6;
    margin: 2.4rem auto 0;
    justify-content: space-between;
  }

  .drop-network-toggle-option {
    flex: 1;
    justify-content: center;
    padding: 0.78rem 0.9rem;
  }

  .drop-network-visual-frame {
    min-height: 420px;
    margin-top: 2.9rem;
    margin-left: 0;
    padding-bottom: 0;
  }

  .drop-network-section.has-open-detail .drop-network-visual-frame {
    min-height: 720px;
  }

  .drop-network-sphere {
    width: min(100%, 360px);
    height: 340px;
    margin: 0 auto;
  }

  .drop-network-sphere.is-collapsing {
    opacity: 0.22;
    transform: scale(0.68);
    filter: blur(3px);
  }

  .drop-network-detail {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    display: block;
    width: min(calc(100% - 1rem), 352px);
    margin: 1rem auto 0;
    transform: none;
  }

  .drop-network-detail.is-hidden {
    transform: translateY(14px);
  }

  .drop-network-card {
    width: 100%;
    padding: 0.9rem;
    border-radius: 22px;
  }

  .drop-network-card-shell {
    grid-template-columns: 1fr;
  }

  .drop-network-card-image {
    width: 100%;
    aspect-ratio: 4 / 3.6;
  }

  .drop-network-card-title {
    font-size: 1.22rem;
  }

  .drop-network-card-copy {
    font-size: 0.84rem;
  }

  .drop-network-social {
    width: 38px;
  }

  .drop-system-title {
    position: static;
    margin-bottom: 0.85rem;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .drop-system-svg {
    height: 152px;
  }

  .drop-system-surface {
    bottom: 0.45rem;
  }

  .drop-system-panel {
    min-height: 198px;
    border-radius: 22px;
  }

  .drop-system-pill {
    height: 32px;
    padding: 0 0.75rem;
    font-size: 0.68rem;
  }

  .drop-system-pill-left {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 2.45rem;
    max-width: none;
    justify-content: center;
  }

  .drop-system-pill-right {
    display: inline-flex;
    left: 0.9rem;
    right: 0.9rem;
    top: 0.7rem;
    max-width: none;
    justify-content: center;
  }

  .drop-system-orbit-label {
    width: 62px;
    height: 62px;
    bottom: -1.2rem;
    font-size: 0.64rem;
  }

  .drop-system-copy p,
  .drop-system-list li {
    font-size: 0.92rem;
  }

  .who-grid,
  .lane-grid {
    grid-template-columns: 1fr;
  }
  .who-card,
  .lane-card {
    border-right: none !important;
  }

  /* CTA headline: was 18vw (67px) — way too wide for "cultural company." */
  .cta-headline { font-size: clamp(2rem, 12vw, 5.5rem); }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
  }
  .hero-scroll { display: none; }
  .what-stat-row { flex-direction: column; gap: 1.25rem; }
  .isnot-grid { grid-template-columns: 1fr; }

  /* Investor: what-layout already collapses at 960px, ensure criteria stacks */
  .what-layout { gap: 2rem; }
  .pipeline-stat { padding: 1.5rem 1.25rem; }
}

@media (max-width: 420px) {
  .footer {
    padding-top: 3rem;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .drop-network-visual-frame {
    min-height: 390px;
  }

  .drop-network-section.has-open-detail .drop-network-visual-frame {
    min-height: 720px;
  }

  .drop-network-sphere {
    width: min(100%, 328px);
    height: 308px;
  }

  .drop-network-detail {
    width: min(calc(100% - 0.8rem), 320px);
  }

  .drop-network-card {
    padding: 0.82rem;
  }

  .drop-system-pill {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 960px) {
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

