/* ============================================================
   PORTFOLIO — style.css   Samylla W. · Design Engineer
   ============================================================ */

/* ── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --accent:        rgb(39, 75, 103);
  --accent-hover:  rgb(28, 58, 82);
  --accent-light:  rgba(39, 75, 103, 0.08);
  --accent-border: rgba(39, 75, 103, 0.22);

  --bg:        #FFFFFF;
  --bg-alt:    #F6F5F2;
  --surface:   #FFFFFF;
  --border:    #E4E0DA;
  --border-mid:#C4BFB8;
  --text-faint:#B0AAA3;
  --text-muted:#857F78;
  --text-soft: #4A4640;
  --text:      #18160F;

  --skill-card-bg: #F1F2F4;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;

  --max-w:    100%;
  --pad-x:    320px;
  --nav-h:    60px;
  --radius:   8px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spr: cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-theme="dark"] {
  --accent:        rgb(90, 152, 200);
  --accent-hover:  rgb(70, 128, 175);
  --accent-light:  rgba(90, 152, 200, 0.1);
  --accent-border: rgba(90, 152, 200, 0.25);
  --bg:        #111009;
  --bg-alt:    #1A1814;
  --surface:   #201E19;
  --border:    #2E2B25;
  --border-mid:#3E3B34;
  --text-faint:#5C5850;
  --text-muted:#8C8880;
  --text-soft: #B8B4AC;
  --text:      #F0EDE6;
  --skill-card-bg: #1E2025;
}

/* ── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s, color 0.3s;
  overflow-x: hidden;
}
:target { scroll-margin-top: calc(var(--nav-h) + 2rem); }
img     { display: block; max-width: 100%; }
a       { color: inherit; text-decoration: none; }
ul, ol  { list-style: none; }
button  { cursor: pointer; border: none; background: none; font-family: var(--font); }
p       { color: var(--text-soft); }
strong  { font-weight: 500; color: var(--text); }
code    { font-family: 'SF Mono', 'Fira Code', monospace; font-size: 0.85em; background: var(--bg-alt); padding: 0.1em 0.35em; border-radius: 4px; border: 1px solid var(--border); }

/* ── 3. ANIMATIONS ─────────────────────────────────────────── */

/* CSS-only hero entry (no JS needed) */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes dot-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.75); }
}
@keyframes line-grow {
  from { height: 0; }
  to   { height: 100%; }
}

/* Scroll-reveal: JS adds .is-visible */
.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity  0.6s var(--ease-out) var(--d, 0s),
    transform 0.6s var(--ease-out) var(--d, 0s);
}
.reveal-up.is-visible { opacity: 1; transform: none; }

/* Stagger children: JS adds .is-visible to parent */
.stagger-children > * {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity  0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}
.stagger-children.is-visible > *:nth-child(1)  { transition-delay: 0.04s; }
.stagger-children.is-visible > *:nth-child(2)  { transition-delay: 0.10s; }
.stagger-children.is-visible > *:nth-child(3)  { transition-delay: 0.16s; }
.stagger-children.is-visible > *:nth-child(4)  { transition-delay: 0.22s; }
.stagger-children.is-visible > *:nth-child(5)  { transition-delay: 0.28s; }
.stagger-children.is-visible > *:nth-child(6)  { transition-delay: 0.34s; }
.stagger-children.is-visible > *:nth-child(7)  { transition-delay: 0.38s; }
.stagger-children.is-visible > *:nth-child(8)  { transition-delay: 0.42s; }
.stagger-children.is-visible > *:nth-child(9)  { transition-delay: 0.46s; }
.stagger-children.is-visible > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .stagger-children > * {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}

/* ── 4. LAYOUT ─────────────────────────────────────────────── */
.container {
  width: 100%;
  padding-inline: var(--pad-x);
}
.section { padding-block: var(--s12); }
.section--hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + var(--s16));
  padding-bottom: var(--s16);
  position: relative;
  overflow: hidden;
}
.section--hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(39,75,103,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
[data-theme="dark"] .section--hero::after {
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(120,180,230,0.06) 0%, transparent 70%);
}

