/* ============================================================
   Neha Neelkant — "Consulting Profile"
   Polished, corporate-professional. Light surfaces, navy accent.
   IBM Plex Serif + Sans + Mono · soft elevation
   ============================================================ */

:root {
  --bg: #f6f7f9;
  --bg-2: #eef1f5;
  --card: #ffffff;
  --fg: #16202e;          /* deep navy ink */
  --fg-soft: #3d4859;
  --fg-muted: #6a7686;

  --navy: #1f4e79;
  --navy-deep: #15395c;
  --navy-soft: #dbe6f3;

  /* accent (driven by Tweaks) — default navy */
  --gold: #1f4e79;
  --gold-deep: #15395c;
  --gold-soft: #dbe6f3;
  --accent: var(--gold);
  --accent-deep: var(--gold-deep);
  --accent-soft: var(--gold-soft);

  --border: #e2e7ee;
  --border-strong: #d2d9e3;

  --shadow-xs: 0 1px 2px rgba(22, 32, 46, .05);
  --shadow-sm: 0 1px 3px rgba(22, 32, 46, .06), 0 1px 2px rgba(22, 32, 46, .04);
  --shadow-md: 0 4px 14px -6px rgba(22, 32, 46, .14), 0 2px 6px -2px rgba(22, 32, 46, .06);
  --shadow-lg: 0 22px 48px -22px rgba(22, 32, 46, .30), 0 8px 20px -12px rgba(31, 78, 121, .16);

  --font-serif: "Poppins", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1280px;
  --gutter: 32px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}
body { min-height: 100vh; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
::selection { background: var(--accent-soft); color: var(--accent-deep); }

/* -------- Type primitives -------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 14px 0 0;
  color: var(--fg);
}
.section-title em { font-style: normal; color: var(--accent-deep); }
.gradient-text { color: var(--accent-deep); -webkit-text-fill-color: currentColor; }

/* -------- Layout -------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 112px 0; position: relative; scroll-margin-top: 76px; }
.section[style] { background: var(--bg) !important; }
#about { background: linear-gradient(165deg, #0d2137 0%, #14304e 100%) !important; color: #fff; }
#experience { background: var(--bg) !important; }
#skills { background: #f1ece4 !important; }
#recognition { background: #fbe7df !important; }

/* Multi-page: clear fixed nav on inner pages */
.page-main { display: block; }
body.inner .page-main > .section:first-child { padding-top: 132px; }
@media (max-width: 880px) { body.inner .page-main > .section:first-child { padding-top: 104px; } }
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .section { padding: 64px 0; }
}

/* section header */
.section-head { max-width: 800px; margin: 0 auto 8px; text-align: center; }
.section-head .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-soft);
  margin: 18px auto 0;
  max-width: 620px;
}

/* ============================================================
   Navbar
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--accent);
  z-index: 100; transform-origin: left;
}
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  padding: 16px 0;
  transition: padding .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 11px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 38px; height: 38px;
  border: none; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  transform: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.logo-mark span {
  transform: none;
  font-family: var(--font-serif);
  font-weight: 600; color: #fff; font-size: 18px; letter-spacing: -.02em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text .l1 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; letter-spacing: -.01em; color: var(--fg); }
.logo-text .l2 {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: .22em; color: var(--fg-muted);
  margin-top: 3px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
  background: none; border: none; padding: 0; border-radius: 0;
  backdrop-filter: none;
}
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--fg-soft);
  transition: background .2s, color .2s;
}
.nav-links a:hover { color: var(--fg); background: var(--bg-2); }
.nav-links a.active { background: var(--accent-soft); color: var(--accent-deep); font-weight: 600; }
@media (max-width: 940px) { .nav-links { display: none; } }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 10px 18px; border-radius: var(--radius-sm);
  background: var(--accent); color: #fff;
  font-size: 14px; font-weight: 500; border: 1px solid var(--accent);
  box-shadow: var(--shadow-sm);
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-cta:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #fff;
  color: var(--fg);
  padding: 0;
}
.hero .container { position: relative; z-index: 1; width: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
  padding: 124px 0 48px;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 36px; min-height: 0; padding: 112px 0 56px; } }
/* photo left, greeting right */
.photo-stack { order: -1; }
@media (max-width: 980px) { .photo-stack { order: 0; } }
.hero .pill { margin-bottom: 30px; }
.hero .role-row, .hero .tag-row { display: none; }
.hero .value-prop { display: block; max-width: 540px; margin: 30px 0 36px; }
.hero .value-prop .accent { display: none; }
.hero .value-prop p { font-size: clamp(17px, 1.5vw, 21px); color: var(--fg-muted); line-height: 1.62; font-weight: 400; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--fg-soft);
  box-shadow: var(--shadow-xs);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: #21a366; position: relative; flex-shrink: 0; }
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #21a366; animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.6); opacity: 0; } }

