/* Self-hosted fonts (latin) */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("fonts/space-grotesk.woff2") format("woff2");
}

@font-face {
  font-family: "Caveat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/caveat.woff2") format("woff2");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/roboto.woff2") format("woff2");
}

/* ---------- Base ---------- */
:root {
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.3, 1.8, 0.5, 1);
  --dur-quick: 0.2s;
  --dur-med: 0.45s;
  --dur-slow: 0.6s;
  --bg: #0f172a;            /* slate-900 */
  --bg-card: rgba(30, 41, 59, 0.5);
  --text: #94a3b8;          /* slate-400 */
  --text-bright: #e2e8f0;   /* slate-200 */
  --accent: #3ddc84;        /* android green */
  --pill-bg: rgba(61, 220, 132, 0.1);
  --border: rgba(148, 163, 184, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background-color: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.875em;
  color: var(--text-bright);
}

/* ---------- Layout ---------- */
.layout {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .layout {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 3rem;
  }
}

/* ---------- Sidebar ---------- */
.sidebar {
  padding: 3rem 0 1rem;
}

@media (min-width: 1024px) {
  .sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 42%;
    max-height: 100vh;
    padding: 2.5rem 0 1.75rem;
  }
}

/* only screens too short for the budgeted sidebar get a scrollbar
   (a scroll container would clip the status dot's ping ring) */
@media (min-width: 1024px) and (max-height: 799px) {
  .sidebar { overflow-y: auto; }
}

.sidebar h1 {
  font-family: "Space Grotesk", "Roboto", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-bright);
}

.sidebar h1 a:hover { color: var(--accent); }

.sidebar h2 {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-bright);
}

.tagline {
  margin-top: 1rem;
  max-width: 20rem;
}

/* Nav */
.site-nav { display: none; }

@media (min-width: 1024px) {
  .site-nav { display: block; margin-top: 1.25rem; }
}

.site-nav ul { list-style: none; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.3rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-line {
  width: 2rem;
  height: 1px;
  background-color: var(--text);
  transition: width var(--dur-quick) var(--ease), background-color var(--dur-quick) var(--ease);
}

.nav-link:hover .nav-text,
.nav-link.active .nav-text { color: var(--text-bright); }

.nav-link:hover .nav-line,
.nav-link.active .nav-line {
  width: 4rem;
  background-color: var(--text-bright);
}

/* Socials */
.socials {
  display: flex;
  gap: 1.25rem;
  list-style: none;
  margin-top: 1rem;
}

.socials a {
  display: block;
  color: var(--text);
  transition: color var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease);
}

.socials a:hover { color: var(--accent); transform: translateY(-2px); }

/* ---------- Content ---------- */
.content {
  padding: 1rem 0 6rem;
}

@media (min-width: 1024px) {
  .content { width: 52%; padding: 6rem 0; }
}

section { margin-bottom: 6rem; scroll-margin-top: 4rem; }

section:last-of-type { margin-bottom: 2rem; }

.section-heading {
  position: sticky;
  top: 0;
  z-index: 5;
  margin: 0 -1.5rem 1rem;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(8px);
  background-color: rgba(15, 23, 42, 0.75);
}

@media (min-width: 1024px) {
  .section-heading {
    position: static;
    margin: 0 0 1rem;
    padding: 0;
    backdrop-filter: none;
    background: none;
  }
}

.section-heading h3 {
  font-family: "Space Grotesk", "Roboto", sans-serif;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
}

.sh-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

section > p { margin-bottom: 1rem; }

section p a {
  color: var(--text-bright);
  font-weight: 500;
  transition: color var(--dur-quick) var(--ease);
}

section p a:hover { color: var(--accent); }

section p strong { color: var(--text-bright); font-weight: 600; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
}

.stat {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--bg-card);
}

.stat-value {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}

.stat-label {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 6px 0 2px;
  border-radius: 50%;
  vertical-align: middle;
}