/* ── 5. SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── 6. NAVIGATION ─────────────────────────────────────────── */
.nav-wrapper {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.nav-wrapper.is-scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: color-mix(in srgb, var(--border) 50%, transparent);
  box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  
  
  padding-inline: var(--pad-x);
  gap: var(--s6);
}
.nav__brand {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav__brand:hover { opacity: 0.5; }

/* Nav links row */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.22s var(--ease-out);
}
.nav__link:hover        { color: var(--text); }
.nav__link:hover::after { width: 100%; }
.nav__link.active       { color: var(--accent); }
.nav__link.active::after{ width: 100%; }

/* More dropdown */
.nav__more {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__more-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.2s;
  line-height: 1;
}
.nav__more-btn:hover,
.nav__more.is-open .nav__more-btn { color: var(--text); }
.nav__more-chevron {
  width: 10px; height: 6px;
  transition: transform 0.2s var(--ease-out);
  flex-shrink: 0;
}
.nav__more.is-open .nav__more-chevron { transform: rotate(180deg); }

.nav__dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 148px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(0,0,0,0.09);
  padding: var(--s2) 0;
  z-index: 101;
  list-style: none;
}
.nav__dropdown.is-open { display: flex; }
.nav__dropdown-link {
  display: block;
  padding: var(--s2) var(--s4);
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown-link:hover { color: var(--text); background: var(--bg-alt); }
.nav__dropdown-link.active { color: var(--accent); }

/* Right side actions */
.nav__actions { display: flex; align-items: center; gap: var(--s3); flex-shrink: 0; }

/* CV button — icon */
.nav__cv {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  flex-shrink: 0;
  transition: border-color 0.2s, color 0.2s, transform 0.22s var(--ease-spr);
}
.nav__cv svg { width: 14px; height: 14px; }
.nav__cv:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.theme-toggle {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, transform 0.25s var(--ease-spr);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); transform: rotate(22deg); }
.icon { width: 14px; height: 14px; }
[data-theme="light"] .icon--sun  { display: none; }
[data-theme="light"] .icon--moon { display: block; }
[data-theme="dark"]  .icon--moon { display: none; }
[data-theme="dark"]  .icon--sun  { display: block; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger__line { display: block; width: 18px; height: 1.5px; background: var(--text); border-radius: 2px; transition: transform 0.22s, opacity 0.22s; }
.hamburger.is-active .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── 7. SHARED ATOMS ───────────────────────────────────────── */
.label-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s4);
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--s2);
}
.section-header { margin-bottom: var(--s8); }

/* Universal tag — ONE style, all variants */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem var(--s3);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-soft);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s var(--ease-spr);
  white-space: nowrap;
}
.tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); transform: translateY(-1px); }

/* Size modifier */
.tag--sm { font-size: 0.65rem; padding: 0.22rem var(--s2); }

/* Accent/filled modifier */
.tag--accent {
  color: var(--accent);
  background: var(--accent-light);
  border-color: var(--accent-border);
}
.tag--accent:hover { background: var(--accent-light); transform: none; }

/* Ghost (white on dark bg) */
.tag--ghost {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
}
.tag--ghost:hover { color: #fff; border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.15); transform: none; }

/* CTA button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  transition: background 0.2s, transform 0.22s var(--ease-spr), box-shadow 0.2s;
}
.btn-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(39,75,103,0.22); }

/* ── 8. HERO ───────────────────────────────────────────────── */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.45;
}
[data-theme="dark"] .hero__canvas { opacity: 0.22; }

.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s5);
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.3rem var(--s4);
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  background: var(--accent-light);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dot-pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hero__name {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.hero__tagline {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-soft);
  max-width: 460px;
}
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  justify-content: center;
}

