:root {
  --bg: #08070a;
  --bg-alt: #0d0b10;
  --surface: rgba(255, 255, 255, .045);
  --surface-strong: rgba(255, 255, 255, .09);
  --border: rgba(255, 255, 255, .10);
  --border-strong: rgba(255, 255, 255, .20);
  --text: #f6f3ec;
  --text-dim: #a49c8c;
  --text-faint: #6c655a;

  /* Orbit accent: brand blue/cyan (matches the IT Gurujan logo mark) core glow + icy white
     orbit rings. Individual planets keep their own realistic colours (Mars stays red, Saturn
     stays pale gold, etc.) — only the Sun/Core and all site chrome use this brand hue. */
  --gold: #2B7FD1;
  --gold-bright: #5FC3E8;
  --gold-deep: #1A2F6B;
  --ice: #d9e6ff;
  --ice-dim: rgba(217, 230, 255, .55);

  --accent: var(--gold);
  --accent-2: var(--gold-bright);
  --gradient: linear-gradient(135deg, #2B7FD1, #1A2F6B);
  --gradient-warm: linear-gradient(135deg, #2B7FD1, #5FC3E8);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --depth-sm: 0 2px 6px rgba(0,0,0,.4), 0 1px 0 rgba(255,255,255,.05) inset;
  --depth-md: 0 2px 4px rgba(0,0,0,.4), 0 16px 32px -12px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.06) inset;
  --depth-lg: 0 4px 8px rgba(0,0,0,.45), 0 40px 80px -24px rgba(0,0,0,.7), 0 1px 0 rgba(255,255,255,.07) inset;
  --glow-accent: 0 0 1px rgba(43,127,209,.85), 0 0 50px -6px rgba(43,127,209,.55);
  --max-w: 1180px;
  --pad-x: clamp(20px, 5vw, 64px);
  --persp: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
h1, h2, h3, h4 { font-family: 'Sora', 'Inter', sans-serif; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #08070a; }

/* faint fixed starfield dusting behind everything, incl. the conventional sections below the flythrough */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 18% 26%, rgba(255,255,255,.45), transparent),
    radial-gradient(1px 1px at 68% 58%, rgba(255,255,255,.3), transparent),
    radial-gradient(1.5px 1.5px at 38% 78%, rgba(255,255,255,.35), transparent),
    radial-gradient(1px 1px at 88% 18%, rgba(255,255,255,.28), transparent),
    radial-gradient(1px 1px at 52% 42%, rgba(255,255,255,.28), transparent);
  opacity: .5;
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--gradient-warm); z-index: 300; transition: width .1s linear;
  box-shadow: 0 0 12px rgba(43,127,209,.7);
}

.orbit-ambient { position: fixed; border-radius: 50%; filter: blur(110px); z-index: 0; pointer-events: none; }
.orbit-ambient-1 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(43,127,209,.22), transparent 70%); top: -140px; right: -120px; }
.orbit-ambient-2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(217,230,255,.10), transparent 70%); bottom: 8%; left: -160px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 106;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  background: rgba(8, 7, 10, .62);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.logo-group { display: flex; align-items: center; gap: 9px; }
.nav-mark-img { width: 36px; height: 36px; object-fit: contain; display: block; }
.logo { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: -.02em; color: var(--text); }
.logo .dot { color: var(--gold); }

.nav-links { display: none; }
.nav-link { font-size: .92rem; font-weight: 500; color: var(--text-dim); position: relative; padding: 6px 0; transition: color .2s; }
.nav-link::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gradient); transition: width .2s; box-shadow: 0 0 8px rgba(43,127,209,.7); }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after { width: 100%; }

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