.badge-dot.gold { background: #f4c430; }
.badge-dot.silver { background: #b4b8bd; }
.badge-dot.bronze { background: #d38a5e; }

/* ---------- Experience summary ---------- */
.tl-summary {
  padding: 1.25rem;
  margin-bottom: 1.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--bg-card);
}

.tl-summary p { font-size: 0.95rem; }

.tl-summary .pills { margin-top: 0.85rem; }

/* ---------- Recommendations carousel ---------- */
.reco-carousel {
  overflow: hidden;
  margin-bottom: 1rem;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.reco-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reco-marquee var(--reco-dur, 40s) linear infinite;
}

.reco-carousel:hover .reco-track { animation-play-state: paused; }

@keyframes reco-marquee {
  to { transform: translateX(-50%); }
}

.reco-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(26rem, 80vw);
  flex-shrink: 0;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--bg-card);
}

.reco-card blockquote {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--text);
}

.reco-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 1rem;
}

.reco-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
}

.reco-sub { font-size: 0.78rem; }

.reco-sub.muted { color: rgba(148, 163, 184, 0.7); }

@media (prefers-reduced-motion: reduce) {
  .reco-track { animation: none; }
  .reco-carousel { overflow-x: auto; }
}

/* ---------- Experience timeline (tree) ---------- */
.timeline {
  position: relative;
  list-style: none;
  margin-top: 0.5rem;
  padding-left: 1.75rem;
}

/* trunk */
.timeline::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 0.42rem;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent),
    rgba(61, 220, 132, 0.15)
  );
}

.tl-node {
  position: relative;
  padding-bottom: 2.5rem;
}

.tl-node:last-child { padding-bottom: 0; }

/* branch dot */
.tl-node::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: -1.75rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--bg);
  border: 2px solid var(--accent);
  transition: background-color var(--dur-quick) var(--ease), box-shadow var(--dur-quick) var(--ease);
}

.tl-node:hover::before {
  background-color: var(--accent);
  box-shadow: 0 0 12px rgba(61, 220, 132, 0.6);
}

.tl-node:first-child::before {
  background-color: var(--accent);
}

.tl-date {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.15rem;
}

.tl-date:empty { display: none; }

.tl-node h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-bright);
}

.tl-node h4 a { transition: color var(--dur-quick) var(--ease); }

.tl-node h4 a:hover { color: var(--accent); }

.tl-node p { margin-top: 0.5rem; font-size: 0.9rem; }

.tl-node p a {
  color: var(--text-bright);
  font-weight: 500;
}

.tl-node p a:hover { color: var(--accent); }

.arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25rem;
  vertical-align: -0.15em;
  transition: transform var(--dur-quick) var(--ease);
}

.tl-node h4 a:hover .arrow,
.inline-cta:hover .arrow {
  transform: translate(3px, -3px);
}

/* Sub-roles inside a timeline node (e.g. multiple roles at one company) */
.tl-subrole {
  margin-top: 0.9rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(61, 220, 132, 0.25);
}

.tl-subrole h5 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-bright);
}

.tl-subrole .tl-date { margin-bottom: 0.05rem; }

.tl-subrole p { margin-top: 0.35rem; font-size: 0.88rem; }

.tl-subrole p a { color: var(--text-bright); font-weight: 500; }

.tl-subrole p a:hover { color: var(--accent); }

/* Sub-line for list items (issuer, dates) */
.item-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.85);
}

/* Pills */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin-top: 0.85rem;
}

.pills li {
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--pill-bg);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
}

/* Skill groups */
.skill-group { margin-bottom: 1.5rem; }

.skill-group:last-of-type { margin-bottom: 0; }

.skill-group h5 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin-bottom: 0.5rem;
}

.skill-group .pills { margin-top: 0; }

/* Honors list */
.honor-list { list-style: none; }

.honor-list li {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--bg-card);
}

.honor-list h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-bright);
}

.honor-list p {
  margin-top: 0.35rem;
  font-size: 0.85rem;
}

/* CTA links */
.inline-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--text-bright);
  transition: color var(--dur-quick) var(--ease);
}

.inline-cta:hover { color: var(--accent); }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0 2rem;
}


/* ---------- Experience accordion ---------- */
.tl-details summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding-right: 1.75rem;
}

.tl-details summary::-webkit-details-marker { display: none; }