.role-row { display: flex; align-items: center; gap: 14px; margin: 28px 0 12px; }
.gold-line { width: 40px; height: 2px; background: var(--accent); border-radius: 2px; }
.role-cycle {
  font-family: var(--font-mono); font-size: 14px; color: var(--accent-deep);
  letter-spacing: .02em; font-weight: 500; height: 22px; overflow: hidden; display: inline-block;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(46px, 6.4vw, 94px);
  font-weight: 800; line-height: .98; letter-spacing: -.035em; margin: 0;
  color: var(--fg);
}
.hero-hello {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 800; line-height: 1; letter-spacing: -.03em;
  color: var(--fg);
  margin-bottom: .02em;
}
.hero-name .word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0 .04em .1em; margin-left: -.04em; }
.hero-name .word .inner { display: inline-block; transform: translateY(106%); animation: word-reveal .9s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-name .word.w2 .inner { animation-delay: .16s; }
@keyframes word-reveal { to { transform: translateY(0); } }
.hero-name .last { color: var(--accent-deep); -webkit-text-fill-color: currentColor; }

.value-prop { display: flex; align-items: stretch; gap: 18px; max-width: 540px; margin: 30px 0 28px; }
.value-prop .accent { width: 3px; background: var(--accent); border-radius: 3px; }
.value-prop p { margin: 0; font-size: 18px; line-height: 1.65; color: var(--fg-soft); }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.tag {
  padding: 7px 13px; background: #fff; border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; font-weight: 500; color: var(--fg-soft); white-space: nowrap;
  box-shadow: var(--shadow-xs); transition: border-color .2s, color .2s, transform .2s;
}
.tag:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-1px); }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  padding: 13px 22px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 500; border: 1px solid transparent;
  font-family: var(--font-sans); transition: background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary, .btn-gold { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: var(--shadow-sm); }
.btn-primary:hover, .btn-gold:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: #fff; border-color: var(--border-strong); color: var(--fg); box-shadow: var(--shadow-xs); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; color: var(--fg-soft); border-color: transparent; }
.btn-ghost:hover { color: var(--accent-deep); background: var(--bg-2); }

/* -- Hero photo -- */
.photo-stack { position: relative; display: flex; justify-content: center; }
.photo-offset { display: none; }
.photo-glow { display: none; }
.photo-frame {
  position: relative; z-index: 2;
  border-radius: 26px; padding: 0;
  background: #fff; border: none;
  box-shadow: var(--shadow-lg);
  overflow: hidden; transform: none !important; width: 100%;
}
.photo-frame img { border-radius: 26px; width: 100%; height: min(78vh, 660px); object-fit: cover; object-position: 50% 16%; display: block; }
.corner { display: none; }
.open-pill {
  position: absolute; bottom: 16px; left: 16px; transform: none; z-index: 4;
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 9px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-md); font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; color: var(--fg);
}
.ghost-letters { display: none; }
.scroll-cue {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .26em; color: var(--fg-muted); z-index: 5;
}
.scroll-cue .bar { width: 1px; height: 36px; background: var(--border-strong); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 50%; background: var(--accent); animation: scroll-down 1.8s infinite; }
@keyframes scroll-down { 0% { transform: translateY(-100%); } 100% { transform: translateY(200%); } }
.marquee { display: none; }

