/* ============================================================
   Nadav Levy — Portfolio v2
   Kane Sherwell layout system · light pink surfaces · black text
   ============================================================ */

:root {
  /* surfaces — blush replaces Kane's mint tint */
  --bg:        #fdf6f4;
  --surface:   #f8e9e6;
  --surface-2: #f3ddd9;
  --card:      #ffffff;
  --border:    #ecdcd8;
  --border-strong: #ddc6c1;

  /* text */
  --text:  #0a0a0a;
  --text-secondary: #4a4a4a;
  --muted: #6b6b6b;
  --dim:   #9a8f8d;

  --accent:      #0a0a0a;
  --accent-soft: #f3ddd9;
  --accent-line: #ddc6c1;
  --brand:       #0a0a0a;
  --brand-soft:  #f8e9e6;

  /* type — General Sans is what Kane's site uses */
  --font-sans: 'General Sans', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* layout — Kane: 80rem container, 6.25rem side padding */
  --maxw: 80rem;
  --gutter: 6.25rem;
  --nav-h: 84px;
  --sec-pad: 8rem;
  --sec-pad-sm: 5rem;

  --shadow-sm: 0 1px 2px rgba(74, 40, 34, 0.04);
  --shadow-md: 0 6px 22px rgba(74, 40, 34, 0.07);
  --shadow-lg: 0 20px 50px rgba(74, 40, 34, 0.12);

  --radius: 1.5rem;
  --radius-sm: 0.75rem;
  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Kane type scale: h1 4rem/600, h2 3rem/500, h3 1.75rem/700 */
h1 {
  font-size: clamp(2.6rem, 6.4vw, 4rem);
  font-weight: 600;
  line-height: 1.0625;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h3 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.015em;
}

body.is-loading {
  overflow: hidden;
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--bg);
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__stage {
  width: min(92vw, 560px);
  aspect-ratio: 3 / 2;
  display: grid;
  place-items: center;
}

.loader__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: difference;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
.ic { width: 18px; height: 18px; flex: 0 0 auto; }

/* Kane pattern: 80rem inner width sitting inside 6.25rem global padding */
.container {
  width: 100%;
  max-width: calc(var(--maxw) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* blinking cursor */
.cursor {
  color: var(--text);
  animation: blink 1.15s steps(1) infinite;
}
.cursor--block { font-weight: 400; margin-left: 1px; }
@keyframes blink { 50% { opacity: 0; } }

/* live dot (chat header) */
.dot-live {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #0a0a0a;
  box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.4);
  animation: pulse 2s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0.32); }
  70%  { box-shadow: 0 0 0 6px rgba(10, 10, 10, 0); }
  100% { box-shadow: 0 0 0 0 rgba(10, 10, 10, 0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease),
              background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}
.btn--sm { padding: 8px 14px; font-size: 0.85rem; }
.btn--full { width: 100%; }

.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}
.btn--accent:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: var(--surface);
  transform: translateY(-2px);
}

/* ============================================================
   TOP NAV — Kane pattern: wordmark left, links + button right
   ============================================================ */
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  background: var(--bg);
  padding-block: 1rem 0.5rem;
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.site-nav.is-stuck {
  box-shadow: 0 1px 0 var(--border), 0 10px 30px rgba(74, 40, 34, 0.05);
}
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.375rem;
}
.site-nav__logo {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  flex: 0 0 auto;
}
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.site-nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.2s var(--ease);
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--text);
  transition: width 0.25s var(--ease);
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--text); }
.site-nav__link:hover::after,
.site-nav__link.is-active::after { width: 100%; }

.site-nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.site-nav__burger i {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.site-nav.is-open .site-nav__burger i:first-child { transform: translateY(3.25px) rotate(45deg); }
.site-nav.is-open .site-nav__burger i:last-child { transform: translateY(-3.25px) rotate(-45deg); }

/* offset so fixed nav never overlaps the hero */
.nav-spacer { height: var(--nav-h); }

/* ============================================================
   BOTTOM DOCK NAV — liquid glass (mobile secondary nav)
   ============================================================ */
.dock {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border-radius: 999px;
  /* liquid glass "regular" variant: clear center, adaptive tint */
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid transparent;
  /* edge lensing: bright catch on top rim, darker refraction on bottom rim,
     soft halo inside the glass */
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.15),
    0 3px 10px rgba(0, 0, 0, 0.06),
    inset 0 2px 2px -1px rgba(255, 255, 255, 0.9),
    inset 0 -2px 2px -1px rgba(0, 0, 0, 0.08),
    inset 2px 0 2px -1px rgba(255, 255, 255, 0.5),
    inset -2px 0 2px -1px rgba(255, 255, 255, 0.5),
    inset 0 0 18px rgba(255, 255, 255, 0.35);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.3, 0.5, 1),
    padding 0.45s cubic-bezier(0.34, 1.3, 0.5, 1),
    box-shadow 0.35s var(--ease);
}
/* specular highlight — light pooling on the curved top surface */
.dock::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(140% 70% at 30% -10%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%),
    radial-gradient(90% 50% at 75% 115%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 55%);
}
/* bright rim where light catches the glass edge */
.dock::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  padding: 1px;
  background: linear-gradient(
    170deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.3) 28%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.2) 75%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

