:root {
  --ink: #05070a;
  --paper: #f1efe9;
  --acid: #c6ff35;
  --blue: #071b44;
  --line: rgba(255, 255, 255, 0.16);
  --card-bg: #07090e;
}

* {
  box-sizing: border-box;
}

picture {
  display: contents;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--acid);
  color: var(--ink);
  padding: 12px 20px;
  font: 700 13px 'DM Mono', monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 3px;
}

body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: 'Manrope', Arial, sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

/* Top reading scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--acid), #00e5ff);
  z-index: 9999;
  width: 0%;
  max-width: 100vw;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Atmospheric film grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

/* Executive Navigation Bar */
.nav {
  height: 86px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: background 0.3s, height 0.3s, border-color 0.3s;
}

.nav.scrolled {
  height: 74px;
  background: rgba(5, 7, 10, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.mark {
  color: white;
  text-decoration: none;
  font: 700 22px 'Syne', sans-serif;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.02em;
}

.mark i {
  width: 7px;
  height: 7px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--acid);
}

/* Nav HUD: Live IST Time & Location */
.nav-hud {
  display: flex;
  align-items: center;
  gap: 16px;
  font: 400 11px/1 'DM Mono', monospace;
  letter-spacing: 0.12em;
  color: #94a3b8;
}

.pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--acid);
  animation: pulseGlow 2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: 5px;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); }
}

.nav nav {
  display: flex;
  gap: 32px;
}

.mobile-nav-top,
.mobile-nav-actions,
.mobile-nav-footer {
  display: none;
}

.nav nav a,
.contact-link,
.secondary-link,
footer a {
  color: inherit;
  text-decoration: none;
}

.nav nav a {
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav nav a:hover,
.nav nav a.active {
  color: #fff;
}

.nav nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--acid);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Command Menu Trigger Button (Desktop) */
.cmd-trigger {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #cbd5e1;
  padding: 6px 10px;
  border-radius: 6px;
  font: 500 11px 'DM Mono', monospace;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.cmd-trigger:hover {
  background: rgba(198, 255, 53, 0.12);
  border-color: var(--acid);
  color: var(--acid);
  transform: translateY(-1px);
}

.cmd-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 10px;
}

/* Sound Experience Toggle */
.sound-toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.sound-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--acid);
}

.sound-bars {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 12px;
}

.sound-bars span {
  width: 2px;
  height: 4px;
  background: #64748b;
  border-radius: 1px;
  transition: height 0.2s, background 0.2s;
}

.sound-toggle.active .sound-bars span {
  background: var(--acid);
  animation: soundBarWave 0.8s ease-in-out infinite alternate;
}

.sound-toggle.active .sound-bars span:nth-child(1) { animation-delay: 0.1s; height: 6px; }
.sound-toggle.active .sound-bars span:nth-child(2) { animation-delay: 0.3s; height: 12px; }
.sound-toggle.active .sound-bars span:nth-child(3) { animation-delay: 0.2s; height: 9px; }
.sound-toggle.active .sound-bars span:nth-child(4) { animation-delay: 0.4s; height: 5px; }

@keyframes soundBarWave {
  from { transform: scaleY(0.4); }
  to { transform: scaleY(1.3); }
}

.menu {
  display: none;
  background: none;
  border: 0;
  padding: 12px;
  cursor: pointer;
}

.menu span {
  display: block;
  width: 24px;
  height: 1px;
  background: white;
  margin: 6px;
  transition: transform 0.2s;
}

/* Hero Section */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 51% 49%;
  position: relative;
  background: linear-gradient(135deg, #020305 10%, #07132c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 40%, rgba(198, 255, 53, 0.035), transparent 45%),
              radial-gradient(circle at 85% 25%, rgba(20, 55, 140, 0.22), transparent 50%);
  pointer-events: none;
}

.hero-copy {
  padding: 20vh 4vw 6vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-no {
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.16em;
  color: var(--acid);
}

.hero h1 {
  font: 700 clamp(4.2rem, 8.2vw, 9.5rem)/0.79 'Syne', sans-serif;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.075em;
}

.hero h1 em,
.contact h2 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 580px;
}

.hero-foot p {
  font: 300 14px/1.7 'DM Mono', monospace;
  color: #adb5c5;
}

.round-link {
  border: 1px solid rgba(255, 255, 255, 0.35);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
}

.round-link:hover {
  background: var(--acid);
  color: var(--ink);
  transform: rotate(-20deg) scale(1.05);
}