/* ── 9. ABOUT ──────────────────────────────────────────────── */
.about__body-group {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.about__body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* ── 10. WORK ──────────────────────────────────────────────── */
/* Experience list */
.exp-list { display: flex; flex-direction: column; }
.exp-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--s6);
  align-items: start;
  padding-block: var(--s6);
  border-bottom: 1px solid var(--border);
}
.exp-item:first-child { border-top: 1px solid var(--border); }
.exp-item__left {
  display: flex; flex-direction: column; gap: var(--s1);
  padding-top: 2px;
}
.exp-item__company {
  font-size: 0.92rem; font-weight: 500;
  color: var(--text); letter-spacing: -0.01em;
}
.exp-item__period {
  font-size: 0.7rem; color: var(--text-muted); font-weight: 300;
}
.exp-item__right { display: flex; flex-direction: column; gap: var(--s3); }
.exp-item__role {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
}
.exp-item__desc { font-size: 0.85rem; line-height: 1.75; color: var(--text-soft); }

.exp-item__sublabel {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  margin-top: var(--s2);
}
.exp-item__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: 0;
}
.exp-item__bullets li {
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--text-soft);
  padding-left: var(--s4);
  position: relative;
}
.exp-item__bullets li::before {
  content: '·';
  position: absolute;
  left: var(--s2);
  color: var(--text-muted);
}

.exp-item__tags { display: flex; flex-wrap: wrap; gap: var(--s1) var(--s2); }


/* ── 11. CASE STUDIES ──────────────────────────────────────── */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s5); }

.case-card {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, box-shadow 0.28s, transform 0.28s var(--ease-out);
}
.case-card:hover { border-color: var(--accent-border); box-shadow: 0 8px 32px rgba(39,75,103,0.1); transform: translateY(-3px); }

/* Visual preview area */
.case-card__visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--s6);
}
.case-card__visual--euler {
  background: linear-gradient(135deg, rgba(39,75,103,0.06) 0%, rgba(39,75,103,0.12) 100%);
}
.case-card__visual--gmail {
  background: linear-gradient(135deg, rgba(39,75,103,0.04) 0%, rgba(39,75,103,0.09) 100%);
}

/* EULER visual — abstract block layout */
.cvb-row { display: flex; gap: 6px; margin-bottom: 6px; }
.cvb {
  height: 20px; border-radius: 4px;
  background: rgba(39,75,103,0.15);
  flex: 1;
  transition: background 0.2s;
}
.cvb--wide { flex: 2; }
.cvb--full { flex: 1; width: 100%; }
.case-card:hover .cvb { background: rgba(39,75,103,0.25); }
[data-theme="dark"] .cvb { background: rgba(90,152,200,0.18); }
[data-theme="dark"] .case-card:hover .cvb { background: rgba(90,152,200,0.32); }

/* Gmail visual — signature mockup */
.sig-preview { display: flex; align-items: center; gap: var(--s4); }
.sig-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(39,75,103,0.2);
  flex-shrink: 0;
  transition: background 0.2s;
}
.case-card:hover .sig-avatar { background: rgba(39,75,103,0.35); }
[data-theme="dark"] .sig-avatar { background: rgba(90,152,200,0.25); }
.sig-lines { display: flex; flex-direction: column; gap: 6px; }
.sig-line { height: 8px; border-radius: 4px; background: rgba(39,75,103,0.15); transition: background 0.2s; }
.sig-line--name  { width: 120px; background: rgba(39,75,103,0.25); }
.sig-line--role  { width: 80px; }
.sig-line--email { width: 100px; }
.case-card:hover .sig-line { background: rgba(39,75,103,0.28); }
.case-card:hover .sig-line--name { background: rgba(39,75,103,0.4); }
[data-theme="dark"] .sig-line { background: rgba(90,152,200,0.18); }
[data-theme="dark"] .sig-line--name { background: rgba(90,152,200,0.32); }