/* -- Stats -- */
.stats-band {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: #fff; color: var(--fg);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin: 4px 0 96px; box-shadow: var(--shadow-md);
}
@media (max-width: 720px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 30px 28px; border-right: 1px solid var(--border); position: relative; }
.stat:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
.stat .num { font-family: var(--font-serif); font-size: 46px; font-weight: 600; line-height: 1; letter-spacing: -.02em; color: var(--accent-deep); }
.stat .label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); margin-top: 14px; font-weight: 500; }
.stat .sub { font-size: 13px; color: var(--fg-soft); margin-top: 6px; line-height: 1.45; }

/* ============================================================
   (hero is light — no dark overrides needed)
   ============================================================ */

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; margin-top: 56px; }
#about .section-title, #about .eyebrow { color: #fff; }
#about .section-title em { color: #9ec3e6; }
#about .about-text p { color: rgba(255,255,255,.84); }
#about .about-text p:first-of-type::first-letter { color: #9ec3e6; }
#about .highlight { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); box-shadow: none; }
#about .highlight:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.24); }
#about .highlight h4 { color: #fff; }
#about .highlight p { color: rgba(255,255,255,.64); }
#about .highlight .icon { background: rgba(255,255,255,.12); color: #9ec3e6; }
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text p { font-size: 17px; line-height: 1.78; color: var(--fg-soft); margin: 0 0 18px; }
.about-text p:first-of-type::first-letter {
  font-family: var(--font-serif); font-size: 3.6em; float: left; line-height: .82;
  padding: 6px 12px 0 0; color: var(--accent-deep); font-weight: 600;
}
.highlights { display: flex; flex-direction: column; gap: 12px; }
.highlight {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-xs);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.highlight:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-strong); }
.highlight .icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: var(--accent-soft); color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
}
.highlight .icon svg { width: 18px; height: 18px; }
.highlight h4 { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: var(--fg); }
.highlight p { margin: 0; font-size: 13.5px; color: var(--fg-muted); line-height: 1.55; }

/* ============================================================
   Experience — clean cards
   ============================================================ */
.exp-rail { margin-top: 56px; position: relative; max-width: 1000px; margin-left: auto; margin-right: auto; }
.exp-timeline { display: none; }
.exp-card { position: relative; padding-left: 0; margin-bottom: 24px; }
.exp-card:last-child { margin-bottom: 0; }
.exp-node { display: none; }
.exp-body {
  --accent: var(--gold) !important;
  background: linear-gradient(165deg, #0d2137 0%, #14304e 100%);
  border: none; border-radius: 22px;
  padding: 38px 42px; cursor: pointer; box-shadow: var(--shadow-md);
  transition: box-shadow .3s, transform .3s; position: relative; overflow: hidden; color: #fff;
}
.exp-body::before { display: none; }
.exp-body:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.exp-head { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: baseline; margin-bottom: 8px; }
.exp-period { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; color: #9ec3e6; text-transform: uppercase; font-weight: 500; }
.exp-loc { font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,.5); }
.exp-role { font-family: var(--font-serif); font-size: clamp(23px, 2.6vw, 31px); font-weight: 700; letter-spacing: -.015em; margin: 0; color: #fff; }
.exp-company { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.66); margin: 6px 0 0; }
.exp-summary { margin: 16px 0 0; font-size: 15.5px; line-height: 1.68; color: rgba(255,255,255,.82); }
.exp-core { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.16); }
.exp-core-label { display: inline-block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: #9ec3e6; margin-bottom: 10px; font-weight: 500; }
.exp-core-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.exp-core-chip { padding: 6px 12px; font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 8px; white-space: nowrap; }
.exp-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; overflow: hidden; max-height: 0; transition: max-height .5s cubic-bezier(.2,.8,.2,1), margin .35s; }
.exp-card.active .exp-bullets { max-height: 900px; margin-top: 20px; }
.exp-bullets li { font-size: 14.5px; line-height: 1.62; color: rgba(255,255,255,.82); padding-left: 24px; position: relative; }
.exp-bullets li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: #9ec3e6; }
.exp-toggle { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; color: #9ec3e6; margin-top: 16px; text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

/* ============================================================
   Skills
   ============================================================ */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 18px; margin-top: 56px; }