.hero-image {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue), transparent 27%);
  mix-blend-mode: multiply;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image figcaption {
  position: absolute;
  z-index: 2;
  bottom: 4vh;
  left: 4vw;
  right: 4vw;
  display: flex;
  justify-content: space-between;
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.12em;
}

.side-type {
  position: absolute;
  right: 17px;
  top: 50%;
  margin: 0;
  z-index: 4;
  writing-mode: vertical-rl;
  font: 300 12px 'DM Mono', monospace;
  letter-spacing: 0.17em;
}

/* Statement (Mindset) */
.statement {
  background: var(--paper);
  color: var(--ink);
  padding: 9rem 4vw;
}

.statement .section-no,
.ventures .section-no {
  color: #59606d;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 7vw;
  align-items: end;
  margin: 5rem 0;
}

.statement h2,
.ventures h2,
.contact h2,
.venture-intro h2,
.journey-heading h2 {
  font: 700 clamp(3.4rem, 7vw, 8rem)/0.9 'Syne', sans-serif;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  margin: 0;
}

.statement h2 span,
.venture-intro h2 span {
  color: #8b8b87;
}

.statement-copy {
  max-width: 540px;
}

.statement-copy p,
.venture-copy > p {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.75;
  color: #54565b;
}

.signature {
  font: italic 38px Georgia, serif;
  margin-top: 2rem;
}

.bw-frame {
  height: 76vh;
  overflow: hidden;
}

.bw-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.bw-frame:hover img {
  transform: scale(1.025);
}

/* Principles */
.principles {
  padding: 9rem 4vw;
}

.principle-row {
  display: grid;
  grid-template-columns: 70px 1fr 0.45fr;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 2.3rem 0;
  transition: background 0.3s, padding-left 0.3s;
}

.principle-row:hover {
  background: rgba(255, 255, 255, 0.02);
  padding-left: 8px;
}

.principle-row:last-child {
  border-bottom: 1px solid var(--line);
}

.principle-row span {
  font: 400 12px 'DM Mono', monospace;
  color: var(--acid);
}

.principle-row h3 {
  font: 600 clamp(2rem, 3.7vw, 4.5rem) 'Syne', sans-serif;
  margin: 0;
  letter-spacing: -0.04em;
}

.principle-row p {
  color: #969ca8;
  font-size: 1rem;
  line-height: 1.55;
}

/* Executive Metrics Strip */
.metrics {
  background: #030508;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 4vw;
  position: relative;
  overflow: hidden;
}

.metrics::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(198, 255, 53, 0.045), transparent 70%);
  pointer-events: none;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.metric-card {
  padding: 2.4rem 1.8rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}

.metric-card:hover {
  border-color: rgba(198, 255, 53, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.metric-val {
  font: 700 clamp(2.4rem, 4vw, 3.8rem)/1 'Syne', sans-serif;
  letter-spacing: -0.04em;
  color: #fff;
  display: flex;
  align-items: baseline;
}

.metric-plus {
  color: var(--acid);
  font-size: 0.65em;
  margin-left: 2px;
}

.metric-text {
  font: 700 clamp(2rem, 3.2vw, 3.2rem)/1 'Syne', sans-serif;
  color: var(--acid);
}

.metric-label {
  font: 600 1.05rem 'Syne', sans-serif;
  margin: 0.9rem 0 0.35rem;
  color: #f1efe9;
  letter-spacing: -0.02em;
}

.metric-sub {
  font: 400 11px/1.5 'DM Mono', monospace;
  color: #858b96;
  letter-spacing: 0.04em;
}

/* Ventures Section */
.ventures {
  background: var(--acid);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 100vh;
}

.venture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.05);
}

.venture-copy {
  padding: 8rem 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.venture-copy h2 {
  margin: 3rem 0;
}

.venture-copy > p {
  color: #273018;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2rem;
}

.tags span {
  border: 1px solid #1d2810;
  border-radius: 999px;
  padding: 10px 14px;
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.06em;
}

/* Selected Ventures Grid */
.venture-list {
  padding: 10rem 4vw;
  background: #0a0c10;
}

.venture-intro {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 4vw;
  align-items: start;
  margin-bottom: 6rem;
}

.venture-intro h2 {
  font-size: clamp(3.2rem, 6.5vw, 7.5rem);
}

.venture-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  position: relative;
}