/* iOS-style scroll behavior: condense to a compact pill while scrolling down */
.dock.is-condensed {
  padding: 5px;
  transform: translateX(-50%) scale(0.86) translateY(6px);
}
.dock.is-condensed .dock__item span {
  font-size: 0;
  opacity: 0;
  height: 0;
}
.dock.is-condensed .dock__item {
  padding: 10px 16px;
}
.dock__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}
.dock__item svg {
  width: 22px;
  height: 22px;
}
.dock__item span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: font-size 0.45s cubic-bezier(0.34, 1.3, 0.5, 1), opacity 0.3s var(--ease), height 0.45s cubic-bezier(0.34, 1.3, 0.5, 1);
}
.dock__item:hover {
  color: var(--text);
  transform: translateY(-2px);
}
/* gel-like press */
.dock__item:active {
  transform: scale(0.92);
  transition-duration: 0.1s;
}
.dock__item.is-active {
  color: var(--text);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.35));
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */
/* Kane hero: headline row on top, photo centered below with floating stats */
.hero { position: relative; }
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: 3.25rem;
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4rem));
  padding-bottom: 3.5rem;
  position: relative;
}

/* split hero — text left, photo right */
.hero__split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.hero__content {
  flex: 1 1 34rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.875rem;
}
.hero__row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__pre {
  display: block;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.hero__name {
  font-size: clamp(2.6rem, 6.4vw, 4rem);
  font-weight: 600;
  line-height: 1.0625;
  letter-spacing: -0.02em;
}
.hero__cta {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1.5px solid var(--text);
  padding-bottom: 2px;
  transition: gap 0.22s var(--ease), opacity 0.2s var(--ease);
}
.hero__cta:hover { gap: 0.85rem; opacity: 0.75; }

/* the photo, on the right */
.hero__stage {
  position: relative;
  flex: 0 1 28rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__photo {
  width: 100%;
  max-width: 28rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 30px 70px rgba(74, 40, 34, 0.14);
}
.hero__photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
/* transparent cut-out portrait: drop the frame so badges float like Kane's */
.hero__photo--cutout {
  border-radius: 0;
  overflow: visible;
  background: none;
  box-shadow: none;
}
.hero__photo--cutout img { aspect-ratio: auto; object-fit: contain; }

/* inline stat next to the CTA */
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--text);
}
.hero__stat-num {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-secondary);
}

/* eyebrow anchored bottom-left of the hero, Kane-style */
.hero__eyebrow {
  position: absolute;
  left: var(--gutter);
  bottom: 1rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.terminal-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100%, 520px);
  margin-bottom: 2.5rem;
}

.terminal-bar {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text);
}
.terminal-bar--out {
  color: var(--muted);
  padding-block: 8px;
}
.terminal-bar--load {
  gap: 6px;
}
.terminal-bar__prompt { color: var(--text); }
.terminal-bar__path { color: var(--dim); }
.terminal-bar__cmd { color: var(--text); }
.terminal-bar__arrow {
  color: var(--brand);
  margin-right: 8px;
  font-weight: 600;
}
.terminal-bar__out { color: var(--muted); }

.terminal-spinner {
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}
.terminal-spinner__track {
  position: relative;
  width: 56px;
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}
.terminal-spinner__knob {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 100%;
  border-radius: 999px;
  background: var(--text);
  animation: terminal-slide 1.35s ease-in-out infinite alternate;
}
@keyframes terminal-slide {
  from { transform: translateX(0); }
  to { transform: translateX(42px); }
}

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section {
  padding-block: clamp(4.5rem, 9vw, var(--sec-pad));
  scroll-margin-top: var(--nav-h);
}
.section--sm {
  padding-block: clamp(3.5rem, 7vw, var(--sec-pad-sm));
}
.section--alt {
  background: var(--surface);
}