.tl-details summary::after {
  content: "";
  position: absolute;
  right: 0.4rem;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  transition: transform var(--dur-quick) var(--ease), top var(--dur-quick) var(--ease);
}

.tl-details[open] summary::after {
  transform: rotate(225deg);
  top: 0.75rem;
}

.tl-details summary:hover h4,
.tl-details summary:hover h4 a { color: var(--accent); }

.tl-body { margin-top: 0.25rem; }

/* ---------- Compact skills grid ---------- */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem 2rem;
}

@media (min-width: 640px) {
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
}

.skills-grid .skill-group { margin-bottom: 0; }

.skills-grid .pills li {
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
}

/* ---------- Premium polish ---------- */


/* Scroll reveal (class added by JS; no-JS users see everything) */
.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.will-reveal.revealed {
  opacity: 1;
  transform: none;
}

/* Card hover lift */
.honor-list li,
.stat,
.tl-summary {
  transition: transform var(--dur-quick) var(--ease), border-color var(--dur-quick) var(--ease), box-shadow var(--dur-quick) var(--ease);
}

.honor-list li:hover,
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 220, 132, 0.35);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.45);
}

/* Accessible focus states */
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Inline link underline on hover */
section p a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .will-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .honor-list li:hover,
  .stat:hover { transform: none; }
}

/* ---------- Theme toggle ---------- */
#theme-toggle {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  color: var(--text-bright);
  cursor: pointer;
  transition: color var(--dur-quick) var(--ease), border-color var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease);
}

#theme-toggle:hover {
  color: var(--accent);
  border-color: rgba(61, 220, 132, 0.35);
  transform: rotate(15deg);
}

#theme-toggle .icon-moon { display: none; }

html[data-theme="light"] #theme-toggle .icon-sun { display: none; }
html[data-theme="light"] #theme-toggle .icon-moon { display: block; }

/* ---------- Light theme ---------- */
html[data-theme="light"] {
  --bg: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.8);
  --text: #475569;
  --text-bright: #0f172a;
  --accent: #0a8f4e;
  --pill-bg: rgba(10, 143, 78, 0.1);
  --border: rgba(15, 23, 42, 0.1);
}

html[data-theme="light"] .section-heading {
  background-color: rgba(241, 245, 249, 0.85);
}

html[data-theme="light"] .timeline::before {
  background: linear-gradient(to bottom, var(--accent), rgba(10, 143, 78, 0.15));
}

html[data-theme="light"] .tl-subrole {
  border-left-color: rgba(10, 143, 78, 0.3);
}

html[data-theme="light"] .tl-node:hover::before {
  box-shadow: 0 0 12px rgba(10, 143, 78, 0.45);
}

html[data-theme="light"] .honor-list li:hover,
html[data-theme="light"] .stat:hover {
  border-color: rgba(10, 143, 78, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}



html[data-theme="light"] .card:hover,
html[data-theme="light"] .reco-card {
  box-shadow: none;
}

html[data-theme="light"] .reco-sub.muted,
html[data-theme="light"] .item-sub {
  color: rgba(71, 85, 105, 0.75);
}

html[data-theme="light"] .site-footer {
  color: rgba(71, 85, 105, 0.6);
}

/* ---------- Project cover (trailer) ---------- */
.project-cover {
  display: block;
  margin-bottom: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease);
}

.project-cover img,
.project-cover video {
  display: block;
  width: 100%;
  height: auto;
}

.project-cover:hover {
  border-color: rgba(61, 220, 132, 0.45);
  transform: translateY(-2px);
}

html[data-theme="light"] .project-cover:hover {
  border-color: rgba(10, 143, 78, 0.4);
}

/* ---------- Intro loader ---------- */
body.loading { overflow: hidden; }

#loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background-color: var(--bg);
  transition: background-color var(--dur-med) var(--ease);
}

#loader.done {
  background-color: transparent;
  pointer-events: none;
}

#loader svg {
  width: 90px;
  height: 90px;
  color: var(--accent);
  animation: loader-pop var(--dur-med) var(--ease) 1.45s forwards;
}

#loader .hex {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: hex-draw 1.1s ease forwards;
}

