/* ============================================================
   Hrishikesh Pote — Growth Systems portfolio
   Editorial · warm paper / ink / electric accent · experiential
   (Copy is authored elsewhere and must not change — this is craft.)
   ============================================================ */
:root {
  --paper:    #f4f1ea;
  --paper-2:  #ece7da;
  --ink:      #0e0e10;
  --ink-2:    #17171b;
  --text:     #45433c;
  --muted:    #8b8678;
  --line:     #ddd6c6;
  --line-dk:  rgba(255, 255, 255, 0.13);
  --accent:   #1f3bff;
  --accent-2: #6d80ff;
  --soft:     #e9ecff;
  --pop:      #ff4d2e;
  --display:  "Bricolage Grotesque", system-ui, sans-serif;
  --serif:    "Instrument Serif", Georgia, serif;
  --body:     "Inter", system-ui, -apple-system, sans-serif;
  --mono:     "JetBrains Mono", ui-monospace, monospace;
  --wrap:     1200px;
  --pad:      clamp(1.2rem, 4.5vw, 4rem);
  --header:   72px;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }
html:not(.lenis-on) { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--body); font-size: 16px; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; color: var(--ink); font-weight: 700; line-height: 0.98; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: #fff; }

.display { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; }
.wrap { width: min(100% - 2 * var(--pad), var(--wrap)); margin-inline: auto; }