.skill-card { padding: 26px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s, border-color .3s; }
.skill-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--border-strong); }
.skill-card h4 { margin: 0 0 18px; font-family: var(--font-serif); font-size: 20px; font-weight: 600; letter-spacing: -.01em; color: var(--fg); display: flex; align-items: baseline; gap: 10px; }
.skill-card h4 .num { font-family: var(--font-mono); font-size: 12px; color: var(--accent-deep); letter-spacing: .04em; font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { padding: 6px 11px; background: var(--bg); border: 1px solid var(--border); border-radius: 7px; font-size: 12.5px; color: var(--fg-soft); font-weight: 500; white-space: nowrap; transition: background .2s, color .2s, border-color .2s; cursor: default; }
.chip:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent-deep); }

/* ============================================================
   Projects
   ============================================================ */
.proj-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; margin-top: 56px; }
.proj {
  position: relative; padding: 34px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: box-shadow .35s, transform .35s, border-color .35s; cursor: pointer; transform: none !important; overflow: hidden;
}
.proj::before { display: none !important; }
.proj:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--border-strong); }
.proj-1, .proj-2, .proj-3, .proj-4, .proj-5, .proj-std { grid-column: span 6; }
@media (max-width: 880px) { .proj-grid { grid-template-columns: 1fr; } .proj-1, .proj-2, .proj-3, .proj-4, .proj-5, .proj-std, .proj-grid > .reveal { grid-column: 1 / -1; } }
/* uniform projects — all cards identical */