/* impact strip — scrolling metrics under the hero */
.impact {
  border-block: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.impact__viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.impact__track {
  display: flex;
  width: max-content;
  will-change: transform;
}
.impact__track.is-animated {
  animation: impact-marquee var(--impact-speed, 28s) linear infinite;
}
.impact__track.is-animated:hover {
  animation-play-state: paused;
}
.impact__set {
  display: flex;
  flex-shrink: 0;
}
.impact__stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  min-width: clamp(200px, 28vw, 280px);
  padding: 30px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.impact__stat:last-child { border-right: 0; }
@keyframes impact-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.impact--static .impact__viewport {
  mask-image: none;
  -webkit-mask-image: none;
}
.impact--static .impact__track {
  width: 100%;
  justify-content: center;
}
.impact--static .impact__set {
  flex: 1;
  justify-content: space-around;
}
.impact--static .impact__stat {
  flex: 1 1 0;
  min-width: 0;
  border-right: 0;
  border-left: 1px solid var(--border);
}
.impact--static .impact__stat:first-child { border-left: 0; }
.impact__num {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}
.impact__num--brand { color: var(--brand); }
.impact__label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.section__head { margin-bottom: 3rem; }
/* Kane eyebrow: small uppercase label above the heading */
.section__index {
  font-size: 0.875rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.section__title {
  font-size: clamp(2rem, 4.6vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.section__lead {
  color: var(--text-secondary);
  margin-top: 1rem;
  max-width: 46ch;
  font-size: 1.125rem;
  line-height: 1.55;
}

/* shared card — white on the pink surface */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ============================================================
   EXPERTISE — prose + large stat row (Kane)
   ============================================================ */
.expertise__prose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 62rem;
}
.expertise__prose p {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.expertise__prose strong { color: var(--text); font-weight: 600; }

/* ============================================================
   TECH STACK
   ============================================================ */
.stack__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.stack__item {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.7rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 999px;
  background: var(--card);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.stack__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.stack__item img { width: 36px; height: 36px; object-fit: contain; }
.stack__item img.stack__logo--wide { width: 122px; height: 30px; }

/* ============================================================
   CAPABILITIES — 3-column list grid (Kane)
   ============================================================ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cap-grid li {
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text);
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   MY WORKS — image-card gallery (Kane)
   ============================================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.works-grid + .works-grid { margin-top: 1.5rem; }
.works-grid--split { grid-template-columns: 1fr 1.4fr; }

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding: 1.15rem 1.15rem 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.work-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.work-card:hover .work-card__img { transform: scale(1.04); }
.work-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 6, 5, 0.82) 0%, rgba(12, 6, 5, 0.35) 45%, rgba(12, 6, 5, 0.05) 100%);
}
/* tinted blocks — Kane uses solid colour cards; ours stay in the blush family */
.work-card--tint-a { background: #f7e2dd; }
.work-card--tint-b { background: #efe4de; }
.work-card--tint-c { background: #e8ddd6; }
.work-card--dark {
  background: #171110;
  border-color: #171110;
  color: #fff;
}
.work-card--media { color: #fff; }
.work-card--media .work-card__desc,
.work-card--dark .work-card__desc { color: rgba(255, 255, 255, 0.78); }
.work-card--media .work-card__tag,
.work-card--dark .work-card__tag {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.work-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.1rem 0.6rem 0.15rem;
  flex: 1;
}
.work-card__mark {
  position: static;
  width: 48px;
  height: 48px;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.work-card__mark svg { width: 30px; height: 30px; }
.work-card__mark img { width: 32px; height: 32px; object-fit: contain; }
.work-card__mark--wide {
  width: auto;
  min-width: 48px;
  padding: 0 0.7rem;
}
.work-card__mark--wide img { width: 96px; height: 24px; }
.work-card__mark--end { align-self: flex-end; }
.work-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.work-card__tag {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-secondary);
}
.work-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.work-card__desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 42ch;
}
.work-card__more {
  align-self: flex-start;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: inherit;
  background: none;
  border: 0;
  border-bottom: 1.5px solid currentColor;
  padding: 0 0 2px;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease);
}
.work-card__more:hover { opacity: 1; }
a.work-card__more { text-decoration: none; display: inline-block; }
.work-card__detail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.work-card__detail > div { overflow: hidden; }
.work-card.is-open .work-card__detail { grid-template-rows: 1fr; }
.work-card.is-open { min-height: 25rem; }
.work-card__shot {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  aspect-ratio: 16 / 10;
}
.work-card__shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.work-card--empty {
  background: #f6eee9;
  border-style: dashed;
}
.work-card--empty:hover { transform: none; box-shadow: none; }
.work-card__mark--empty {
  color: var(--muted);
  font-size: 1.4rem;
  font-weight: 500;
  background: transparent;
}
.work-card__shot--empty {
  background: #faf6f4;
  border-style: dashed;
}
.work-card--empty .work-card__title,
.work-card--empty .work-card__desc { color: var(--muted); }

/* ============================================================
   EXPERIENCE ACCORDION (Kane)
   ============================================================ */
.exp {
  display: grid;
  grid-template-columns: 18rem 1fr;
  gap: 3rem;
  align-items: start;
}
.exp__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-left: 2.5rem;
}
/* vertical rail with a dot per job */
.exp__list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 1.5px;
  background: var(--border-strong);
}
.exp__job {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.exp__copy { flex: 1 1 auto; min-width: 0; }
.exp__brand {
  flex: 0 0 clamp(12.5rem, 26vw, 16.5rem);
  width: clamp(12.5rem, 26vw, 16.5rem);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  align-self: center;
  background: transparent;
}
.exp__brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.exp__job::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  background: var(--bg);
}
.exp__job::after {
  content: "";
  position: absolute;
  left: calc(-2.5rem + 5px);
  top: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.exp__job.is-current::after { opacity: 1; }
.exp__company {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}
.exp__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.exp__meta strong { color: var(--text); font-weight: 600; }
.exp__meta + .exp__meta { margin-top: -0.8rem; }
.exp__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
  flex: 0 0 auto;
}
.exp__bullets { list-style: none; margin: 0; padding: 0; }
.exp__bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}
.exp__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}
.exp__bullets strong { color: var(--text); font-weight: 600; }
.exp__hidden {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.exp__hidden > div { overflow: hidden; }
.exp__job.is-open .exp__hidden { grid-template-rows: 1fr; }
.exp__toggle {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: 0;
  border-bottom: 1.5px solid var(--text);
  padding: 0 0 2px;
  transition: opacity 0.2s var(--ease);
}
.exp__toggle:hover { opacity: 0.7; }
.exp__placeholder {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

.service {
  margin-top: 4.5rem;
}
.service__title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.service__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.35rem;
}
.service__logo {
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  border-radius: 0.65rem;
  flex: 0 0 auto;
  background: transparent;
}
.service__logo--wide {
  width: 8.25rem;
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
}
.service__logo--mark {
  width: 4.75rem;
  height: 4.75rem;
}
.service__card strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}
.service__card span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.2rem 0 0.55rem;
}
.service__card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ============================================================
   PROJECTS
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filter {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 999px;
  transition: all 0.18s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--border-strong); }
.filter.is-active {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

/* ---- bento-style project grid ---- */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.project {
  padding: 26px 26px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}
.project:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

/* logo / icon badge as a design motif */
.project__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex: 0 0 auto;
  overflow: hidden;
  transition: border-color 0.28s var(--ease), transform 0.28s var(--ease);
}
.project__icon svg { width: 27px; height: 27px; color: var(--text); }
.project__icon img { width: 30px; height: 30px; object-fit: contain; }
.project:hover .project__icon { border-color: var(--border-strong); transform: translateY(-2px); }

.project__body { display: flex; flex-direction: column; flex: 1; }
.project__title {
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.project__desc {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}
.project__metric {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 13px;
  align-self: flex-start;
  font-weight: 500;
}

/* Problem -> Action -> Result case study (featured card only) */
.case { display: flex; flex-direction: column; gap: 12px; margin-bottom: 18px; }
.case__row { display: flex; gap: 14px; align-items: baseline; }
.case__label {
  flex: 0 0 64px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  padding-top: 2px;
}
.case__row p { color: var(--muted); font-size: 0.95rem; line-height: 1.55; margin: 0; }
.case__row strong { color: var(--text); font-weight: 600; }

/* featured tile — spans full width, number sits beside the content */
.project--featured {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  gap: 34px;
  padding: 34px 34px 32px;
  background: var(--surface);
}
.project--featured .project__icon {
  width: 76px; height: 76px;
  border-radius: 20px;
  margin-bottom: 0;
}
.project--featured .project__icon svg { width: 42px; height: 42px; }
.project--featured .project__icon img { width: 44px; height: 44px; }
.project--featured .project__title { font-size: 1.6rem; }
.project--featured .project__desc { font-size: 1rem; max-width: 60ch; }

/* media tile — spans full width, content left + image right */
.project--media {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.project--media .project__body { padding: 30px 32px; justify-content: center; flex: 1; }
.project__media {
  display: block;
  position: relative;
  flex: 0 0 40%;
  border-left: 1px solid var(--border);
  overflow: hidden;
  min-height: 260px;
}
.project__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--ease);
}
.project--media:hover .project__media img { transform: scale(1.05); }

.projects-empty {
  font-family: var(--font-sans);
  color: var(--dim);
  font-size: 0.9rem;
  padding-top: 8px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.about__bio p { margin-bottom: 16px; color: var(--text); font-size: 1.05rem; }
.about__bio p:last-child { margin-bottom: 0; color: var(--muted); }
.about__bio strong { color: var(--text); font-weight: 600; }
.about__img {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 340px;
}

.leadership {
  margin-top: 48px;
}
.leadership__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.leadership__lead {
  color: var(--muted);
  margin-bottom: 24px;
  max-width: 52ch;
}
.leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.leadership__card {
  padding: 22px 20px;
}
.leadership__card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}
.leadership__card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}
.leadership__icon {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 12px;
}