#loader .hex-letter {
  font-family: "Roboto", -apple-system, sans-serif;
  font-size: 40px;
  font-weight: 600;
  fill: var(--accent);
  opacity: 0;
  animation: hex-letter-in 0.35s ease 0.9s forwards;
}

@keyframes hex-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes hex-letter-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes loader-pop {
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  #loader { display: none; }
  body.loading { overflow: auto; }
}

/* ---------- Scroll progress bar ---------- */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--accent), rgba(61, 220, 132, 0.6));
  z-index: 40;
  pointer-events: none;
}

/* ---------- Hero cascade (after the loader melts away) ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

body.cascade .sidebar h1        { animation: rise var(--dur-med) var(--ease) both 0.05s; }
body.cascade .sidebar h2        { animation: rise var(--dur-med) var(--ease) both 0.15s; }
body.cascade .sidebar .tagline  { animation: rise var(--dur-med) var(--ease) both 0.25s; }
body.cascade .site-nav li:nth-child(1) { animation: rise var(--dur-med) var(--ease) both 0.35s; }
body.cascade .site-nav li:nth-child(2) { animation: rise var(--dur-med) var(--ease) both 0.40s; }
body.cascade .site-nav li:nth-child(3) { animation: rise var(--dur-med) var(--ease) both 0.45s; }
body.cascade .site-nav li:nth-child(4) { animation: rise var(--dur-med) var(--ease) both 0.50s; }
body.cascade .site-nav li:nth-child(5) { animation: rise var(--dur-med) var(--ease) both 0.55s; }
body.cascade .site-nav li:nth-child(6) { animation: rise var(--dur-med) var(--ease) both 0.60s; }
body.cascade .site-nav li:nth-child(7) { animation: rise var(--dur-med) var(--ease) both 0.65s; }
body.cascade .site-nav li:nth-child(8) { animation: rise var(--dur-med) var(--ease) both 0.70s; }
body.cascade .site-nav li:nth-child(9) { animation: rise var(--dur-med) var(--ease) both 0.75s; }
body.cascade .socials           { animation: rise var(--dur-med) var(--ease) both 0.85s; }

/* ---------- "Present" dot radar ping ---------- */
@keyframes dot-ping {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

.tl-node:first-child::before {
  animation: dot-ping 2.6s ease-out infinite;
}

html[data-theme="light"] .tl-node:first-child::before {
  animation-name: dot-ping-light;
}

@keyframes dot-ping-light {
  0% { box-shadow: 0 0 0 0 rgba(10, 143, 78, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(10, 143, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 143, 78, 0); }
}

/* ---------- Pill micro-interaction ---------- */
.pills li {
  transition: transform var(--dur-quick) var(--ease), background-color var(--dur-quick) var(--ease);
}

.pills li:hover {
  transform: translateY(-2px);
  background-color: rgba(61, 220, 132, 0.2);
}

html[data-theme="light"] .pills li:hover {
  background-color: rgba(10, 143, 78, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  #progress { display: none; }
  body.cascade .sidebar h1,
  body.cascade .sidebar h2,
  body.cascade .sidebar .tagline,
  body.cascade .site-nav li,
  body.cascade .socials { animation: none; }
  .tl-node:first-child::before { animation: none; }
  .pills li:hover { transform: none; }
}

/* ---------- Typewriter caret ---------- */
#tagline-caret {
  display: none;
  width: 2px;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: -0.15em;
  background-color: var(--accent);
}

body.typing #tagline-caret {
  display: inline-block;
  animation: caret-blink 0.85s step-end infinite;
}

@keyframes caret-blink {
  50% { opacity: 0; }
}

/* ---------- 3D tilt cards ---------- */
.stat,
.honor-list li {
  will-change: transform;
}

/* ---------- Parallax cover ---------- */
.project-cover {
  overflow: hidden;
  clip-path: inset(0 round 0.75rem);
  transform: translateZ(0);
}

.project-cover img,
.project-cover video {
  transform: scale(1.12);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .project-cover img,
  .project-cover video { transform: none; }
  body.typing #tagline-caret { display: none; }
}

/* ---------- Project card icon header ---------- */
.proj-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.6rem;
}