.case-card__visual-badge {
  position: absolute;
  bottom: var(--s3); right: var(--s4);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Card body */
.case-card__body { padding: var(--s5) var(--s6) var(--s6); display: flex; flex-direction: column; gap: var(--s3); flex: 1; }
.case-card__meta { display: flex; justify-content: space-between; align-items: center; }
.case-card__year { font-size: 0.68rem; font-weight: 300; color: var(--text-faint); }
.case-card__title { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.02em; color: var(--text); line-height: 1.3; }
.case-card__desc { font-size: 0.83rem; line-height: 1.75; color: var(--text-soft); flex: 1; }
.case-card__pills { display: flex; flex-wrap: wrap; gap: var(--s1) var(--s2); }
.case-card__link {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 0.75rem; font-weight: 400; color: var(--accent);
  border: none; background: none; padding: 0;
  border-bottom: 1px solid var(--accent-border); padding-bottom: 1px;
  width: fit-content; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.case-card__link svg { width: 11px; height: 11px; transition: transform 0.2s var(--ease-spr); }
.case-card__link:hover { color: var(--accent-hover); border-color: var(--accent); }
.case-card__link:hover svg { transform: translateX(3px); }

/* ── 12. WRITING ───────────────────────────────────────────── */
.writing-list { display: flex; flex-direction: column; }
.writing-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: var(--s8);
  row-gap: var(--s2);
  padding-block: var(--s6);
  border-bottom: 1px solid var(--border);
}
.writing-item:first-child { border-top: 1px solid var(--border); }
.writing-item__meta { grid-column: 1; grid-row: 1; display: flex; align-items: center; gap: var(--s3); }
.writing-item__date { font-size: 0.68rem; color: var(--text-faint); font-weight: 300; }
.writing-item__title { grid-column: 1; grid-row: 2; font-size: 1rem; font-weight: 500; letter-spacing: -0.02em; color: var(--text); line-height: 1.35; }
.writing-item__desc { grid-column: 1; grid-row: 3; font-size: 0.83rem; line-height: 1.7; color: var(--text-soft); max-width: 520px; }
.writing-item__link {
  grid-column: 2; grid-row: 1 / 4; align-self: center;
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 0.75rem; font-weight: 400;
  color: var(--text);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s2) var(--s4);
  white-space: nowrap;
  cursor: pointer;
  font-family: var(--font);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.writing-item__link svg { width: 11px; height: 11px; flex-shrink: 0; transition: transform 0.2s var(--ease-spr); }
.writing-item__link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.writing-item__link:hover svg { transform: translateX(3px); }

/* ── 13. PROCESS TIMELINE (horizontal) ─────────────────────── */
/* ── VERTICAL ALTERNATING TIMELINE ────────────────────────── */
.timeline-v {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  /* Centre spine */
  padding: 0;
}

/* The continuous vertical line */
.timeline-v::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-v__item {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  align-items: start;
  gap: 0;
  padding-bottom: var(--s8);
  position: relative;
}
.timeline-v__item:last-child { padding-bottom: 0; }

/* Spine column (always centre) */
.timeline-v__spine {
  grid-column: 2;
  display: flex;
  justify-content: center;
  padding-top: var(--s5);
  position: relative;
  z-index: 1;
}

.timeline-v__dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s var(--ease-spr), border-color 0.2s;
}
.timeline-v__dot--loop {
  background: var(--accent-light);
  border-style: dashed;
}
.timeline-v__item:hover .timeline-v__dot {
  background: var(--accent);
  transform: scale(1.3);
}

/* Card */
.timeline-v__card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s5) var(--s5);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.timeline-v__card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 20px rgba(39,75,103,0.08);
  transform: translateY(-2px);
}
.timeline-v__card--accent {
  background: var(--accent-light);
  border-color: var(--accent-border);
}

.timeline-v__num {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-faint);
}
.timeline-v__title {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.timeline-v__card--accent .timeline-v__title { color: var(--accent); }
.timeline-v__desc {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-soft);
}

/* Right-side card: col 1 empty, col 3 has card */
.timeline-v__item--right .timeline-v__card {
  grid-column: 3;
  margin-left: var(--s4);
}
.timeline-v__item--right .timeline-v__spine { grid-column: 2; }
/* Push the empty cell */
.timeline-v__item--right > .timeline-v__card { grid-column: 3; }