.open-to {
  margin-top: 28px;
  padding: 22px 24px;
  border-color: var(--border-strong);
  background: linear-gradient(135deg, var(--brand-soft), var(--card));
}
.open-to__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--brand);
  margin-bottom: 8px;
}
.open-to__text {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.6;
}
.open-to__text strong { color: var(--text); }

.text-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
}
.text-link:hover { text-decoration-color: var(--text); }

.metric-pill {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
}
.metric-pill--brand {
  border-color: var(--border-strong);
  background: var(--surface-2);
  color: var(--text);
}
.project__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project__proof {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.project__shot {
  margin-top: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.project__shot img {
  width: 100%;
  display: block;
  vertical-align: top;
}
.proof-ui {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  overflow: hidden;
}
.proof-ui__bar {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.proof-ui__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}
.proof-ui__row {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.proof-ui__row:last-child { border-bottom: 0; }
.proof-ui__row--field span:first-child {
  display: block;
  width: 28%;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  margin-bottom: 8px;
}
.proof-ui__row--field span:last-child {
  display: block;
  width: 72%;
  height: 10px;
  background: var(--surface-2);
  border-radius: 4px;
}
.proof-ui__row--sign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--dim);
}
.proof-ui__row--sign svg {
  width: 80px;
  height: 24px;
  color: var(--brand);
  opacity: 0.85;
}

.stats { display: grid; gap: 12px; }
.stat {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat__num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.stat__label { color: var(--muted); font-size: 0.9rem; }

/* ============================================================
   SKILLS
   ============================================================ */
.skills-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.skill-chip {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  padding: 20px 20px 22px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.skill-chip:hover { border-color: var(--text); transform: translateY(-3px); }
.skill-chip__title {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.skill-chip__title::before { content: "// "; color: var(--dim); }
.skill-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}
.skill-logos li { display: flex; }
.skill-logo {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.skill-logos img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  transition: transform 0.2s var(--ease);
}
.skill-chip:hover .skill-logos img { transform: scale(1.06); }
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.skill-tags li {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--bg);
}
.skill-chip__keys {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.skill-group { padding: 24px 24px 26px; }
.skill-group__title {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.skill-list { list-style: none; }
.skill-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: var(--text);
  font-size: 0.96rem;
}
.skill-list li:last-child { margin-bottom: 0; }
.skill-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--dim);
}

/* ============================================================
   EXPERIENCE / TIMELINE
   ============================================================ */
.timeline__item {
  padding: 28px 28px 26px;
  position: relative;
}
.timeline__marker {
  position: absolute;
  top: 32px; left: 0;
  width: 4px; height: 28px;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
}
.timeline__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.timeline__date {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
}
.timeline__where {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: 6px;
}
.timeline__role {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

/* inline brand logo sitting in running text */
.inline-logo {
  height: 1.5em;
  width: auto;
  vertical-align: -0.35em;
  display: inline-block;
}
.inline-logo--sm { height: 1.25em; vertical-align: -0.28em; }

/* section title with brand logo */
.section__title--logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.title-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
}

/* org logo row inside timeline items */
.timeline__org {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.org__logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px;
  flex: 0 0 auto;
}
.org__badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--border);
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  align-items: center;
  justify-content: center;
}
.org__badge--blue  { background: #e8f0fe; color: #1a56db; border-color: #c7d7fc; }
.org__badge--olive { background: #f0f4e8; color: #3d5a20; border-color: #c9d9a0; }
.org__badge--green { background: #e8f5e9; color: #1b5e20; border-color: #a5d6a7; }
.timeline__org-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.timeline__org-info strong { font-size: 1rem; font-weight: 600; color: var(--text); }
.timeline__org-info span  { font-size: 0.82rem; color: var(--muted); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}
.contact__form { padding: 26px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease);
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--dim); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--text);
  background: var(--bg);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact__note {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text);
}
.contact__note.is-error { color: #c0392b; }

.contact__side { padding-top: 4px; }
.contact__sidelabel {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--dim);
  margin-bottom: 14px;
}
.contact__social {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  margin-bottom: 10px;
  color: var(--text);
  transition: border-color 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.contact__social:hover {
  border-color: var(--text);
  transform: translateX(3px);
}
.contact__social .ic { color: var(--text); }
.contact__social > span { display: flex; flex-direction: column; font-size: 0.92rem; }
.contact__social-k {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--dim);
  text-transform: lowercase;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding-block: 28px;
  padding-bottom: 110px; /* clearance for the floating dock */
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__prompt {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
}
.footer__cmd { color: var(--text); }
.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--dim);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.18s var(--ease);
}
.footer__social a:hover {
  color: var(--text);
  border-color: var(--text);
  transform: translateY(-2px);
}
.footer__social svg {
  width: 17px;
  height: 17px;
}