.proj-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 13px;
  border: 1px solid var(--border);
  background-color: var(--bg);
  object-fit: cover;
}

.proj-title h4 { margin: 0; }

.proj-title .item-sub { margin-top: 0.15rem; }


/* ---------- Corner monogram ---------- */
#monogram {
  position: fixed;
  top: 1.1rem;
  left: 1.25rem;
  z-index: 30;
  color: var(--accent);
  opacity: 0;
  transition: transform var(--dur-quick) var(--ease), filter var(--dur-quick) var(--ease);
}

#monogram:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 8px rgba(61, 220, 132, 0.5));
}

#monogram text { font-family: "Roboto", sans-serif; }

/* ---------- Get in touch ---------- */
.contact-lede {
  max-width: 34rem;
  font-size: 1.05rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.85rem 2rem;
  border: 1px solid var(--accent);
  border-radius: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  transition: background-color var(--dur-quick) var(--ease), color var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease);
}

.cta-button:hover {
  background-color: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
}

/* ---------- Section numbering ---------- */
.content { counter-reset: sec; }

.content section .section-heading h3::before {
  counter-increment: sec;
  content: counter(sec, decimal-leading-zero);
  color: var(--accent);
  font-weight: 400;
  opacity: 0.65;
  letter-spacing: 0.05em;
}