.proj-art { display: none; }
.proj-flag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 14px; font-weight: 500; }
.proj-flag .pulse-dot { background: var(--accent-deep); }
.proj-flag .pulse-dot::after { background: var(--accent-deep); }
.proj-tags { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 14px; }
.proj-tags .t { font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); padding: 4px 9px; background: var(--accent-soft); border-radius: 999px; white-space: nowrap; font-weight: 500; }
.proj h3 { margin: 0 0 12px; font-family: var(--font-serif); font-size: 28px; font-weight: 600; letter-spacing: -.015em; line-height: 1.12; color: var(--fg); }
.proj p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.62; color: var(--fg-soft); }
.proj .proj-aim { font-size: 15.5px; font-style: normal; font-weight: 500; color: var(--fg); line-height: 1.6; margin-bottom: 14px; }
.proj .proj-work { margin-bottom: 22px; color: var(--fg-soft); }
.outcomes { display: flex; flex-wrap: wrap; gap: 8px; }
.outcome { padding: 7px 13px; background: var(--bg); color: var(--fg); border: 1px solid var(--border); border-radius: 999px; font-size: 12.5px; font-weight: 500; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.outcome .dot { width: 5px; height: 5px; background: var(--accent); border-radius: 50%; }
.proj-num { position: absolute; bottom: 18px; right: 26px; font-family: var(--font-serif); font-size: 70px; font-weight: 600; color: var(--accent); opacity: .08; line-height: 1; }
.learn-more { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; align-items: center; flex-wrap: wrap; gap: 14px; }
.learn-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); font-weight: 500; }
.learn-link { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--accent-deep); padding: 6px 12px; background: var(--accent-soft); border-radius: 7px; transition: background .25s, color .25s; }
.learn-link:hover { background: var(--accent); color: #fff; }

/* flagship retains a subtle accent flag only — same card as the rest */
.proj:has(.proj-flag) { border-color: var(--accent-soft); }
@media (max-width: 640px) { .proj .proj-num { display: none; } }

/* ============================================================
   Demo modal
   ============================================================ */
.demo-overlay { position: fixed; inset: 0; z-index: 120; background: rgba(16, 24, 36, .55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 28px; animation: demo-fade .25s ease; }
@keyframes demo-fade { from { opacity: 0; } to { opacity: 1; } }
.demo-modal { position: relative; width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 38px; animation: demo-rise .35s cubic-bezier(.2,.8,.2,1); }
@keyframes demo-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.demo-close { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 9px; border: 1px solid var(--border); background: var(--bg); color: var(--fg); display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.demo-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.demo-head { margin-bottom: 22px; padding-right: 44px; }
.demo-flag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; font-weight: 500; }
.demo-head h3 { margin: 0 0 8px; font-family: var(--font-serif); font-size: 28px; font-weight: 600; letter-spacing: -.01em; }
.demo-head p { margin: 0; font-size: 15px; color: var(--fg-soft); line-height: 1.6; }
.demo-video { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-sm); overflow: hidden; background: var(--fg); border: 1px solid var(--border); }
.demo-video video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.demo-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.demo-guide { margin-top: 22px; }
.demo-guide-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 12px; font-weight: 500; }
.guide-pages { display: flex; flex-direction: column; gap: 14px; max-height: 560px; overflow-y: auto; padding: 14px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg); }
.guide-pages img { width: 100%; height: auto; border-radius: 6px; box-shadow: var(--shadow-xs); border: 1px solid var(--border); background: #fff; }
.guide-loading { display: flex; align-items: center; justify-content: center; gap: 12px; height: 200px; border-radius: var(--radius-sm); border: 1px dashed var(--border-strong); background: var(--bg); font-size: 14px; color: var(--fg-muted); }
.guide-spinner { width: 18px; height: 18px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: guide-spin .8s linear infinite; }
@keyframes guide-spin { to { transform: rotate(360deg); } }
.guide-fallback { display: flex; align-items: center; justify-content: center; gap: 12px; height: 140px; border-radius: var(--radius-sm); border: 1px dashed var(--border-strong); background: var(--bg); color: var(--fg-muted); font-size: 14px; }
.demo-pdf-hint { margin: 10px 0 0; font-size: 12.5px; color: var(--fg-muted); }
.demo-pdf-hint a { color: var(--accent-deep); text-decoration: underline; }
.demo-video-strip { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--bg); border: 1px dashed var(--border-strong); }
.demo-video-strip .demo-play { width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-video-strip strong { display: block; font-size: 14px; font-weight: 600; color: var(--fg); }
.demo-video-strip span { font-size: 12.5px; color: var(--fg-muted); }
@media (max-width: 640px) { .demo-overlay { padding: 14px; } .demo-modal { padding: 26px 20px; } .demo-head h3 { font-size: 23px; } .demo-actions .btn { width: 100%; justify-content: center; } }

/* ============================================================
   Recognition + Education
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 56px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.award-list, .edu-list { display: flex; flex-direction: column; gap: 14px; }
.award, .edu-item { padding: 22px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; gap: 18px; align-items: flex-start; box-shadow: var(--shadow-xs); transition: box-shadow .25s, transform .25s; }
.award:hover, .edu-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.award-medal { width: 46px; height: 46px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.edu-medal { width: 46px; height: 46px; border-radius: 11px; background: var(--navy-soft); color: var(--navy-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.award-medal svg, .edu-medal svg { width: 20px; height: 20px; }
.award h4, .edu-item h4 { margin: 0 0 5px; font-family: var(--font-serif); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.award p, .edu-item p { margin: 0; font-size: 13px; color: var(--fg-muted); }

.about-education { margin-top: 56px; padding-top: 48px; border-top: 1px solid var(--border); }
.about-education-title { margin: 0 0 20px; font-family: var(--font-serif); font-size: 28px; font-weight: 600; letter-spacing: -.02em; }
.about-education .edu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 760px) { .about-education .edu-list { grid-template-columns: 1fr; } }

/* ============================================================
   Life
   ============================================================ */
/* ============================================================
   Dance & Content
   ============================================================ */
.dance-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 52px; margin-top: 56px; align-items: center; }
@media (max-width: 880px) { .dance-grid { grid-template-columns: 1fr; gap: 32px; } }
.dance-figure { margin: 0; }
.dance-figure img { width: 100%; border-radius: 22px; box-shadow: var(--shadow-lg); display: block; }
.dance-figure figcaption { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--fg-muted); text-align: center; }
.dance-side { display: flex; flex-direction: column; gap: 18px; }
.dance-social { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.dance-social:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.dance-social .ds-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.dance-social .ds-head > svg { width: 24px; height: 24px; color: var(--accent-deep); flex-shrink: 0; }
.dance-social .ds-title { font-family: var(--font-serif); font-size: 19px; font-weight: 700; color: var(--fg); letter-spacing: -.01em; }
.dance-social .ds-handle { font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-muted); margin-top: 2px; }
.dance-social p { margin: 0 0 20px; font-size: 14.5px; line-height: 1.62; color: var(--fg-soft); }
.dance-social .btn { width: 100%; justify-content: center; }
.dance-lead .ds-head > svg { color: var(--accent-deep); }
.lead-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.lead-chips span { padding: 6px 12px; font-size: 12.5px; font-weight: 500; color: var(--accent-deep); background: var(--accent-soft); border-radius: 999px; white-space: nowrap; }
.dance-workshop { display: flex; gap: 18px; align-items: center; padding: 18px; }
.dance-workshop .workshop-thumb { flex-shrink: 0; width: 92px; height: 92px; border-radius: 12px; overflow: hidden; display: block; }
.dance-workshop .workshop-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dance-workshop .workshop-body .ds-title { font-family: var(--font-serif); font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 6px; }
.dance-workshop .workshop-body p { margin: 0; font-size: 13.5px; line-height: 1.55; }
@media (max-width: 460px) { .dance-workshop { flex-direction: column; align-items: flex-start; } .dance-workshop .workshop-thumb { width: 100%; height: 150px; } }