/* ============================================================
   AI CHAT WIDGET
   ============================================================ */
.fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 110;
  width: auto;
  min-width: 58px;
  height: 58px;
  padding: 0 18px 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), padding 0.25s var(--ease);
}
.fab__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding-right: 4px;
}
.fab.is-open {
  width: 58px;
  padding: 0;
  justify-content: center;
}
.fab.is-open .fab__label { display: none; }
.fab__icons {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
}
.fab.is-open .fab__icons {
  width: 26px;
  height: 26px;
  flex-basis: 26px;
}
.fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28); }
.fab__icon { width: 26px; height: 26px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.fab__avatar { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; grid-area: 1 / 1; }
.fab__icon--close { grid-area: 1 / 1; opacity: 0; transform: rotate(-90deg) scale(0.5); }
.fab.is-open .fab__icon--chat { opacity: 0; transform: rotate(90deg) scale(0.5); }
.fab.is-open .fab__icon--close { opacity: 1; transform: rotate(0) scale(1); }

.chat {
  position: fixed;
  bottom: 94px; right: 24px;
  z-index: 109;
  width: min(380px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 130px));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.28s var(--ease);
}
.chat.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chat__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.chat__back {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 6px 8px;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.chat__back:hover {
  color: var(--text);
  background: var(--surface-2);
  border-color: var(--border);
}
.chat__back[hidden] { display: none; }
.chat__head-id { display: flex; align-items: center; gap: 10px; min-width: 0; }
.chat__head-id strong { display: block; font-size: 0.95rem; }
.chat__head-sub {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: var(--dim);
}
.chat__head-sub .dot-live {
  width: 6px;
  height: 6px;
  background: #16a34a;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  70% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.chat__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface);
}
.chat__close {
  background: none; border: 0;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  width: 28px; height: 28px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.chat__close:hover { background: var(--surface-2); color: var(--text); }

.chat__log {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  animation: msgIn 0.3s var(--ease) both;
}
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } }
.msg--bot {
  align-self: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
  color: var(--text);
}
.msg-p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}
.msg-p + .msg-p { margin-top: 10px; }
.msg--bot strong { font-weight: inherit; }
/* bot message row (avatar + bubble) */
.msg-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 92%;
  align-self: flex-start;
  animation: msgIn 0.3s var(--ease) both;
}
.msg-row .msg { max-width: 100%; }
.msg-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--surface);
}
.msg--user {
  align-self: flex-end;
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 5px;
}
.msg--user .msg-p { color: #fff; }

/* typing indicator */
.typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 13px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  border-bottom-left-radius: 5px;
}
.typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--dim);
  animation: typingDot 1.2s infinite ease-in-out;
}
.typing span:nth-child(2) { animation-delay: 0.18s; }
.typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat__suggest {
  display: flex;
  gap: 7px;
  padding: 0 16px 12px;
  flex-wrap: wrap;
}
.chat__suggest button {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 11px;
  border-radius: 999px;
  transition: background 0.15s, border-color 0.15s;
}
.chat__suggest button:hover { background: var(--surface-2); border-color: var(--border-strong); }