/* ---------- Custom scrollbar ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(61, 220, 132, 0.35) var(--bg);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: rgba(61, 220, 132, 0.3);
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: rgba(61, 220, 132, 0.55); }

html[data-theme="light"] {
  scrollbar-color: rgba(10, 143, 78, 0.4) var(--bg);
}

/* ---------- Print: clean paper resume from the same content ---------- */
@media print {
  #loader, #progress, #theme-toggle, #monogram,
  .site-nav, .reco-carousel, .project-cover, .cta-button,
  #tagline-caret { display: none !important; }

  html { scrollbar-width: auto; }

  body {
    background: #fff !important;
    color: #1e293b !important;
    font-size: 11pt;
  }

  .layout { display: block; max-width: none; padding: 0; }
  .sidebar { position: static; width: auto; max-height: none; padding: 0 0 1rem; }
  .content { width: auto; padding: 0; }

  .sidebar h1, .sidebar h2, .section-heading h3, h4, h5,
  .stat-value, .tl-node h4, .honor-list h4, .reco-name {
    color: #0f172a !important;
  }

  section { margin-bottom: 1.6rem; break-inside: avoid-page; }

  .will-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

  .stat, .honor-list li, .tl-summary, .reco-card {
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    break-inside: avoid;
  }

  .pills li { background: #f1f5f9 !important; color: #334155 !important; }

  .sh-icon, .stat-value, .tl-date, #visit-count { color: #0f172a !important; }

  .timeline::before { background: #94a3b8 !important; }
  .tl-node::before { border-color: #475569 !important; animation: none !important; }

  /* show destinations for the links that matter */
  .inline-cta[href]::after, .contact-lede + .cta-button[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #64748b;
  }

  #reco-fallback { display: block !important; }
}

/* ---------- Status indicator ---------- */
.status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  margin-left: 3px;
  border-radius: 50%;
  background-color: var(--accent);
  animation: dot-ping 2.6s ease-out infinite;
}

body.cascade .status { animation: rise var(--dur-med) var(--ease) both 0.2s; }

/* ---------- Social icon boop ---------- */
.socials a:hover { transform: none; }
.socials a:hover svg {
  transition: transform 0.3s var(--ease-spring);
}
.socials li:nth-child(odd) a:hover svg { transform: scale(1.18) rotate(-8deg); }
.socials li:nth-child(even) a:hover svg { transform: scale(1.18) rotate(8deg); }
.socials a svg { transition: transform 0.3s var(--ease-spring); }

/* ---------- Monogram redraw on hover ---------- */
#monogram path { stroke-dasharray: 300; stroke-dashoffset: 0; }
#monogram:hover path { animation: hex-redraw 0.9s ease; }
@keyframes hex-redraw {
  from { stroke-dashoffset: 300; }
  to { stroke-dashoffset: 0; }
}

/* ---------- Theme-switch circular reveal ---------- */
::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

/* ---------- Trailer blur-up ---------- */
.project-cover {
  background: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABIMDRANCxIQDhAUExIVGywdGxgYGzYnKSAsQDlEQz85Pj1HUGZXR0thTT0+WXlaYWltcnNyRVV9hnxvhWZwcm7/2wBDARMUFBsXGzQdHTRuST5Jbm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm7/wAARCAASACADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDiVGTTiMUiNg05m3GmA2kNP4xTDzQAgp1FFABQKKKAP//Z") center / cover no-repeat;
}

.project-cover img,
.project-cover video { transition: opacity var(--dur-med) var(--ease), transform var(--dur-quick) var(--ease); }
.project-cover img.gif-loading,
.project-cover video.gif-loading { opacity: 0; }

/* ---------- Tap polish (mobile) ---------- */
* { -webkit-tap-highlight-color: transparent; }
a:active, button:active, .pills li:active { transform: scale(0.97); }
.cta-button:active { transform: translateY(0) scale(0.98); }

/* ---------- Scroll-driven timeline fill ---------- */
@supports (animation-timeline: view()) {
  .timeline::before { opacity: 0.25; }
  .timeline::after {
    content: "";
    position: absolute;
    top: 0.4rem;
    bottom: 0.4rem;
    left: 0.42rem;
    width: 2px;
    background: var(--accent);
    transform-origin: top;
    animation: trunk-fill linear both;
    animation-timeline: view();
    animation-range: entry 15% cover 65%;
  }
  @keyframes trunk-fill {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
  }
}

/* ---------- Easter egg robot ---------- */
#egg-bot {
  position: fixed;
  bottom: 8px;
  left: -60px;
  z-index: 60;
  color: var(--accent);
  pointer-events: none;
  animation: bot-walk 4s linear forwards;
}

@keyframes bot-walk {
  0% { left: -60px; transform: translateY(0); }
  10% { transform: translateY(-6px); }
  20% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  40% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  60% { transform: translateY(0); }
  70% { transform: translateY(-6px); }
  80% { transform: translateY(0); }
  90% { transform: translateY(-6px); }
  100% { left: calc(100vw + 60px); transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .status-dot { animation: none; }
  #monogram:hover path { animation: none; }
  .socials li a:hover svg { transform: none; }
  .timeline::before { opacity: 1; }
  .timeline::after { display: none; }
  #egg-bot { display: none; }
}

@media print {
  .status, #egg-bot { display: none !important; }
}

/* ---------- Company logos in the experience tree ---------- */
.tl-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.2rem;
}

.co-logo {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-color: #fff;
  object-fit: contain;
}

.co-fallback {
  display: grid;
  place-items: center;
  background-color: var(--bg-card);
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Mobile: sticky section header clears the corner monogram ---------- */
@media (max-width: 1023px) {
  #monogram { top: 0.95rem; left: 1rem; }
  #monogram svg { width: 34px; height: 34px; }
  .section-heading { padding-left: 4rem; }
}

@media print {
  .co-logo { border-color: #cbd5e1 !important; }
}


/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 50%;
  transform: translate(-50%, -300%);
  z-index: 100;
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  background-color: var(--accent);
  color: var(--bg);
  font-weight: 600;
  transition: transform var(--dur-quick) var(--ease);
}

.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ---------- Heading anchor links ---------- */
.anchor-link {
  margin-left: 0.4rem;
  color: var(--accent);
  font-weight: 400;
  opacity: 0;
  transition: opacity var(--dur-quick) var(--ease);
}

.section-heading:hover .anchor-link,
.anchor-link:focus-visible { opacity: 0.75; }

@media print {
  .skip-link, .anchor-link { display: none !important; }
}

/* ---------- Hero pull-quote ---------- */
.hero-quote {
  margin-top: 0.75rem;
  padding-left: 0.9rem;
  border-left: 2px solid var(--accent);
  max-width: 21rem;
}

.hero-quote blockquote {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-bright);
  transition: opacity var(--dur-med) var(--ease);
}

.hero-quote figcaption {
  margin-top: 0.3rem;
  font-size: 0.75rem;
  transition: opacity var(--dur-med) var(--ease);
}

.hero-quote.fading blockquote,
.hero-quote.fading figcaption { opacity: 0; }

body.cascade .hero-quote { animation: rise var(--dur-med) var(--ease) both 0.3s; }

/* ---------- Command palette ---------- */
#palette-hint {
  position: fixed;
  top: 1.6rem;
  right: 4.6rem;
  z-index: 30;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  background-color: var(--bg-card);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: color var(--dur-quick) var(--ease), border-color var(--dur-quick) var(--ease);
}