.venture-card {
  min-height: 390px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  transition: background 0.3s, border-color 0.3s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(350px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(198, 255, 53, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.venture-card:hover .card-glow {
  opacity: 1;
}

.venture-card:hover {
  border-color: rgba(198, 255, 53, 0.3);
}

.venture-card > span,
.venture-card strong {
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.12em;
  position: relative;
  z-index: 2;
}

.venture-card > span {
  color: var(--acid);
}

.venture-card h3 {
  font: 600 clamp(1.5rem, 2vw, 2.2rem)/1.08 'Syne', sans-serif;
  letter-spacing: -0.035em;
  margin: 3rem 0 1.5rem;
  position: relative;
  z-index: 2;
}

.venture-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: #a5aab4;
  margin: 0 0 2rem;
  position: relative;
  z-index: 2;
}

.venture-card strong {
  margin-top: auto;
  color: white;
  position: relative;
  z-index: 2;
}

.venture-card a {
  color: var(--acid);
  font: 400 12px 'DM Mono', monospace;
  text-decoration: none;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.venture-card a:hover {
  text-decoration: underline;
}

/* Journey (Timeline) */
.journey {
  padding: 10rem 4vw;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
  background: var(--paper);
  color: var(--ink);
}

.journey-heading {
  position: sticky;
  top: 6rem;
  align-self: start;
}

.journey-heading .section-no {
  color: #59606d;
}

.journey-heading h2 {
  font-size: clamp(3rem, 5.2vw, 6rem);
  margin-top: 3rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2.4rem 0;
  border-top: 1px solid rgba(5, 7, 10, 0.25);
  transition: padding-left 0.25s;
}

.timeline article:hover {
  padding-left: 8px;
}

.timeline article:last-child {
  border-bottom: 1px solid rgba(5, 7, 10, 0.25);
}

.timeline time {
  font: 400 12px 'DM Mono', monospace;
  color: #62666d;
}

.timeline h3 {
  font: 600 clamp(1.3rem, 2vw, 2rem) 'Syne', sans-serif;
  margin: 0 0 0.8rem;
}

.timeline p {
  font-size: 1rem;
  line-height: 1.6;
  color: #63676c;
  margin: 0;
}

.timeline .education {
  margin-top: 3rem;
  border-top: 3px solid var(--ink);
}

/* Gallery */
.gallery {
  background: var(--paper);
  color: var(--ink);
  padding: 10rem 4vw;
  display: grid;
  grid-template-columns: 0.8fr 0.55fr 0.65fr;
  gap: 5vw;
  align-items: center;
}

.gallery figure {
  margin: 0;
}

.gallery img {
  width: 100%;
  display: block;
  filter: saturate(0.78);
  transition: filter 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery figure:hover img {
  filter: saturate(1);
  transform: scale(1.02);
}

.gallery figcaption {
  font: 400 12px 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 1rem;
}

.gallery-center p {
  font: 600 clamp(1.8rem, 3vw, 3.2rem)/1.15 'Syne', sans-serif;
  letter-spacing: -0.04em;
}

.gallery-center span {
  font: 400 12px 'DM Mono', monospace;
}

.short {
  transform: translateY(6rem);
}

/* Closing Section */
.closing {
  height: 100svh;
  position: relative;
  overflow: hidden;
  background: #030303;
}

.closing-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  opacity: 0.72;
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), transparent 64%);
}

.closing-copy {
  position: absolute;
  z-index: 2;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
}

.closing-copy p {
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.18em;
  color: var(--acid);
}

.closing-copy h2 {
  font: 700 clamp(4.5rem, 11vw, 12rem)/0.78 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.08em;
  margin: 2rem 0;
}

.orbit {
  position: absolute;
  right: 6vw;
  bottom: 7vh;
  z-index: 2;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: grid;
  place-items: center;
  animation: spin 14s linear infinite;
}

.orbit span {
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.1em;
  width: 110px;
  text-align: center;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Contact Section */
.contact {
  padding: 11rem 4vw 6rem;
}

.contact h2 {
  margin: 5rem 0 3rem;
}

.contact-note {
  color: #9ba0aa;
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-actions {
  margin-top: 4rem;
}

.contact-link {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 500 clamp(1.2rem, 2.6vw, 2.5rem) 'Syne', sans-serif;
  transition: 0.3s;
}

.contact-link:hover {
  color: var(--acid);
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-badge {
  font: 400 12px 'DM Mono', monospace;
  color: var(--acid);
  letter-spacing: 0.1em;
  background: rgba(198, 255, 53, 0.08);
  border: 1px solid rgba(198, 255, 53, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.secondary-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.copy-email-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font: 500 12px 'DM Mono', monospace;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.2s;
}

.copy-email-btn:hover {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
  transform: translateY(-1px);
}

.secondary-link {
  display: inline-block;
  color: #aeb4bf;
  font: 400 12px 'DM Mono', monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.secondary-link:hover {
  color: #fff;
}

/* Footer */
footer {
  padding: 2.5rem 4vw;
  display: flex;
  justify-content: space-between;
  font: 300 12px 'DM Mono', monospace;
  letter-spacing: 0.12em;
  color: #858b96;
  border-top: 1px solid var(--line);
}

/* Reveal Transitions */
.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* Command Palette Modal */
.cmd-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.cmd-modal.open {
  display: flex;
}

.cmd-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 8, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cmd-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  background: #090d14;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(198, 255, 53, 0.06);
  border-radius: 12px;
  overflow: hidden;
  animation: cmdPop 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cmdPop {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

.cmd-search-wrap {
  display: flex;
  align-items: center;
  padding: 15px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 12px;
}

.cmd-search-icon {
  font-size: 16px;
  color: var(--acid);
}

.cmd-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font: 500 15px 'Manrope', sans-serif;
  color: #fff;
}

.cmd-search-input::placeholder {
  color: #64748b;
}

.cmd-kbd {
  font: 400 10px 'DM Mono', monospace;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 3px 6px;
  color: #94a3b8;
}

.cmd-list {
  max-height: 340px;
  overflow-y: auto;
  padding: 8px;
}

.cmd-group-title {
  font: 600 10px 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  padding: 8px 10px 4px;
}

.cmd-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  border-radius: 6px;
  color: #e2e8f0;
  font: 500 13px 'Manrope', sans-serif;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.cmd-item:hover,
.cmd-item.active {
  background: rgba(198, 255, 53, 0.12);
  color: #fff;
}

.cmd-item-icon {
  font: 400 11px 'DM Mono', monospace;
  color: var(--acid);
  min-width: 16px;
}

.cmd-item-text {
  flex: 1;
}

.cmd-item-tag {
  font: 400 10px 'DM Mono', monospace;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px 7px;
  border-radius: 3px;
  color: #94a3b8;
}

.cmd-footer {
  display: flex;
  justify-content: space-between;
  padding: 11px 16px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font: 400 11px 'DM Mono', monospace;
  color: #64748b;
}

.cmd-footer kbd {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 4px;
  border-radius: 3px;
  color: #cbd5e1;
}

/* Floating Toast Notification */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: rgba(9, 13, 20, 0.96);
  border: 1px solid var(--acid);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(198, 255, 53, 0.2);
  padding: 10px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  max-width: calc(100vw - 40px);
  box-sizing: border-box;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.toast-icon {
  color: var(--acid);
  font-weight: 700;
  font-size: 14px;
}

.toast-msg {
  font: 500 12.5px 'DM Mono', monospace;
  color: #fff;
  letter-spacing: 0.04em;
}

/* Custom Magnetic Cursor (Desktop only) */
@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    pointer-events: none;
    z-index: 999999;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .custom-cursor.active {
    opacity: 1;
  }
  .cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--acid);
    border-radius: 50%;
    position: absolute;
    top: -3px;
    left: -3px;
    transform: translate3d(var(--cx, 50vw), var(--cy, 50vh), 0);
    transition: transform 0.04s linear;
    pointer-events: none;
  }
  .cursor-ring {
    width: 34px;
    height: 34px;
    border: 1.5px solid rgba(198, 255, 53, 0.6);
    border-radius: 50%;
    position: absolute;
    top: -17px;
    left: -17px;
    transform: translate3d(var(--rx, 50vw), var(--ry, 50vh), 0);
    transition: width 0.2s, height 0.2s, top 0.2s, left 0.2s, background 0.2s, border-color 0.2s;
    pointer-events: none;
  }
  .custom-cursor.hovering .cursor-ring {
    width: 54px;
    height: 54px;
    top: -27px;
    left: -27px;
    background: rgba(198, 255, 53, 0.12);
    border-color: var(--acid);
  }
}

@media (hover: none), (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

/* -------------------------------------------------------------
   MOBILE & RESPONSIVE DESIGN (Flawless UX & 0px Overflow)
   ------------------------------------------------------------- */
@media (max-width: 800px) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .desktop-only {
    display: none !important;
  }

  .nav {
    height: 68px;
    position: fixed;
    padding: 0 20px;
  }

  .nav.scrolled {
    height: 68px;
  }

  .nav-hud {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    cursor: pointer;
  }

  .menu span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: white;
    margin: 3px 0;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav.open .menu {
    background: rgba(198, 255, 53, 0.15);
    border-color: var(--acid);
  }

  /* Full-Screen Luxury Mobile Drawer */
  .nav nav {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100svh;
    background: #05070a;
    backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    padding: 20px 20px max(24px, env(safe-area-inset-bottom));
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
    animation: mobileNavFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes mobileNavFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: none; }
  }

  .nav.open nav {
    display: flex;
  }

  .mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav-hud {
    display: flex;
    align-items: center;
    gap: 10px;
    font: 400 11px 'DM Mono', monospace;
    letter-spacing: 0.08em;
    color: #94a3b8;
  }

  .mobile-hud-time {
    color: var(--acid);
  }

  .mobile-close-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
  }

  .mobile-close-btn:hover {
    background: var(--acid);
    color: var(--ink);
    border-color: var(--acid);
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 20px 0;
  }

  .mobile-nav-links .nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    font: 600 clamp(1.3rem, 5.5vw, 1.8rem) 'Syne', sans-serif;
    color: #f1efe9;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    text-transform: none;
    letter-spacing: -0.02em;
  }

  .mobile-nav-links .nav-link:hover,
  .mobile-nav-links .nav-link.active {
    background: rgba(198, 255, 53, 0.08);
    border-color: rgba(198, 255, 53, 0.25);
    color: var(--acid);
  }

  .mobile-nav-links .nav-link.active::after {
    display: none;
  }

  .nav-idx {
    font: 400 11px 'DM Mono', monospace;
    color: var(--acid);
    background: rgba(198, 255, 53, 0.1);
    padding: 2px 5px;
    border-radius: 4px;
  }

  .mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-copy-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font: 500 12px 'DM Mono', monospace;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
  }

  .mobile-copy-btn:hover {
    background: var(--acid);
    color: var(--ink);
    border-color: var(--acid);
  }

  .mobile-copy-badge {
    font-size: 10px;
    background: rgba(198, 255, 53, 0.18);
    color: var(--acid);
    padding: 2px 7px;
    border-radius: 4px;
  }

  .mobile-copy-btn:hover .mobile-copy-badge {
    background: var(--ink);
    color: var(--acid);
  }

  .mobile-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .mobile-pill-btn {
    flex: 1 1 auto;
    min-height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: #cbd5e1;
    font: 500 11px 'DM Mono', monospace;
    padding: 8px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  .mobile-pill-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }

  .mobile-nav-footer {
    display: flex;
    justify-content: space-between;
    font: 400 11px 'DM Mono', monospace;
    color: #64748b;
    padding-top: 12px;
    letter-spacing: 0.08em;
  }

  /* Hero Mobile Adaptations */
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 68svh;
    padding: 100px 20px 32px;
    gap: 32px;
  }

  .eyebrow,
  .section-no {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero h1 {
    font-size: min(5rem, calc((100vw - 48px) / 6.8));
    line-height: 0.84;
    letter-spacing: -0.07em;
  }

  .hero-foot {
    align-items: end;
  }

  .hero-foot p {
    font-size: 13px;
    line-height: 1.65;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 250px;
  }

  .round-link {
    width: 52px;
    height: 52px;
    flex: 0 0 auto;
  }

  .hero-image {
    height: 64svh;
  }

  .hero-image img {
    object-position: 63% center;
  }

  .hero-image::after {
    background: linear-gradient(180deg, #071b44, transparent 28%, rgba(0, 0, 0, 0.25));
  }

  .hero-image figcaption {
    bottom: 20px;
    left: 20px;
    right: 20px;
    font-size: 12px;
  }

  .side-type {
    display: none;
  }

  /* Statement Mobile */
  .statement {
    padding: 75px 20px;
  }

  .statement-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 32px 0 42px;
  }

  .statement h2,
  .contact h2 {
    font-size: min(4.4rem, calc((100vw - 48px) / 5.6));
    line-height: 0.9;
  }

  .ventures h2 {
    font-size: min(4.4rem, calc((100vw - 48px) / 6.8));
    line-height: 0.9;
  }

  .venture-intro h2 {
    font-size: min(4.4rem, calc((100vw - 48px) / 9.2));
    line-height: 0.9;
  }

  .journey-heading h2 {
    font-size: min(4.4rem, calc((100vw - 48px) / 7.6));
    line-height: 0.9;
  }

  .statement-copy p,
  .venture-copy > p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .bw-frame {
    height: 52svh;
  }

  .bw-frame img {
    object-position: 61% center;
  }

  /* Principles Mobile */
  .principles {
    padding: 72px 20px;
  }

  .principle-row {
    grid-template-columns: 34px 1fr;
    padding: 22px 0;
  }

  .principle-row h3 {
    font-size: clamp(1.5rem, 7.2vw, 2.2rem);
    line-height: 1.05;
  }

  .principle-row p {
    grid-column: 2;
    margin: 10px 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  /* Metrics 2x2 Grid on Mobile */
  .metrics {
    padding: 60px 20px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric-card {
    padding: 18px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.025);
  }

  .metric-val {
    font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  }

  .metric-text {
    font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  }

  .metric-label {
    font-size: 0.92rem;
    margin: 0.6rem 0 0.25rem;
  }

  .metric-sub {
    font-size: 10px;
    line-height: 1.4;
  }

  /* Ventures Mobile */
  .ventures {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .venture-image {
    height: 52svh;
  }

  .venture-image img {
    object-position: 59% center;
  }

  .venture-copy {
    padding: 65px 20px;
  }

  .venture-copy h2 {
    margin: 28px 0;
  }

  .tags span {
    font-size: 11px;
    padding: 8px 12px;
  }

  /* Venture Cards Mobile (Clean tactile cards) */
  .venture-list {
    padding: 70px 20px;
  }

  .venture-intro {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .venture-cards {
    grid-template-columns: 1fr;
    border: 0;
    gap: 14px;
  }

  .venture-card {
    min-height: auto;
    padding: 24px 20px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
  }

  .venture-card h3 {
    font-size: 1.65rem;
    margin: 24px 0 12px;
  }

  .venture-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1.5rem;
  }

  /* Journey Mobile */
  .journey {
    padding: 75px 20px;
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .journey-heading {
    position: static;
  }

  .journey-heading h2 {
    margin-top: 24px;
  }

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 24px 0;
  }

  .timeline .education {
    margin-top: 28px;
  }

  /* Gallery Mobile */
  .gallery {
    padding: 75px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .gallery-center {
    grid-column: 1 / -1;
    grid-row: 1;
    margin-bottom: 24px;
  }

  .gallery-center p {
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
    margin-top: 0;
  }

  .gallery figcaption {
    font-size: 11px;
  }

  .short {
    transform: translateY(28px);
  }

  /* Closing Mobile */
  .closing {
    height: 75svh;
    min-height: 560px;
  }

  .closing-image {
    object-position: 64% center;
  }

  .closing-copy {
    left: 20px;
  }

  .closing-copy h2 {
    font-size: min(6.5rem, calc((100vw - 48px) / 6.4));
  }

  .orbit {
    width: 98px;
    height: 98px;
    right: 20px;
    bottom: 22px;
  }

  .orbit span {
    font-size: 9.5px;
    width: 74px;
  }

  /* Contact Mobile */
  .contact {
    padding: 75px 20px 50px;
  }

  .contact h2 {
    margin: 36px 0 24px;
  }

  .contact-note {
    font-size: 0.95rem;
  }

  .contact-actions {
    margin-top: 36px;
  }

  .contact-link {
    padding: 18px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .contact-email-text {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    word-break: break-all;
  }

  .contact-badge {
    font-size: 10px;
    padding: 4px 10px;
  }

  .secondary-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 1.5rem;
  }

  .copy-email-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 12px;
  }

  .secondary-link {
    justify-content: center;
    min-height: 44px;
  }

  footer {
    padding: 26px 20px;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 11px;
  }

  footer span:nth-child(2) {
    display: none;
  }
}

/* Very narrow phones (<= 350px, e.g. iPhone SE 1st gen, Galaxy Fold outer screen) */
@media (max-width: 350px) {
  .hero h1 {
    font-size: min(3rem, calc((100vw - 44px) / 7));
  }
  .hero-foot p {
    max-width: 190px;
  }
  .metrics-grid {
    gap: 8px;
  }
  .metric-card {
    padding: 14px 10px;
  }
  .metric-val {
    font-size: 1.55rem;
  }
  .metric-text {
    font-size: 1.55rem;
  }
  .metric-label {
    font-size: 0.85rem;
  }
  .metric-sub {
    font-size: 9.5px;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery-center {
    grid-column: 1;
  }
  .short {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .orbit {
    animation: none;
  }
  .pulse-dot {
    animation: none;
  }
  .sound-toggle.active .sound-bars span {
    animation: none;
  }
}