.life-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 56px; }
@media (max-width: 880px) { .life-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .life-grid { grid-template-columns: 1fr; } }
.life-card { padding: 28px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: box-shadow .3s, transform .3s; }
.life-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.life-card .glyph { width: 44px; height: 44px; border-radius: 11px; background: var(--accent-soft); color: var(--accent-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.life-card h4 { margin: 0 0 7px; font-family: var(--font-serif); font-size: 19px; font-weight: 600; letter-spacing: -.01em; }
.life-card p { margin: 0; font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* ============================================================
   Contact — navy plate
   ============================================================ */
.contact-card { margin-top: 56px; padding: 56px 52px; background: linear-gradient(135deg, var(--navy-deep), var(--navy)); color: #fff; border-radius: 20px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.contact-card::before { content: ""; position: absolute; top: -50%; right: -15%; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.08), transparent 62%); pointer-events: none; }
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: center; position: relative; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-card .eyebrow { color: #9ec3e6 !important; }
.contact-card h2 { font-family: var(--font-serif); font-size: clamp(32px, 4.2vw, 52px); font-weight: 600; letter-spacing: -.02em; line-height: 1.08; margin: 14px 0 16px; }
.contact-card h2 em { font-style: normal; color: #9ec3e6; }
.contact-card p { font-size: 15.5px; color: rgba(255,255,255,.78); line-height: 1.7; margin: 0 0 24px; max-width: 480px; }
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-sm); font-size: 14px; transition: background .25s, transform .25s, border-color .25s; }
.contact-row:hover { background: rgba(255,255,255,.14); transform: translateX(4px); border-color: rgba(255,255,255,.3); }
.contact-row .label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.contact-row .icon-c { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.12); color: #cfe0f1; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-row .val { font-weight: 500; color: #fff; }
.contact-card .btn-outline { background: transparent !important; color: #fff !important; border-color: rgba(255,255,255,.45) !important; }
.contact-card .btn-outline:hover { background: rgba(255,255,255,.12) !important; border-color: #fff !important; }

footer { padding: 40px 0 56px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; color: var(--fg-muted); text-transform: uppercase; }

/* ============================================================
   Reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-name .word .inner { transform: none; }
}

/* ============================================================
   Mobile nav
   ============================================================ */
.nav-burger { display: none; width: 42px; height: 42px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 4px; flex-shrink: 0; box-shadow: var(--shadow-xs); }
.nav-burger:hover { border-color: var(--accent); }
.nav-burger span { display: block; width: 18px; height: 1.5px; background: var(--fg); border-radius: 2px; transition: transform .3s, opacity .25s; }
.nav-burger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.mobile-drawer { position: fixed; inset: 0; z-index: 78; background: #fff; opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity .35s, transform .35s; display: flex; align-items: center; justify-content: center; padding: 80px 22px 40px; }
.mobile-drawer.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-drawer-inner { width: 100%; max-width: 420px; display: flex; flex-direction: column; gap: 28px; }
.mobile-links { display: flex; flex-direction: column; }
.mobile-links a { display: flex; align-items: baseline; gap: 18px; padding: 18px 4px; border-bottom: 1px solid var(--border); font-family: var(--font-serif); font-size: 26px; font-weight: 600; letter-spacing: -.01em; color: var(--fg); opacity: 0; transform: translateX(-12px); transition: opacity .5s, transform .5s, color .2s; }
.mobile-drawer.open .mobile-links a { opacity: 1; transform: translateX(0); }
.mobile-links a:hover { color: var(--accent-deep); }
.mobile-links a:first-child { border-top: 1px solid var(--border); }
.mobile-link-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; color: var(--accent-deep); font-weight: 500; }
.mobile-link-label { font-weight: 600; }
.mobile-cta { justify-content: center; padding: 16px 24px; }
@media (max-width: 940px) { .nav-burger { display: inline-flex; } }
@media (max-width: 600px) { .hide-on-mobile { display: none !important; } }
@media (min-width: 941px) { .mobile-drawer { display: none; } }

/* ============================================================
   Large screens
   ============================================================ */
@media (min-width: 1600px) { :root { --maxw: 1320px; } }
@media (min-width: 2000px) { :root { --maxw: 1480px; } html, body { font-size: 17px; } }

/* ============================================================
   Phone
   ============================================================ */
@media (max-width: 880px) {
  .nav { padding: 12px 0; }
  .hero { min-height: auto; }
  .photo-frame img { height: 460px; }
  .scroll-cue { display: none; }
}
@media (max-width: 640px) {
  html, body { font-size: 15px; }
  .hero-name { font-size: clamp(46px, 13vw, 72px); }
  .value-prop p { font-size: 16px; }
  .photo-frame img { height: 400px; }
  .stat { padding: 24px 20px; }
  .stat .num { font-size: 38px; }
  .section-title { font-size: clamp(26px, 7vw, 38px); }
  .proj { padding: 26px 22px; }
  .exp-body { padding: 22px 20px; }
  .contact-card { padding: 40px 24px; }
}
@media (max-width: 380px) {
  .cta-row .btn { width: 100%; justify-content: center; }
  .stats-band { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }
}
@media (hover: none) { .photo-frame, .proj { transform: none !important; } }

/* Print */
@media print {
  .nav, .scroll-progress, .scroll-cue, .mobile-drawer, .nav-burger, #tweaks-panel, [class*="twk-"] { display: none !important; }
  body { background: #fff; color: #000; }
  .section { padding: 28px 0; page-break-inside: avoid; }
  .photo-frame img { height: 300px; }
}