#palette-hint:hover { color: var(--accent); border-color: rgba(61, 220, 132, 0.35); }

@media (max-width: 1023px), (hover: none) {
  #palette-hint { display: none; }
}

#palette {
  position: fixed;
  inset: 0;
  z-index: 200;
}

#palette[hidden] { display: none; }

.palette-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(4px);
}

.palette-panel {
  position: relative;
  width: min(34rem, calc(100vw - 2rem));
  margin: 14vh auto 0;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background-color: var(--bg);
  box-shadow: 0 24px 64px rgba(2, 6, 23, 0.6);
  overflow: hidden;
  animation: palette-in var(--dur-quick) var(--ease);
}

@keyframes palette-in {
  from { opacity: 0; transform: translateY(8px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

#palette-input {
  width: 100%;
  padding: 1rem 1.15rem;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  color: var(--text-bright);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}

#palette-list {
  list-style: none;
  max-height: 42vh;
  overflow-y: auto;
  padding: 0.4rem;
}

#palette-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
}

#palette-list li .p-kind {
  margin-left: auto;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.55;
}

#palette-list li.selected,
#palette-list li:hover {
  background-color: var(--pill-bg);
  color: var(--text-bright);
}

#palette-list li.selected .p-kind { color: var(--accent); opacity: 1; }

.palette-foot {
  display: flex;
  gap: 1.25rem;
  padding: 0.6rem 1.15rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.7);
}

@media print {
  #palette, #palette-hint { display: none !important; }
}

/* ---------- Constellation background ---------- */
#constellation {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Devrath.kt code card ---------- */
.code-card {
  margin-top: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  background-color: rgba(2, 6, 23, 0.55);
  overflow: hidden;
}

html[data-theme="light"] .code-card { background-color: #0f172a; }

.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.6rem 0.9rem;
  border-bottom: 1px solid var(--border);
}

.code-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.code-bar .r { background: #ff5f57; }
.code-bar .y { background: #febc2e; }
.code-bar .g { background: #28c840; }

.code-file {
  margin-left: 0.5rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.8);
}

.code-card pre {
  padding: 1rem 1.1rem;
  overflow-x: auto;
}

.code-card code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #cbd5e1;
}

.code-card .kw { color: var(--accent); font-weight: 600; }
html[data-theme="light"] .code-card .kw { color: #3ddc84; }
.code-card .ty { color: #82aaff; }
.code-card .st { color: #f4c430; }
.code-card .fn { color: #c792ea; }

/* ---------- Award chips ---------- */
.award-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin-top: 0.55rem;
}

.award-chips li {
  padding: 0.22rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background-color: var(--bg-card);
  font-size: 0.68rem;
  letter-spacing: 0.01em;
  cursor: default;
  transition: border-color var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease);
}

.award-chips li:hover { border-color: rgba(61, 220, 132, 0.4); transform: translateY(-1px); }

body.cascade .award-chips { animation: rise var(--dur-med) var(--ease) both 0.33s; }

/* ---------- Tenure tooltips on company logos ---------- */
.tl-head { position: relative; }

.tl-head[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  z-index: 20;
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 0.4rem;
  background-color: var(--bg);
  color: var(--text-bright);
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity var(--dur-quick) var(--ease), transform var(--dur-quick) var(--ease);
}

.tl-head[data-tip]:hover::after { opacity: 1; transform: none; }

/* ---------- Terminal easter egg ---------- */
#terminal {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  max-height: 45vh;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(61, 220, 132, 0.35);
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(10px);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.82rem;
  animation: term-in var(--dur-quick) var(--ease);
}

#terminal[hidden] { display: none; }

@keyframes term-in {
  from { transform: translateY(30%); opacity: 0; }
  to { transform: none; opacity: 1; }
}

#term-out {
  overflow-y: auto;
  padding: 0.9rem 1.1rem 0.3rem;
  color: #cbd5e1;
  white-space: pre-wrap;
}

#term-out .t-accent { color: var(--accent); }

.term-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem 0.9rem;
}