.theme-picker { position: relative; }
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border-strong); color: var(--gold-bright);
  cursor: pointer; transition: border-color .2s, color .2s;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.theme-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 120;
  background: rgba(14,12,10,.96); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  backdrop-filter: blur(14px); box-shadow: var(--depth-lg);
  min-width: 172px; padding: 6px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.theme-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.theme-option {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 8px; background: none; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: .86rem; font-weight: 600; color: #d8d2c6; text-align: left;
  transition: background .15s;
}
.theme-option:hover { background: rgba(255,255,255,.07); }
.theme-option.active { color: #fff; background: rgba(43,127,209,.16); }
.theme-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot-cinematic { background: #2B7FD1; }
.dot-light { background: #FAFAF8; border: 1px solid rgba(0,0,0,.15); }
.dot-voyage { background: radial-gradient(circle at 30% 30%, #fff, #A46BFF 45%, #2CD9FF 100%); box-shadow: 0 0 6px rgba(164,107,255,.7); }
.dot-kinetic { background: #ff5a1f; box-shadow: 0 0 6px rgba(255,90,31,.7); }
.dot-terminal { background: #39ff8f; box-shadow: 0 0 6px rgba(57,255,143,.7); }
.dot-vault { background: #7c8cff; box-shadow: 0 0 6px rgba(124,140,255,.7); }
.dot-hud { background: #33e0ff; box-shadow: 0 0 6px rgba(51,224,255,.7); }
.dot-orbit { background: radial-gradient(circle at 30% 30%, #fff, var(--gold-bright) 45%, var(--gold-deep) 100%); box-shadow: 0 0 6px rgba(43,127,209,.8); }
.dot-circuit { background: #ffb020; box-shadow: 0 0 6px rgba(255,176,32,.7); }
.dot-blueprint { background: #4a9eff; box-shadow: 0 0 6px rgba(74,158,255,.7); }
.dot-arcade { background: linear-gradient(135deg, #ff2ea6, #26e0ff); box-shadow: 0 0 6px rgba(255,46,166,.7); }
.dot-all { background: linear-gradient(135deg, #fff, #999); }

.nav-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 110; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: #08070a;
  display: flex; flex-direction: column;
  padding: 90px 28px 40px; gap: 4px;
  transform: translateY(-100%); transition: transform .35s ease;
}
.mobile-menu::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(circle at 30% 20%, rgba(43,127,209,.16), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(217,230,255,.08), transparent 55%);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .mobile-cta { margin-top: 24px; border-bottom: none; padding: 14px 26px; color: #08070a; font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .95rem;
  font-family: 'Inter', sans-serif;
  transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer; border: none;
}
.btn-primary { background: var(--gradient-warm); color: #08070a; box-shadow: var(--depth-md), var(--glow-accent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--depth-lg), var(--glow-accent); }
.btn-ghost { background: var(--surface); color: var(--text); border: 1.5px solid var(--border-strong); backdrop-filter: blur(10px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

/* ================= THE ORBIT (WebGL flythrough) =================
   .orbit-wrap is a tall scroll runway; .orbit-stage sticks to the viewport for its whole
   height while a hand-rolled WebGL camera flies through a solar-system scene keyed to
   scroll position (see initOrbitScene() in script.js). Chapters below are absolutely
   positioned copy blocks shown/hidden by scroll progress via data-from/data-to, same
   technique as the sibling Voyage edition's chapter reveals — applied here to original
   Orbit content and camera-path data, not shared code. */
.orbit-wrap { position: relative; height: 1000vh; background: var(--bg); }
.orbit-stage {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
@supports (height: 100dvh) { .orbit-stage { height: 100dvh; } }
.orbit-canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.orbit-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 80% 65% at 50% 50%, transparent 40%, rgba(8,7,10,.55) 100%),
              linear-gradient(180deg, rgba(8,7,10,.5) 0%, transparent 16%, transparent 84%, rgba(8,7,10,.6) 100%);
}
.orbit-scrollcue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ice-dim); opacity: .8; transition: opacity .5s ease;
}
.orbit-scrollcue span { width: 1px; height: 30px; background: linear-gradient(180deg, var(--ice-dim), transparent); animation: cueDrop 1.8s ease-in-out infinite; }
@keyframes cueDrop { 0% { opacity: 0; transform: translateY(-6px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
.orbit-wrap.is-past-intro .orbit-scrollcue { opacity: 0; }

.orbit-chapter {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  opacity: 0; pointer-events: none; transition: opacity .6s ease;
}
.orbit-chapter.is-active { opacity: 1; pointer-events: auto; }

/* Planet badge — the identity chip for the body the camera is currently framing.
   It lives inside .orbit-chapter, so it inherits the chapter's opacity fade for free;
   the transform below only adds a small settle-in on top of that. --planet-color is
   written by script.js from ORBIT_PLANETS[data-service].css, so the chip always matches
   the hue of the sphere actually on screen (gold is just the no-JS fallback). */
.orbit-planet-badge {
  --planet-color: var(--gold-bright);
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0; margin-bottom: 14px; border-radius: 999px;
  background: rgba(10, 9, 13, .55);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 14px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.06);
  transform: translateY(10px);
  transition: transform .6s cubic-bezier(.16,.8,.3,1) .1s;
}
.orbit-chapter.is-active .orbit-planet-badge { transform: translateY(0); }
.orbit-badge-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #08070a;
  background: radial-gradient(circle at 32% 28%, #fff, var(--planet-color) 62%, rgba(0,0,0,.5) 100%);
  box-shadow: 0 0 16px -3px var(--planet-color);
}
.orbit-badge-icon svg { width: 18px; height: 18px; }
/* Planet names read as clutter once you can already see the labelled orbit-telemetry line
   right below — keep the element (so JS/--planet-color binding stays untouched) but hide it. */
.orbit-badge-name { display: none; }

.orbit-telemetry {
  font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); opacity: .85; margin-bottom: 12px; text-shadow: 0 0 14px rgba(43,127,209,.5);
  background: rgba(6,5,8,.5); backdrop-filter: blur(8px); padding: 4px 12px; border-radius: 999px;
}
.orbit-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); background: rgba(43,127,209,.16); border: 1px solid rgba(43,127,209,.3);
  backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
/* The camera deliberately frames each planet dead-center behind this text (that's the whole
   point of a flythrough), so the heading/paragraph need their own solid-ish backing — not just
   text-shadow — or they read as illegible white-on-bright-planet. Kept as tight glass "cards"
   sized to content (via the parent's align-items:center shrink-to-fit) rather than a full-bleed
   scrim, to match the badge/tag/eyebrow glass-pill language already used everywhere else here. */
.orbit-chapter h1, .orbit-chapter h2 {
  font-family: 'Sora', sans-serif; font-weight: 750; letter-spacing: -.03em; line-height: 1.15;
  font-size: clamp(2rem, 6.2vw, 3.6rem); color: var(--text); max-width: 820px;
  text-shadow: 0 2px 28px rgba(0,0,0,.85), 0 1px 4px rgba(0,0,0,.9);
  background: rgba(6,5,8,.52); backdrop-filter: blur(10px);
  padding: 6px 26px; border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.orbit-chapter p {
  color: var(--text-dim); max-width: 560px; margin: 16px auto 0; font-size: clamp(.95rem, 2vw, 1.06rem);
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  background: rgba(6,5,8,.46); backdrop-filter: blur(8px);
  padding: 10px 20px; border-radius: 16px;
}
.orbit-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border-strong); backdrop-filter: blur(10px);
  color: var(--text-dim); font-size: .8rem; font-weight: 600; padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}
.orbit-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.orbit-cta { display: flex; gap: 10px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }

@media (max-width: 699px) {
  .orbit-wrap { height: 840vh; }
}

/* Reduced motion + no-WebGL fallback: collapse the pinned flythrough into a normal stacked,
   readable list — every chapter (hero copy + Sun core + all 8 planets) visible at once, no canvas. */
@media (prefers-reduced-motion: reduce) {
  .orbit-wrap { height: auto; }
  .orbit-stage { position: relative; height: auto; padding: 60px 0; gap: 0; }
  .orbit-canvas, .orbit-scrollcue { display: none; }
  .orbit-vignette { display: none; }
  .orbit-chapter {
    position: relative; inset: auto; opacity: 1; pointer-events: auto;
    padding: 34px 24px; border-bottom: 1px solid var(--border);
  }
  .orbit-chapter:last-child { border-bottom: none; }
  .orbit-planet-badge { transform: none; transition: none; }
}
.orbit-wrap.orbit-static .orbit-planet-badge { transform: none; }
.orbit-wrap.orbit-static .orbit-stage { position: relative; height: auto; padding: 60px 0; }
.orbit-wrap.orbit-static .orbit-canvas { position: static; width: 100%; height: 46vh; min-height: 260px; display: block; margin-bottom: 10px; }
.orbit-wrap.orbit-static .orbit-scrollcue,
.orbit-wrap.orbit-static .orbit-vignette { display: none; }
.orbit-wrap.orbit-static .orbit-chapter {
  position: relative; inset: auto; opacity: 1; pointer-events: auto;
  padding: 30px 24px; border-bottom: 1px solid var(--border);
}
.orbit-wrap.orbit-static .orbit-chapter:last-child { border-bottom: none; }

/* ---------- Sections (post-flythrough, still "orbital" — radial layouts, elliptical dividers) ---------- */
.section { position: relative; z-index: 1; max-width: var(--max-w); margin: 0 auto; padding: 84px var(--pad-x); }
.section-soft { background: linear-gradient(180deg, transparent, rgba(255,255,255,.025) 15%, rgba(255,255,255,.025) 85%, transparent); max-width: 100%; }
.section-soft > .section-inner { max-width: var(--max-w); margin: 0 auto; padding: 84px var(--pad-x); }
.section-head { margin-bottom: 40px; }
.section-tag {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); background: rgba(43,127,209,.12); border: 1px solid rgba(43,127,209,.3); padding: 5px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(2.2rem, 7.5vw, 4rem); font-weight: 900; letter-spacing: -.035em; line-height: 1; color: var(--text); text-wrap: balance; }
.section-sub { color: var(--text-dim); margin-top: 14px; font-size: 1.05rem; max-width: 560px; }

/* elliptical section divider — an orbit-ring motif standing in for a plain <hr> */
.orbit-divider { display: flex; justify-content: center; padding: 8px var(--pad-x) 0; position: relative; z-index: 1; }
.orbit-divider span {
  display: block; width: min(560px, 80vw); height: 44px;
  border: 1px solid rgba(43,127,209,.28); border-radius: 50%;
  box-shadow: 0 0 40px -12px rgba(43,127,209,.35) inset;
}

/* ---------- Product spotlight ---------- */
.spotlight { display: flex; flex-direction: column; gap: 32px; }
.spotlight-visual { order: -1; perspective: var(--persp); }
.spotlight-text > p { color: var(--text-dim); }
.spotlight-text > p strong { color: var(--text); }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin: 22px 0; }
.feature-item { display: flex; gap: 12px; align-items: flex-start; }
.feature-orbit-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(43,127,209,.16); border: 1px solid rgba(43,127,209,.35);
  color: var(--gold-bright); display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.feature-orbit-icon svg { width: 12px; height: 12px; }
.feature-item h4 { font-size: .95rem; margin-bottom: 2px; color: var(--text); }
.feature-item p { color: var(--text-dim); font-size: .88rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.tech-tags span { font-size: .74rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); }

/* orbit-frame: replaces a plain screenshot frame with a subtle circular corner accent */
.orbit-frame { position: relative; background: #0e0c0a; border-radius: var(--radius); border: 1px solid var(--border-strong); box-shadow: var(--depth-lg), var(--glow-accent); overflow: hidden; }
.orbit-frame::after {
  content: ''; position: absolute; top: -30px; right: -30px; width: 90px; height: 90px;
  border-radius: 50%; border: 1px solid rgba(43,127,209,.35); pointer-events: none;
}
.orbit-frame .main-shot { width: 100%; max-height: 400px; object-fit: cover; object-position: top; display: block; cursor: zoom-in; }
.orbit-frame .thumb-row { display: flex; gap: 8px; padding: 10px; overflow-x: auto; }
.orbit-frame .thumb-row img { flex: 0 0 auto; height: 64px; width: auto; border-radius: 8px; border: 1px solid var(--border-strong); cursor: zoom-in; object-fit: cover; transition: transform .2s; }
.orbit-frame .thumb-row img:hover { transform: translateY(-2px); }

.family-scroll { display: grid; grid-template-columns: 1fr; gap: 18px; }
.family-card { background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--depth-sm); backdrop-filter: blur(14px); }
.family-card img { width: 100%; height: 210px; object-fit: cover; object-position: top; }
.family-card-body { padding: 18px 20px 22px; }
.family-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.family-card h4 { font-size: 1.05rem; color: var(--text); }
.family-card-cat { color: var(--text-faint); font-size: .76rem; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; display: block; }
.badge { font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.badge-dev { background: rgba(217,230,255,.12); color: var(--ice); border: 1px solid rgba(217,230,255,.28); }
.badge-live { background: rgba(74,222,128,.14); color: #4ade80; border: 1px solid rgba(74,222,128,.3); }
.badge-current { background: rgba(43,127,209,.14); color: var(--gold); border: 1px solid rgba(43,127,209,.3); }
.family-card p { color: var(--text-dim); font-size: .88rem; }

.mobile-apps-head { margin-top: 56px; margin-bottom: 32px; }
.mobile-apps-title { font-size: clamp(1.5rem, 4.5vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; color: var(--text); margin-top: 10px; }

/* ---------- Work ---------- */
.work-row { display: flex; flex-direction: column; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--border); }
.work-row:first-child { padding-top: 0; }
.work-row:last-of-type { border-bottom: none; }
.work-visual { perspective: var(--persp); }
.work-top { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin-bottom: 10px; }
.work-text h3 { font-size: 1.35rem; margin-bottom: 10px; letter-spacing: -.01em; color: var(--text); }
.work-text p { color: var(--text-dim); font-size: .96rem; margin-bottom: 14px; }
.work-text strong { color: var(--text); }
.work-detail-list { color: var(--text-dim); font-size: .88rem; margin-bottom: 16px; }
.work-detail-list li { position: relative; padding-left: 16px; margin-bottom: 7px; }
.work-detail-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold-bright); box-shadow: 0 0 6px var(--gold-bright); }
.work-detail-list strong { color: var(--text); }
.work-link { color: var(--gold); font-size: .9rem; font-weight: 700; }
.work-link:hover { text-decoration: underline; }

/* ---------- Process — radial layout: numbered nodes on an orbit-styled rail ---------- */
.process-orbit { display: flex; flex-direction: column; position: relative; }
.process-orbit::before { content: ''; position: absolute; left: 22px; top: 22px; bottom: 22px; width: 1px; background: linear-gradient(180deg, rgba(43,127,209,.5), rgba(217,230,255,.15)); }
.process-step { display: flex; gap: 20px; padding: 22px 0; position: relative; }
.process-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient-warm); color: #08070a; font-family: 'Sora', sans-serif; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--glow-accent); z-index: 1;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); }
.process-step p { color: var(--text-dim); font-size: .9rem; }

/* ---------- About ---------- */
.about-text { color: var(--text-dim); font-size: 1.02rem; }
.about-text strong { color: var(--text); }
.about-text p + p { margin-top: 14px; }
.founder-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(165deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; margin-bottom: 22px;
}
.founder-photo { position: relative; flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); box-shadow: var(--glow-accent); }
.founder-photo img { position: absolute; width: 129%; height: 128.9%; left: -10.6%; top: 0; max-width: none; }
.founder-name { font-weight: 700; font-size: .96rem; color: var(--text); }
.founder-role { color: var(--text-dim); font-size: .82rem; }
.quote-line { font-family: 'Sora', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--text); border-left: 2px solid var(--gold); padding-left: 16px; margin-top: 20px; font-style: italic; }

/* ---------- Contact ---------- */
.section-contact .section-head { display: flex; flex-direction: column; align-items: center; text-align: center; }
.section-contact .section-sub { margin-left: auto; margin-right: auto; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 36px; text-align: left; }
.contact-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 18px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--depth-md), var(--glow-accent); border-color: var(--border-strong); }
.contact-icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: rgba(43,127,209,.14); border: 1px solid rgba(43,127,209,.3); color: var(--gold-bright); display: flex; align-items: center; justify-content: center; }
.contact-icon-whatsapp { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.32); color: #25d366; }
.contact-label { color: var(--text-faint); font-size: .74rem; text-transform: uppercase; letter-spacing: .8px; }
.contact-value { font-weight: 700; font-size: .95rem; word-break: break-word; color: var(--text); }

.footer { position: relative; z-index: 1; text-align: center; padding: 32px var(--pad-x) 40px; color: var(--text-faint); font-size: .85rem; border-top: 1px solid var(--border); }

/* ---------- Lightbox ---------- */
.lightbox { display: none; position: fixed; inset: 0; z-index: 400; background: rgba(4,3,2,.94); backdrop-filter: blur(6px); align-items: center; justify-content: center; padding: 24px; }
.lightbox.open { display: flex; }
.lightbox-content { display: flex; flex-direction: column; align-items: center; max-width: min(92vw, 900px); max-height: 92vh; }
.lightbox img { max-width: min(92vw, 900px); max-height: 74vh; width: auto; border-radius: 12px; box-shadow: 0 20px 60px -10px rgba(0,0,0,.8); }
.lightbox-info { margin-top: 16px; text-align: center; color: #fff; max-width: 700px; }
.lightbox-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.lightbox-info p { font-size: .86rem; color: rgba(255,255,255,.68); margin-bottom: 8px; }
.lightbox-counter { font-family: 'JetBrains Mono', monospace; font-size: .75rem; color: rgba(255,255,255,.45); letter-spacing: 1px; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; font-size: 1.7rem; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; }
.lightbox-prev { left: 12px; } .lightbox-next { right: 12px; }

/* ---------- Reveal engine ---------- */
[data-reveal] { opacity: 0; transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1), filter .7s ease; }
[data-reveal="up"] { transform: translateY(36px); }
[data-reveal="left"] { transform: translateX(-40px); }
[data-reveal="tilt"] { transform: perspective(1000px) rotateX(18deg) translateY(46px) scale(.95); filter: blur(4px); }
[data-reveal].is-visible { opacity: 1; transform: none; filter: blur(0); }

/* ---------- Responsive ---------- */
@media (min-width: 640px) {
  .btn { width: auto; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .nav-links { display: flex; gap: 30px; }
  .nav-toggle { display: none; }
  .navbar .nav-cta { display: inline-flex; }
  .mobile-menu { display: none; }
  .section-inner, .section { padding-left: var(--pad-x); padding-right: var(--pad-x); }
  .spotlight { flex-direction: row; align-items: center; gap: 56px; }
  .spotlight-visual { order: 0; flex: 1; }
  .spotlight-text { flex: 1; }
  .family-scroll { grid-template-columns: repeat(3, 1fr); }
  .work-row { flex-direction: row; align-items: center; gap: 56px; }
  .work-row:nth-child(even) { flex-direction: row-reverse; }
  .work-visual, .work-text { flex: 1; }
  .about-grid { display: grid; grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); max-width: 780px; margin: 36px auto 0; }
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transition: opacity .3s ease; }
}