.chat-welcome {
  padding: 4px 2px 8px;
  animation: msgIn 0.35s var(--ease) both;
}
.chat-welcome__title {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.chat-welcome__sub {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}
.chat-welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.chat-starter {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  text-align: left;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}
.chat-starter:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-1px);
}
.chat-starter span { display: block; line-height: 1.35; }

.msg-row--rich { align-items: flex-start; }
.msg-row--rich .msg { max-width: 100%; }
.msg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.msg-action {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.msg-action:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand);
}

.chat__form {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.chat__form input {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 13px;
  background: var(--bg);
  color: var(--text);
}
.chat__form input:focus {
  outline: none;
  border-color: var(--text);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.chat__form .btn { padding: 0 16px; font-size: 1.1rem; }

/* ============================================================
   GITHUB ACTIVITY
   ============================================================ */
.gh__years {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
}
.gh__year {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  padding: 6px 14px;
  border-radius: 9px;
  transition: all 0.18s var(--ease);
}
.gh__year:hover { color: var(--text); }
.gh__year.is-active {
  color: var(--text);
  background: var(--bg);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.gh__total {
  padding: 22px 24px;
  margin-bottom: 16px;
}
.gh__total-label {
  display: block;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.gh__total-num {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.gh__panel { padding: 24px; }
.gh__panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.gh__panel-title { font-weight: 600; font-size: 0.98rem; }
.gh__handle {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
}
.gh__handle[href]:hover { color: var(--text); text-decoration: underline; }

.gh__graph-wrap { overflow-x: auto; padding-bottom: 8px; }
.gh__months {
  display: grid;
  grid-auto-columns: 12px;
  gap: 3px;
  width: max-content;
  height: 13px;
  margin-bottom: 5px;
}
.gh__month {
  grid-row: 1;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  color: var(--muted);
  white-space: nowrap;
  align-self: end;
}
.gh__graph {
  display: grid;
  grid-template-rows: repeat(7, 12px);
  grid-auto-flow: column;
  grid-auto-columns: 12px;
  gap: 3px;
  width: max-content;
}
/* GitHub contribution levels — exact GitHub colors */
.gh__cell {
  width: 12px; height: 12px;
  border-radius: 2px;
  background: #ebedf0;
  display: inline-block;
}
.gh__cell[data-l="1"] { background: #9be9a8; }
.gh__cell[data-l="2"] { background: #40c463; }
.gh__cell[data-l="3"] { background: #30a14e; }
.gh__cell[data-l="4"] { background: #216e39; }
.gh__cell--empty { background: transparent; }

.gh__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.gh__langs-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.gh__langs-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
}
.gh__langs { display: flex; gap: 7px; flex-wrap: wrap; }
.gh__lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 11px;
  border-radius: 999px;
}
.gh__lang-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text); }
.gh__lang-n { color: var(--dim); }

.gh__legend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  color: var(--dim);
}

.gh__msg {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

/* hero load stagger — starts after intro loader */
.reveal-on-load {
  opacity: 0;
  transform: translateY(18px);
}

body.is-ready .reveal-on-load {
  animation: heroReveal 0.75s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroReveal { to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ---- desktop-narrow: tighten the global padding ---- */
@media (max-width: 1180px) {
  :root { --gutter: 3rem; }
}

/* ---- tablet: burger nav, stacked hero, 2-col grids ---- */
@media (max-width: 991px) {
  :root { --gutter: 2rem; --nav-h: 76px; }

  /* nav collapses into a slide-down panel */
  .site-nav__burger { display: flex; }
  .site-nav__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 1rem var(--gutter) 1.5rem;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(74, 40, 34, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }
  .site-nav.is-open .site-nav__menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .site-nav__links { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav__link { padding: 0.85rem 0; border-bottom: 1px solid var(--border); }
  .site-nav__link::after { display: none; }
  .site-nav__menu .btn { margin-top: 0.75rem; justify-content: center; }

  /* hero stacks: text first, photo below */
  .hero__split { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .hero__content { flex: 1 1 auto; }
  .hero__stage { flex: 1 1 auto; width: 100%; justify-content: flex-start; }
  .hero__photo { width: 100%; max-width: 26rem; }
  .hero__stat { flex-direction: row; align-items: baseline; gap: 0.6rem; }
  .hero__eyebrow { position: static; display: block; margin-top: 1rem; }

  /* grids */
  .expertise__prose { grid-template-columns: 1fr; gap: 1.25rem; }
  .service__grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .works-grid, .works-grid--split { grid-template-columns: 1fr 1fr; }
  .exp { grid-template-columns: 1fr; gap: 2rem; }
  .exp__job { flex-direction: column; align-items: flex-start; }
  .exp__brand {
    width: min(16.5rem, 70%);
    flex-basis: auto;
    align-self: flex-start;
  }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .contact { grid-template-columns: 1fr; }
  .skills-strip { grid-template-columns: 1fr 1fr; }

  /* raise the chat FAB above the dock */
  .fab { bottom: 100px; right: 18px; padding-right: 14px; }
  .fab.is-open { padding: 0; }
  .chat { bottom: 168px; }
}

/* ---- mobile ---- */
@media (max-width: 767px) {
  :root { --gutter: 1.25rem; }

  /* mobile dock */
  .dock {
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 6px;
  }
  .dock__item { padding: 8px 12px; }
  .dock__item svg { width: 20px; height: 20px; }
  .dock__item span { font-size: 0.64rem; }

  .hero__inner { padding-top: 2.5rem; gap: 2.5rem; }
  .hero__ctas { gap: 10px; }
  .hero__ctas .btn { flex: 1 1 auto; }
  .terminal-stack { width: 100%; font-size: 0.78rem; }
  .terminal-bar { font-size: inherit; padding: 9px 12px; }

  .cap-grid { grid-template-columns: 1fr; gap: 0; }
  .cap-grid li { padding-block: 1rem; }
  .works-grid, .works-grid--split { grid-template-columns: 1fr; }
  .work-card { min-height: 0; padding: 1rem 1rem 1.35rem; }
  .exp__company { font-size: 1.4rem; }
  .projects-grid { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .impact__stat { min-width: 180px; padding: 22px 16px; }
  .stats { grid-template-columns: 1fr 1fr 1fr; }
  .stat { padding: 16px; }
  .stat__num { font-size: 1.5rem; }

  /* chat full-ish width */
  .fab { bottom: 100px; right: 14px; width: 52px; height: 52px; }
  .chat { bottom: 162px; right: 16px; left: 16px; width: auto; }
}

@media (max-width: 479px) {
  .stats { grid-template-columns: 1fr; }
  .stat { flex-direction: row; align-items: baseline; gap: 12px; }
  .skills-strip { grid-template-columns: 1fr; }
  .hero__row { gap: 1.25rem; }
}

/* ============================================================
   CASE STUDY PAGES
   ============================================================ */
.case-hero {
  padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.case-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 2rem;
  transition: color 0.2s var(--ease);
}
.case-hero__back:hover { color: var(--text); }
.case-hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.case-hero__copy { min-width: 0; flex: 1; }
.case-hero__logo {
  display: block;
  width: min(220px, 32vw);
  height: auto;
  flex-shrink: 0;
  margin-top: 0.35rem;
}
.case-hero__title {
  font-size: clamp(2.4rem, 5.6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.case-hero__summary {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 46rem;
}
.case-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.case-section { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.case-section--alt { background: var(--surface); }
.case-section__grid {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}
.case-section__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.35rem;
}
.case-section__body { max-width: 46rem; }
.case-section__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.case-section__body p + p { margin-top: 1.1rem; }
.case-section__body strong { color: var(--text); font-weight: 600; }
.case-section__body ul {
  list-style: none;
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.case-section__body ul li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-secondary);
}
.case-section__body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text);
}
.case-impact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.case-impact__item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.case-impact__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.case-impact__label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.case-shot {
  margin: 2rem 0 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-md);
}
.case-shot img { display: block; width: 100%; height: auto; }
.case-shot figcaption {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
}
.case-impact-line {
  font-size: 1.35rem !important;
  line-height: 1.55 !important;
  font-weight: 500;
  color: var(--text) !important;
  max-width: 40rem;
}
.case-impact-line strong { font-weight: 700; }
.case-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  border-top: 1px solid var(--border);
}
.case-next__label { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.4rem; display: block; }
.case-next__link {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: gap 0.22s var(--ease), opacity 0.2s var(--ease);
}
.case-next__link:hover { gap: 1rem; opacity: 0.75; }
@media (max-width: 767px) {
  .case-section__grid { grid-template-columns: 1fr; gap: 1rem; }
  .case-hero__logo { width: 140px; }
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, .reveal-on-load { opacity: 1; transform: none; }
  .loader { display: none; }
  .terminal-spinner__knob { animation: none; left: 50%; transform: translateX(-50%); }
  .impact__track.is-animated { animation: none; }
}