.term-prompt { color: var(--accent); white-space: nowrap; }

#term-in {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  color: #e2e8f0;
  font-family: inherit;
  font-size: inherit;
  caret-color: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  #constellation { display: none; }
}

@media print {
  #constellation, #terminal, .award-chips { display: none !important; }
  .code-card { display: none !important; }
}

/* ---------- Atmosphere: aurora + film grain ---------- */
#aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

#aurora::before,
#aurora::after {
  content: "";
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.13;
}

#aurora::before {
  top: -20vmax;
  left: -12vmax;
  background: radial-gradient(circle, #3ddc84, transparent 65%);
  animation: aurora-a 46s ease-in-out infinite alternate;
}

#aurora::after {
  bottom: -24vmax;
  right: -14vmax;
  background: radial-gradient(circle, #1d4ed8, transparent 65%);
  animation: aurora-b 58s ease-in-out infinite alternate;
}

@keyframes aurora-a {
  to { transform: translate(9vmax, 7vmax) scale(1.15); }
}

@keyframes aurora-b {
  to { transform: translate(-8vmax, -6vmax) scale(1.1); }
}

html[data-theme="light"] #aurora::before,
html[data-theme="light"] #aurora::after { opacity: 0.08; }

#grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

html[data-theme="light"] #grain { opacity: 0.05; }

/* ---------- Hand-drawn signature ---------- */
.signature {
  max-width: 240px;
  margin-top: 2.25rem;
}

.sig-text {
  font-family: "Caveat", cursive;
  font-size: 58px;
  font-weight: 600;
  fill: var(--text-bright);
  opacity: 0;
}

.sig-flourish {
  stroke: var(--accent);
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
}

.signature.revealed .sig-text {
  opacity: 1;
  transition: opacity 0.9s var(--ease) 0.1s;
}

.signature.revealed .sig-flourish {
  animation: sig-draw 0.9s var(--ease) 0.55s forwards;
}

@keyframes sig-draw {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #aurora::before, #aurora::after { animation: none; }
  .sig-text { opacity: 1; }
  .sig-flourish { stroke-dashoffset: 0; }
}

@media print {
  #aurora, #grain { display: none !important; }
  .sig-text { fill: #0f172a; opacity: 1; }
  .sig-flourish { stroke-dashoffset: 0; }
}


/* Loader morphs into the monogram; then the monogram takes over */
body.morphed #monogram { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  #monogram { opacity: 1; }
}

/* ---------- Print QR (paper resume links back to the live site) ---------- */
.print-qr { display: none; }

@media print {
  .print-qr {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #475569;
  }
  .print-qr img { border: 1px solid #cbd5e1; border-radius: 6px; }
}

/* ---------- Magnetic CTA ---------- */
.cta-button, #monogram {
  will-change: transform;
}

/* ---------- Per-card blur-up poster (The Economist Insider) ---------- */
.economist-cover {
  background: url("data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/2wBDABIMDRANCxIQDhAUExIVGywdGxgYGzYnKSAsQDlEQz85Pj1HUGZXR0thTT0+WXlaYWltcnNyRVV9hnxvhWZwcm7/2wBDARMUFBsXGzQdHTRuST5Jbm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm5ubm7/wAARCAASACADASIAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAAAgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkKFhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWGh4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREAAgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYkNOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOEhYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwDiE+8M1chiIbeFyPeqS/eFbtrp9xcRqdwVT0oGjLuEO8sRj6VVrorzQpILZpWk3YFc8RgmgQL94V1dkT9kj5NFFJlR3Ll6c6XJ9K4h/vn60UUxM//Z") center / cover no-repeat;
}