/* Left-side card: col 1 has card, col 3 empty */
.timeline-v__item--left > .timeline-v__card {
  grid-column: 1;
  grid-row: 1;
  margin-right: var(--s4);
  text-align: right;
}
.timeline-v__item--left > .timeline-v__spine { grid-column: 2; grid-row: 1; }

/* Slide-in animations from each side */
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.6s var(--ease-out) var(--d, 0s), transform 0.6s var(--ease-out) var(--d, 0s);
}
.reveal-left.is-visible { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.6s var(--ease-out) var(--d, 0s), transform 0.6s var(--ease-out) var(--d, 0s);
}
.reveal-right.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── 14. SKILLS ────────────────────────────────────────────── */
.skills-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.skill-card {
  border: 1px solid var(--accent-border);
  border-radius: calc(var(--radius) + 2px);
  padding: var(--s6);
  background: var(--skill-card-bg, #F1F2F4);
  display: flex; flex-direction: column; gap: var(--s4);
  transition: background 0.22s, transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.skill-card:hover {
  background: color-mix(in srgb, var(--accent-light) 60%, var(--bg-alt));
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(39,75,103,0.07);
}
.skill-card__icon {
  width: 38px; height: 38px;
  border-radius: var(--radius);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.skill-card__icon svg { width: 17px; height: 17px; stroke: var(--accent); }
.skill-card__title { font-size: 0.95rem; font-weight: 500; letter-spacing: -0.02em; color: var(--text); }
.skill-card__desc  { font-size: 0.82rem; line-height: 1.75; color: var(--text-soft); }

/* ── 15. CONTACT ───────────────────────────────────────────── */
.contact-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s4);
  margin-bottom: var(--s16);
}
.contact__heading { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 500; letter-spacing: -0.035em; color: var(--text); margin-bottom: var(--s1); line-height: 1.1; }
.contact__links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s2) var(--s6); font-size: 0.82rem; color: var(--text-muted); }
.contact__links a { color: var(--accent); border-bottom: 1px solid var(--accent-border); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.contact__links a:hover { color: var(--accent-hover); border-color: var(--accent); }

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s3);
  margin-top: var(--s3);
}
.contact__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.22s var(--ease-spr), box-shadow 0.2s;
  text-decoration: none;
}
.contact__btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.contact__btn--primary {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.contact__btn--primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(39,75,103,0.22);
}
.contact__btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.contact__btn--secondary:hover {
  background: var(--bg-alt);
  border-color: var(--text-muted);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}


/* ── 16. FOOTER ────────────────────────────────────────────── */
.footer { padding-block: var(--s6); border-top: 1px solid var(--border); }
.footer__inner { display: flex; justify-content: space-between; align-items: center; }
.footer__copy { font-size: 0.75rem; color: var(--text-muted); font-weight: 300; }
.footer__links { display: flex; align-items: center; gap: var(--s6); }
.footer__link { font-size: 0.75rem; color: var(--text-muted); transition: color 0.2s; }
.footer__link:hover { color: var(--accent); }
.footer__top { font-size: 0.75rem; color: var(--text-muted); transition: color 0.2s, transform 0.2s; display: inline-block; }
.footer__top:hover { color: var(--accent); transform: translateY(-2px); }

/* ── 17. PROJECT PAGES ─────────────────────────────────────── */
.project-page {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  overflow-y: auto;
  transition: background 0.3s;
}
.project-page.is-open {
  display: block;
  animation: page-in 0.4s var(--ease-out) both;
}
@keyframes page-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.page-nav {
  position: sticky;
  top: 0;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
  max-width: 100%;
}
.page-back {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: 0.8rem; color: var(--text-muted);
  font-family: var(--font);
  transition: color 0.2s, gap 0.2s;
}
.page-back:hover { color: var(--text); gap: var(--s3); }
.page-back svg { width: 14px; height: 14px; }
.page-nav__title { font-size: 0.82rem; font-weight: 500; color: var(--text); letter-spacing: -0.01em; }

.page-body { padding-block: var(--s16); }
.page-container { max-width: 760px; margin-inline: auto; padding-inline: 2rem; display: flex; flex-direction: column; gap: var(--s12); }