.skip-link { position: fixed; top: 10px; left: 50%; z-index: 600; transform: translate(-50%, -160%); padding: 10px 14px; border-radius: 8px; background: var(--ink); color: #fff; font-weight: 600; transition: transform 0.2s ease; }
.skip-link:focus { transform: translate(-50%, 0); }
.progress { position: fixed; inset: 0 auto auto 0; z-index: 300; height: 2px; width: 0; background: var(--accent); }

/* ============================================================
   HEADER
============================================================ */
.site-header { position: fixed; inset: 0 0 auto; z-index: 200; height: var(--header); display: flex; align-items: center; transition: background 0.3s ease, box-shadow 0.3s ease; }
.site-header.is-scrolled { background: rgba(244, 241, 234, 0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 2.5px solid var(--accent); background: transparent; font-family: var(--display); font-weight: 800; font-size: 0.8rem; color: var(--ink); letter-spacing: -0.05em; flex-shrink: 0; transition: background 0.22s ease, color 0.22s ease; }
.brand:hover .brand-mark { background: var(--accent); color: #fff; }
.brand-copy strong { color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -0.025em; white-space: nowrap; }
.brand-copy strong em { font-family: var(--display); font-style: normal; font-weight: 800; color: var(--accent); }
.nav-links { display: flex; gap: 1px; }
.nav-links a { position: relative; padding: 8px 13px; color: var(--text); font-family: var(--mono); font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.04em; transition: color 0.2s ease; }
.nav-links a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 1.5px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 999px; background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; transition: background 0.25s ease, transform 0.25s ease; }
.nav-cta img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.nav-cta:hover { background: var(--accent); transform: translateY(-2px); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 10px; background: transparent; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 3px auto; background: var(--ink); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(2.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-2.5px) rotate(-45deg); }

/* ============================================================
   BUTTONS
============================================================ */
.btn { display: inline-flex; align-items: center; gap: 10px; min-height: 56px; padding: 0 26px; border-radius: 999px; border: 1px solid transparent; font-family: var(--mono); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.btn img { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-3px); }
.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid img { filter: brightness(0) invert(1); }
.btn--solid:hover { background: var(--accent); }
.btn--line { border-color: var(--ink); color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--paper); }
.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper img { filter: brightness(0); }
.btn--paper:hover { background: var(--pop); color: #fff; }
.btn--paper:hover img { filter: brightness(0) invert(1); }

/* ============================================================
   SCENE SCAFFOLD + section heads
============================================================ */
.scene { position: relative; padding-block: clamp(5rem, 11vw, 9rem); }
.section-head { max-width: 760px; margin-bottom: clamp(2.6rem, 6vw, 4.5rem); }
.section-head--wide { max-width: 920px; }
.section-head--center { max-width: 800px; margin-inline: auto; text-align: center; }
.kicker { display: inline-block; font-family: var(--mono); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 1.2rem; }
.kicker::before { content: "— "; color: var(--muted); }
.section-head .display { font-size: clamp(2rem, 5vw, 3.7rem); line-height: 1.02; }
.section-head--center .kicker::before { content: ""; }

/* ============================================================
   HERO
============================================================ */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: var(--header); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 55% at 88% 12%, rgba(31,59,255,0.10), transparent 60%),
    radial-gradient(45% 45% at 96% 70%, rgba(255,77,46,0.07), transparent 60%);
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 10%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 10%, transparent 75%);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-copy { max-width: 620px; }
.eyebrow { font-family: var(--mono); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: clamp(1.4rem, 3vw, 2rem); }
.hero-title { font-family: var(--display); font-weight: 800; font-size: clamp(2.9rem, 7.2vw, 6rem); line-height: 0.92; letter-spacing: -0.04em; color: var(--ink); }
.hero-title span:not(.split-word):not(.split-inner) { color: var(--accent); font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.hero-lead { margin-top: clamp(1.4rem, 3vw, 2rem); max-width: 46ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: clamp(1.8rem, 4vw, 2.6rem); }

/* growth console */
.growth-console { position: relative; padding: 22px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(180deg, #fff, var(--paper)); box-shadow: 0 40px 90px -50px rgba(14,14,16,0.5); }
.console-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.console-top i { display: inline-block; width: 8px; height: 8px; margin-left: 5px; border-radius: 50%; background: var(--line); }
.console-top i:first-of-type { background: var(--pop); }
.console-profile { display: flex; align-items: center; gap: 14px; padding: 18px 4px; }
.profile-photo { position: relative; width: 64px; height: 64px; border-radius: 16px; overflow: hidden; flex: 0 0 64px; background: radial-gradient(130% 120% at 25% 0%, #3a55ff, #0a1056); }
.profile-photo img { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); height: 112%; width: auto; max-width: none; object-fit: contain; filter: grayscale(1) contrast(1.1); mix-blend-mode: luminosity; }
.console-profile strong { display: block; font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.console-profile small { color: var(--muted); font-size: 0.84rem; }

.orbit-map { position: relative; width: 100%; max-width: 320px; aspect-ratio: 1; margin: 8px auto 0; }
.orbit-map::before { content: ""; position: absolute; inset: 12%; border: 1px dashed var(--line); border-radius: 50%; animation: spin 44s linear infinite; }
.orbit-map::after { display: none; }
.orbit-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 8px rgba(31,59,255,0.08); z-index: 1; }
.orbit-center .ring-outer { transform-box: fill-box; transform-origin: center; animation: spin 24s linear infinite; }
.orbit-center .ring-mid { transform-box: fill-box; transform-origin: center; animation: spin-ccw 16s linear infinite; }
.orbit-center .center-dot { transform-box: fill-box; transform-origin: center; animation: target-pulse 2.4s ease-in-out infinite; }
@keyframes spin-ccw { to { transform: rotate(-360deg); } }
@keyframes target-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.6); opacity: 0.6; } }
.orbit-map .node { position: absolute; top: 50%; left: 50%; display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-family: var(--mono); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--ink); white-space: nowrap; box-shadow: 0 8px 20px -14px rgba(14,14,16,0.5); transform: translate(-50%, -50%) rotate(calc(var(--a) * 45deg)) translateY(-128px) rotate(calc(var(--a) * -45deg)); animation: bob 5s ease-in-out infinite; animation-delay: calc(var(--a) * -0.6s); }
.orbit-map .node img { width: 14px; height: 14px; object-fit: contain; }
.orbit-map .node:nth-child(2) { --a: 0; } .orbit-map .node:nth-child(3) { --a: 1; } .orbit-map .node:nth-child(4) { --a: 2; } .orbit-map .node:nth-child(5) { --a: 3; }
.orbit-map .node:nth-child(6) { --a: 4; } .orbit-map .node:nth-child(7) { --a: 5; } .orbit-map .node:nth-child(8) { --a: 6; } .orbit-map .node:nth-child(9) { --a: 7; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-center { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
@keyframes bob { 0%, 100% { margin-top: 0; } 50% { margin-top: -7px; } }

/* ============================================================
   SYSTEM — journey
============================================================ */
.system { background: var(--paper-2); border-block: 1px solid var(--line); }
.journey { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: #fff; }
.journey article { position: relative; padding: clamp(1.4rem, 2.2vw, 2rem); border-right: 1px solid var(--line); }
.journey article:last-child { border-right: none; }
.journey article::before { counter-increment: jcount; content: "0" counter(jcount); position: absolute; top: 16px; right: 18px; font-family: var(--mono); font-size: 0.74rem; color: var(--accent); }
.journey { counter-reset: jcount; }
.journey h3 { font-family: var(--display); font-size: 1.2rem; margin-bottom: 0.6rem; }
.journey h3::after { content: ""; display: block; width: 26px; height: 3px; margin-top: 0.7rem; border-radius: 3px; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }
.journey p { color: var(--text); font-size: 0.92rem; }

/* ============================================================
   SKINLAB — flagship (dark)
============================================================ */
.skinlab { background: var(--ink); color: var(--paper); }
.skinlab .kicker { color: var(--pop); }
.skinlab-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.skinlab-copy { position: sticky; top: 100px; }
.skinlab-copy .display { color: #fff; font-size: clamp(1.9rem, 4.2vw, 3.2rem); margin-bottom: 1.4rem; }
.skinlab-copy p { color: rgba(244,241,234,0.74); font-size: 1.05rem; }
.skinlab-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.skinlab-cards article { padding: 20px; border: 1px solid var(--line-dk); border-radius: 16px; background: rgba(255,255,255,0.03); transition: transform 0.3s var(--ease), background 0.3s ease, border-color 0.3s ease; }
.skinlab-cards article:hover { transform: translateY(-5px); background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.28); }
.skinlab-cards img { width: 30px; height: 30px; object-fit: contain; margin-bottom: 14px; }
.skinlab-cards h3 { color: #fff; font-family: var(--display); font-size: 1.08rem; }
.skinlab-cards p { margin-top: 0.5rem; color: rgba(244,241,234,0.66); font-size: 0.88rem; }

/* ============================================================
   CAPABILITIES
============================================================ */
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.capability-grid article { padding: clamp(1.4rem, 2vw, 1.9rem); border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease; }
.capability-grid article:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 30px 50px -36px rgba(31,59,255,0.5); }
.capability-grid h3 { font-family: var(--display); font-size: 1.16rem; padding-bottom: 0.8rem; margin-bottom: 0.8rem; border-bottom: 1px solid var(--line); }
.capability-grid p { color: var(--text); font-size: 0.92rem; }

/* ============================================================
   PROOF — stats (dark, the dopamine grid)
============================================================ */
.proof { background: var(--ink); color: var(--paper); }
.proof .kicker { color: var(--pop); }
.proof .section-head .display { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dk); border: 1px solid var(--line-dk); border-radius: 18px; overflow: hidden; }
.stats-grid article { padding: clamp(1.6rem, 2.6vw, 2.4rem); background: var(--ink); transition: background 0.3s ease; }
.stats-grid article:hover { background: var(--ink-2); }
.stats-grid strong { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 0.96; letter-spacing: -0.03em; background: linear-gradient(120deg, #fff, var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-grid span { display: block; margin-top: 0.9rem; color: rgba(244,241,234,0.6); font-size: 0.86rem; line-height: 1.45; }

/* ============================================================
   WORK / EXPERIENCE
============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.work-card { display: flex; flex-direction: column; padding: clamp(1.4rem, 2vw, 1.9rem); border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: transform 0.3s var(--ease), box-shadow 0.3s ease, border-color 0.3s ease; }
.work-card:hover { transform: translateY(-5px); border-color: var(--ink); box-shadow: 0 30px 50px -38px rgba(14,14,16,0.45); }
.work-card img { width: 32px; height: 32px; object-fit: contain; margin-bottom: 1.2rem; }
.work-card span { font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.work-card h3 { font-family: var(--display); font-size: 1.2rem; margin-top: 0.4rem; }
.work-card p { margin-top: 0.6rem; color: var(--text); font-size: 0.9rem; }
.work-card--feature { grid-column: span 1; background: linear-gradient(150deg, var(--soft), #fff); border-color: #cdd5ff; }
.work-card--feature h3 { font-size: 1.5rem; }

.project-roster { margin-top: clamp(2.5rem, 5vw, 4rem); padding: clamp(1.6rem, 3vw, 2.6rem); border: 1px solid var(--line); border-radius: 20px; background: var(--paper-2); }
.project-roster__head { display: grid; gap: 0.5rem; max-width: 620px; margin-bottom: 1.8rem; }
.project-roster__head span { font-family: var(--mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.project-roster__head p { color: var(--text); font-size: 0.96rem; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.project-card { display: flex; flex-direction: column; gap: 0.3rem; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: #fff; transition: transform 0.25s var(--ease), border-color 0.25s ease, box-shadow 0.25s ease; }
.project-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 24px 40px -34px rgba(31,59,255,0.5); }
.project-card img { width: 30px; height: 30px; object-fit: contain; border-radius: 7px; padding: 2px; border: 1px solid var(--line); background: #fff; }
.project-card strong { margin-top: 0.6rem; font-family: var(--display); font-size: 0.98rem; color: var(--ink); }
.project-card small { color: var(--muted); font-size: 0.78rem; line-height: 1.4; }

/* ============================================================
   STACK
============================================================ */
.stack { background: var(--paper-2); border-block: 1px solid var(--line); }
.stack-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stack-group { padding: clamp(1.4rem, 2vw, 1.8rem); border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.stack-group h3 { font-family: var(--display); font-size: 1.05rem; padding-bottom: 0.9rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); }
.stack-group ul { display: flex; flex-wrap: wrap; gap: 7px; }
.stack-group li { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); font-size: 0.8rem; font-weight: 500; color: var(--ink); transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease; }
.stack-group li:hover { transform: translateY(-2px); border-color: var(--accent); background: #fff; }
.stack-group img { width: 17px; height: 17px; object-fit: contain; }

/* ============================================================
   CONTACT (dark)
============================================================ */
.contact { background: var(--ink); color: var(--paper); text-align: center; position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; width: 560px; height: 560px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.06); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.contact::after { content: ''; position: absolute; width: 320px; height: 320px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.1); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.contact-inner { max-width: 820px; margin-inline: auto; position: relative; z-index: 1; }
.contact .kicker { color: var(--pop); }
.contact .display { color: #fff; font-size: clamp(2.2rem, 6vw, 4.6rem); line-height: 1.02; }
.contact-inner > p { margin: 1.5rem auto 0; max-width: 56ch; color: rgba(244,241,234,0.74); font-size: 1.1rem; }
.contact .btn { margin-top: 2.4rem; }
.contact-inner small { display: block; margin-top: 2rem; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.03em; color: rgba(244,241,234,0.5); }

/* ============================================================
   FOOTER + floating
============================================================ */
.footer { padding: 72px 0 36px; background: var(--paper); border-top: 1px solid var(--line); text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 0; }
.footer-mark { width: 76px; height: 76px; border-radius: 50%; border: 2.5px solid var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -0.05em; margin-bottom: 20px; transition: background 0.22s ease, color 0.22s ease; }
.footer-mark:hover { background: var(--accent); color: #fff; }
.footer-name { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--ink); letter-spacing: -0.025em; margin-bottom: 6px; }
.footer-name em { color: var(--accent); font-style: normal; }
.footer-tagline { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 32px; }
.footer-copy { font-family: var(--mono); font-size: 0.7rem; color: var(--muted); border-top: 1px solid var(--line); padding-top: 24px; width: 100%; }
.float-wa { position: fixed; right: 20px; bottom: 20px; z-index: 180; display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: #25d366; box-shadow: 0 18px 42px -22px rgba(37,211,102,0.95); transition: transform 0.25s ease; }
.float-wa:hover { transform: scale(1.08); }
.float-wa img { width: 28px; height: 28px; }

/* ============================================================
   REVEAL (one cohesive motion language)
============================================================ */
html.gsap-on [data-reveal] { opacity: 0; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; }
.split-inner { display: inline-block; will-change: transform; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .growth-console { max-width: 460px; }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey article:nth-child(2n) { border-right: none; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid { grid-template-columns: repeat(3, 1fr); }
  .stack-groups { grid-template-columns: repeat(2, 1fr); }
  .skinlab-grid { grid-template-columns: 1fr; }
  .skinlab-copy { position: static; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; inset: var(--header) 0 auto 0; flex-direction: column; gap: 2px; padding: 14px var(--pad) 22px; background: var(--paper); border-bottom: 1px solid var(--line); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform 0.4s var(--ease), opacity 0.3s ease; }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px; font-size: 0.95rem; }
  .menu-toggle { display: block; }
  .nav-cta { display: none; }
  .journey, .capability-grid, .stats-grid, .work-grid, .project-grid, .stack-groups, .skinlab-cards { grid-template-columns: 1fr; }
  .journey article { border-right: none; border-bottom: 1px solid var(--line); }
  .journey article:last-child { border-bottom: none; }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html.gsap-on [data-reveal] { opacity: 1 !important; }
  .orbit-map .node { animation: none; }
  .orbit-map::before { animation: none; }
  .orbit-center { transform: translate(-50%,-50%); }
  .orbit-center .ring-outer, .orbit-center .ring-mid, .orbit-center .center-dot { animation: none; }
}