.page-hero { display: flex; flex-direction: column; gap: var(--s4); }
.page-hero__meta { display: flex; align-items: center; gap: var(--s3); }
.page-hero__title { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 500; letter-spacing: -0.04em; color: var(--text); line-height: 1.1; }
.page-hero__sub { font-size: 1rem; font-weight: 300; color: var(--text-soft); line-height: 1.75; max-width: 520px; }
.page-hero__tags { display: flex; flex-wrap: wrap; gap: var(--s2); }

.page-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  padding: var(--s6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
}
.page-overview__item { display: flex; flex-direction: column; gap: var(--s1); }
.page-overview__label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.page-overview__value { font-size: 0.88rem; font-weight: 400; color: var(--text); }

.page-section { display: flex; flex-direction: column; gap: var(--s4); }
.page-section__title { font-size: 1.1rem; font-weight: 500; letter-spacing: -0.02em; color: var(--text); }
.page-section__body { font-size: 0.92rem; line-height: 1.8; color: var(--text-soft); }
.page-quote {
  border-left: 2px solid var(--accent-border);
  padding: var(--s4) var(--s5);
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.75;
  margin-block: var(--s2);
}

.page-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.page-feature { border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s5); display: flex; flex-direction: column; gap: var(--s2); background: var(--surface); }
.page-feature__title { font-size: 0.88rem; font-weight: 500; color: var(--text); }
.page-feature__desc { font-size: 0.82rem; line-height: 1.7; color: var(--text-soft); }

/* Decisions list */
.page-decisions { display: flex; flex-direction: column; gap: 0; }
.page-decision {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s5);
  padding-block: var(--s5);
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.page-decision:first-child { border-top: 1px solid var(--border); }
.page-decision__tag {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  padding-top: 3px;
}
.page-decision__title { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: var(--s2); letter-spacing: -0.01em; }
.page-decision__body  { font-size: 0.83rem; line-height: 1.75; color: var(--text-soft); }

/* Metrics row */
.page-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
}
.page-metric {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--s5) var(--s4);
  display: flex; flex-direction: column; gap: var(--s2);
  background: var(--surface);
  text-align: center;
}
.page-metric__value {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
}
.page-metric__label { font-size: 0.75rem; line-height: 1.5; color: var(--text-muted); }


/* ── ARTICLE PAGE ──────────────────────────────────────────── */
.page-container--article { max-width: 660px; }
.article-body { display: flex; flex-direction: column; gap: var(--s6); }
.article__h2 { font-size: 1.1rem; font-weight: 500; letter-spacing: -0.02em; color: var(--text); margin-top: var(--s4); }
.article__h3 { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.article__p  { font-size: 0.92rem; line-height: 1.85; color: var(--text-soft); }
.article__quote {
  border-left: 2px solid var(--accent-border);
  padding: var(--s4) var(--s5);
  background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem; font-style: italic;
  color: var(--text-soft); line-height: 1.75;
}
.article__principles { display: flex; flex-direction: column; gap: var(--s4); }
.article__principle {
  display: flex; gap: var(--s5); align-items: start;
  padding: var(--s5); border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
}
.article__principle-num {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em;
  color: var(--accent); background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 3px var(--s2); border-radius: 4px;
  flex-shrink: 0; margin-top: 2px;
}
.article__principle-title { font-size: 0.9rem; font-weight: 500; color: var(--text); margin-bottom: var(--s2); }
.article__principle-body { font-size: 0.83rem; line-height: 1.75; color: var(--text-soft); }
.article__refs { display: flex; flex-direction: column; gap: var(--s2); padding-top: var(--s6); border-top: 1px solid var(--border); margin-top: var(--s4); }
.article__refs-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.article__ref-link { font-size: 0.82rem; color: var(--accent); border-bottom: 1px solid var(--accent-border); padding-bottom: 1px; width: fit-content; transition: color 0.2s; }
.article__ref-link:hover { color: var(--accent-hover); }


/* ── MOBILE MENU PANEL ─────────────────────────────────────── */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  transition: background 0.3s;
}
.mobile-menu.is-open { display: flex; }

.mobile-menu__link {
  display: block;
  width: 100%;
  padding: var(--s4) var(--s5);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.mobile-menu__link:last-child { border-bottom: none; }
.mobile-menu__link:hover { color: var(--accent); background: var(--accent-light); }
.mobile-menu__link--sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding-left: var(--s6);
}
.mobile-menu__divider {
  height: 1px;
  background: var(--border);
}

/* ── 18. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 780px) {
  :root { --pad-x: 2rem; }
  .exp-item        { grid-template-columns: 1fr; gap: var(--s3); }
  .case-grid       { grid-template-columns: 1fr; }
  .skills-grid     { grid-template-columns: 1fr 1fr; }
  .writing-item    { grid-template-columns: 1fr; }
  .writing-item__link {
    grid-column: 1;
    grid-row: auto;
    margin-top: var(--s3);
    align-self: flex-start;
  }
  .page-overview   { grid-template-columns: 1fr 1fr; }
  .page-feature-grid { grid-template-columns: 1fr; }
  .page-metrics    { grid-template-columns: 1fr; }
  .page-decision   { grid-template-columns: 1fr; gap: var(--s2); }
  .page-decision__tag { padding-top: 0; }
}

@media (max-width: 580px) {
  :root { --pad-x: 1.25rem; }
  .section       { padding-block: var(--s12); }
  .section--hero { padding-top: calc(var(--nav-h) + var(--s12)); }

  /* Hide desktop nav links, show hamburger */
  .nav__links { display: none !important; }
  .nav__more-btn { display: none; }

  .hamburger { display: flex; }
  .hero__name { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .exp-item        { grid-template-columns: 1fr; gap: var(--s3); }
  .skills-grid { grid-template-columns: 1fr; }
  .btn-send    { align-self: stretch; }
  .footer__inner { flex-direction: column; gap: var(--s3); text-align: center; }
  .page-overview { grid-template-columns: 1fr 1fr; }
  .page-feature-grid { grid-template-columns: 1fr; }
  .page-metrics { grid-template-columns: 1fr; }
}

/* ── DESIGN LANGUAGE SECTION ───────────────────────────────── */
.page-dl-grid {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}
.page-dl-block { display: flex; flex-direction: column; gap: var(--s4); }
.page-dl-block__title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Swatches */
.page-swatches { display: flex; flex-wrap: wrap; gap: var(--s4); }
.page-swatch { display: flex; flex-direction: column; align-items: center; gap: var(--s2); }
.page-swatch__color {
  width: 56px; height: 56px;
  border-radius: var(--radius);
}
.page-swatch__label {
  font-size: 0.62rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* Type scale */
.page-type-scale {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.page-type-row {
  display: grid;
  grid-template-columns: 100px 1fr 100px;
  align-items: center;
  gap: var(--s4);
  padding: var(--s3) var(--s4);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.page-type-row:last-child { border-bottom: none; }
.page-type-role { font-size: 0.7rem; color: var(--text-muted); }
.page-type-sample { color: var(--text); }
.page-type-spec { font-size: 0.65rem; color: var(--text-faint); font-family: 'SF Mono', monospace; text-align: right; }

/* Component patterns */
.page-components { display: flex; flex-wrap: wrap; gap: var(--s2); align-items: center; }
.page-comp { font-size: 0.75rem; padding: 0.4rem 0.9rem; border-radius: 6px; font-weight: 500; }
.page-comp--primary { background: #2563EB; color: #fff; }
.page-comp--badge { background: #eff4ff; color: #2563EB; border: 1px solid #dce8ff; }
.page-comp--pill { background: #fff; color: #6c7583; border: 1px solid #e8ebf0; }
.page-comp--active { background: #2563EB; color: #fff; }
.page-comp--design { background: #f4f0fe; color: #6d28d9; border: 1px solid #ddd5fb; font-size: 0.7rem; }
.page-comp--business { background: #fdf6ee; color: #92400e; border: 1px solid #f0d9b5; font-size: 0.7rem; }
.page-comp--sales { background: #edf7f2; color: #1e5c3a; border: 1px solid #b3d9c4; font-size: 0.7rem; }

/* ── COMING SOON BLOCK ─────────────────────────────────────── */
.coming-soon-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  padding: var(--s12) var(--s8);
  text-align: center;
}

.coming-soon__lottie {
  width: 160px;
  height: 160px;
}

.coming-soon__text {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  align-items: center;
}

.coming-soon__label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 0.3rem var(--s4);
  border-radius: 999px;
}

.coming-soon__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── EXTRA SCROLL ANIMATIONS ───────────────────────────────── */
/* Scale-in for cards/metrics */
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.5s var(--ease-out) var(--d, 0s), transform 0.5s var(--ease-out) var(--d, 0s);
}
.reveal-scale.is-visible { opacity: 1; transform: none; }

/* Fade only (for subtle elements) */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out) var(--d, 0s);
}
.reveal-fade.is-visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal-scale, .reveal-fade { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Timeline mobile: collapse to single column */
@media (max-width: 600px) {
  .timeline-v::before { left: 16px; transform: none; }
  .timeline-v__item {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto;
  }
  .timeline-v__item--right .timeline-v__spine,
  .timeline-v__item--left .timeline-v__spine {
    grid-column: 1; grid-row: 1;
  }
  .timeline-v__item--right .timeline-v__card,
  .timeline-v__item--left .timeline-v__card {
    grid-column: 2; grid-row: 1;
    margin-left: var(--s3); margin-right: 0;
    text-align: left;
  }
}

/* ── SCROLL TO TOP BUTTON ──────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 150;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out), border-color 0.2s, color 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}
.scroll-top svg { width: 14px; height: 14px; }
.scroll-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.scroll-top:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(39,75,103,0.15);
  transform: translateY(-2px);
}

/* ── PIXEL CURSOR ──────────────────────────────────────────── */
html, body, * {
  cursor: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2213%22%20height%3D%2220%22%20viewBox%3D%220%200%2013%2020%22%20shape-rendering%3D%22crispEdges%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%224%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%224%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%226%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2212%22%20y%3D%2212%22%20width%3D%221%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3C/svg%3E') 0 0, auto;
}
[data-theme="dark"] html,
[data-theme="dark"] body,
[data-theme="dark"] * {
  cursor: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2213%22%20height%3D%2220%22%20viewBox%3D%220%200%2013%2020%22%20shape-rendering%3D%22crispEdges%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%224%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%224%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%226%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2212%22%20y%3D%2212%22%20width%3D%221%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3C/svg%3E') 0 0, auto;
}
a, button, [role="button"], label, select, input[type="submit"],
input[type="button"], input[type="checkbox"], input[type="radio"] {
  cursor: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2213%22%20height%3D%2220%22%20viewBox%3D%220%200%2013%2020%22%20shape-rendering%3D%22crispEdges%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%220%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%224%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%224%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23fff%22/%3E%3Crect%20x%3D%226%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%228%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3Crect%20x%3D%2212%22%20y%3D%2212%22%20width%3D%221%22%20height%3D%222%22%20fill%3D%22%2318160F%22/%3E%3C/svg%3E') 0 0, pointer;
}
[data-theme="dark"] a,
[data-theme="dark"] button,
[data-theme="dark"] [role="button"] {
  cursor: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2213%22%20height%3D%2220%22%20viewBox%3D%220%200%2013%2020%22%20shape-rendering%3D%22crispEdges%22%3E%3Crect%20x%3D%220%22%20y%3D%220%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%220%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%222%22%20y%3D%222%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%222%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%222%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%224%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%224%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%224%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%226%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23111009%22/%3E%3Crect%20x%3D%226%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%226%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%228%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%228%22%20y%3D%2216%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2210%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2212%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2210%22%20y%3D%2214%22%20width%3D%222%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3Crect%20x%3D%2212%22%20y%3D%2212%22%20width%3D%221%22%20height%3D%222%22%20fill%3D%22%23F0EDE6%22/%3E%3C/svg%3E') 0 0, pointer;
}
