:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-secondary: #f5f5f7;
  --bg-tertiary: #fbfbfd;
  --surface: rgba(255, 255, 255, .82);
  --surface-solid: #ffffff;
  --label: #1d1d1f;
  --label-secondary: #6e6e73;
  --label-tertiary: #86868b;
  --separator: rgba(0, 0, 0, .16);
  --separator-soft: rgba(0, 0, 0, .08);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --green: #248a3d;
  --red: #d70015;
  --shadow: 0 20px 60px rgba(0, 0, 0, .08);
  --shadow-small: 0 8px 24px rgba(0, 0, 0, .08);
  --radius-small: 12px;
  --radius: 22px;
  --radius-large: 30px;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.25, .1, .25, 1);
  --spring: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--label);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -.022em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
::selection { background: rgba(0, 113, 227, .2); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link {
  position: fixed; top: -80px; left: 18px; z-index: 1000;
  padding: 10px 14px; border-radius: 10px; background: var(--blue); color: #fff;
}
.skip-link:focus { top: 18px; }

.scroll-progress {
  position: fixed; inset: 0 auto auto 0; z-index: 300; width: 100%; height: 2px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
}
.page-transition {
  position: fixed; inset: 0; z-index: 999; pointer-events: none;
  background: var(--bg); opacity: 0;
}
.page-transition.leave { animation: page-fade .3s var(--ease) both; }
@keyframes page-fade { to { opacity: 1; } }
.cursor { display: none; }

.nav {
  position: fixed; inset: 0 0 auto; z-index: 200;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.nav.scrolled { border-color: var(--separator-soft); background: rgba(255, 255, 255, .84); }
.navin {
  min-height: 52px; display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 24px;
}
.brand {
  justify-self: start; font-family: var(--font-display); font-size: 17px;
  font-weight: 600; letter-spacing: -.03em;
}
.links { display: flex; align-items: center; gap: 28px; }
.links a {
  position: relative; padding: 17px 0; color: var(--label-secondary);
  font-size: 12px; font-weight: 400; letter-spacing: .01em;
  transition: color .2s var(--ease);
}
.links a:hover, .links a.active { color: var(--label); }
.links a::after {
  content: ""; position: absolute; right: 0; bottom: 10px; left: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transition: transform .25s var(--ease);
}
.links a:hover::after, .links a.active::after { transform: scaleX(1); }
.nav-cta { justify-self: end; min-height: 32px; padding-inline: 15px; font-size: 12px; }
.menu-toggle {
  display: none; justify-self: end; width: 40px; height: 40px; padding: 0;
  border: 0; background: transparent; cursor: pointer;
}
.menu-toggle::before, .menu-toggle span {
  content: ""; display: block; width: 18px; height: 1px; margin: 5px auto;
  background: var(--label); transition: transform .3s var(--spring);
}
.menu-toggle.open::before { transform: translateY(3px) rotate(45deg); }
.menu-toggle.open span { transform: translateY(-3px) rotate(-45deg); }

.btn {
  display: inline-flex; min-height: 44px; align-items: center; justify-content: center;
  gap: 7px; padding: 0 20px; border: 0; border-radius: 980px;
  background: var(--blue); color: #fff; font-size: 15px; font-weight: 400;
  letter-spacing: -.01em; cursor: pointer;
  transition: background .2s var(--ease), transform .25s var(--spring), box-shadow .25s var(--ease);
}
.btn:hover { background: var(--blue-hover); transform: scale(1.02); }
.btn:active { transform: scale(.98); }
.btn.alt { background: var(--bg-secondary); color: var(--blue); }
.btn.alt:hover { background: var(--bg-tertiary); box-shadow: inset 0 0 0 1px var(--separator-soft); }
.text-link {
  display: inline-flex; align-items: center; gap: 6px; color: var(--blue);
  font-size: 17px; letter-spacing: -.01em;
}
.text-link:hover { text-decoration: underline; }
.text-link span { transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(3px); }

h1, h2, h3, blockquote {
  margin-top: 0; font-family: var(--font-display); color: var(--label);
  font-weight: 600; letter-spacing: -.05em;
}
h1 { max-width: 1050px; margin-bottom: 28px; font-size: clamp(56px, 7.2vw, 96px); line-height: .98; }
h2 { margin-bottom: 22px; font-size: clamp(40px, 5vw, 64px); line-height: 1.02; }
h3 { margin-bottom: 12px; font-size: 28px; line-height: 1.08; }
p { margin: 0 0 18px; }
.lead { max-width: 760px; color: var(--label-secondary); font-size: clamp(21px, 2.3vw, 28px); line-height: 1.25; letter-spacing: -.03em; }
.muted { color: var(--label-secondary); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; color: var(--label-secondary);
  font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.home-hero {
  position: relative; min-height: 720px; display: grid; align-items: center;
  padding: 150px 0 90px; overflow: hidden; background: var(--bg);
}
.home-hero::before {
  content: ""; position: absolute; width: 640px; height: 640px; right: -180px; top: -200px;
  border-radius: 50%; background:
    radial-gradient(circle at 35% 35%, rgba(120, 180, 255, .9), rgba(141, 92, 246, .38) 44%, rgba(255, 255, 255, 0) 72%);
  filter: blur(20px); opacity: .52; pointer-events: none;
}
.hero-meta {
  position: relative; z-index: 1; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; margin-bottom: 34px;
  color: var(--label-secondary); font-size: 13px;
}
.split-title { position: relative; z-index: 1; max-width: 1080px; }
.split-title > span { display: block; overflow: hidden; }
.split-title > span > span {
  display: block; opacity: 0; filter: blur(8px); transform: translateY(28px);
  animation: hero-in .8s var(--spring) forwards;
}
.split-title > span:nth-child(2) > span { animation-delay: .1s; }
.split-title em { color: var(--blue); font-style: normal; }
@keyframes hero-in { to { opacity: 1; filter: blur(0); transform: none; } }
.hero-bottom { position: relative; z-index: 1; width: min(700px, 100%); margin-top: 36px; }
.hero-scroll { display: none; }

.home-page .nav:not(.scrolled) {
  border-bottom-color: rgba(255,255,255,.1);
  background: rgba(6,6,7,.8);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.home-page .nav:not(.scrolled) .home-brand { color: #00ddc2; }
.home-page .nav:not(.scrolled) .links a { color: rgba(255,255,255,.66); }
.home-page .nav:not(.scrolled) .links a:hover,
.home-page .nav:not(.scrolled) .links a.active { color: #fff; }
.home-page .nav:not(.scrolled) .menu-toggle::before,
.home-page .nav:not(.scrolled) .menu-toggle span { background: #fff; }
.home-brand {
  color: var(--blue); font-size: 21px; font-weight: 700; letter-spacing: -.06em;
}
.nav-socials {
  justify-self: end; display: flex; align-items: center; gap: 18px;
}
.nav-socials a {
  width: 28px; height: 28px; display: grid; place-items: center;
  color: var(--label-secondary); border-radius: 50%;
  transition: color .2s var(--ease), transform .25s var(--spring);
}
.home-page .nav:not(.scrolled) .nav-socials a { color: rgba(255,255,255,.62); }
.nav-socials a:hover { color: var(--blue); transform: translateY(-2px); }
.home-page .nav:not(.scrolled) .nav-socials a:hover { color: #00ddc2; }
.nav-socials svg { width: 18px; height: 18px; fill: currentColor; }
.home-page .home-hero {
  min-height: 100svh; display: grid; place-items: center;
  padding: 132px 0 84px; background: #070708; color: #fff; text-align: center;
}
.home-page .home-hero::before { display: none; }
.network-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(7,7,8,.08), rgba(7,7,8,.48) 72%, rgba(7,7,8,.88) 100%),
    linear-gradient(180deg, rgba(7,7,8,.1), transparent 30%, rgba(7,7,8,.34));
}
.hero-intro {
  position: relative; z-index: 2; max-width: 980px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-status {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px;
  color: rgba(255,255,255,.58); font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero-status i {
  width: 7px; height: 7px; border-radius: 50%; background: #32d74b;
  box-shadow: 0 0 0 6px rgba(50,215,75,.1);
}
.home-name {
  max-width: none; margin: 0; color: #00ddc2;
  background: linear-gradient(90deg, #14cfff, #00e1b5 65%, #47f0ae);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(62px, 8vw, 108px); line-height: .98; letter-spacing: -.07em;
  animation: home-title-in .8s var(--spring) both;
}
@keyframes home-title-in {
  from { opacity: 0; filter: blur(10px); transform: translateY(24px); }
}
.home-role {
  margin: 30px 0 0; color: rgba(255,255,255,.68);
  font-size: clamp(23px, 2.6vw, 34px); font-weight: 500; letter-spacing: -.035em;
}
.home-intro-copy {
  max-width: 850px; margin-top: 44px; color: rgba(255,255,255,.68);
  font-size: clamp(17px, 1.5vw, 20px); line-height: 1.65;
}
.home-intro-copy p { margin-bottom: 12px; }
.home-cta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px;
}
.home-cta .btn { min-height: 48px; padding-inline: 22px; font-weight: 500; }
.home-cta .hero-primary {
  background: linear-gradient(135deg, #08bfea, #00cfae); color: #04100e;
  box-shadow: 0 12px 32px rgba(0,207,174,.2);
}
.home-cta .hero-primary:hover { background: linear-gradient(135deg, #20cdf4, #12dfbb); }
.home-cta .hero-secondary {
  border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.home-cta .hero-secondary:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); }
.hero-facts {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 34px; color: rgba(255,255,255,.42); font-size: 11px;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.hero-facts i { width: 3px; height: 3px; border-radius: 50%; background: #00ddc2; }

.hero-visual { padding: 0 0 110px; background: var(--bg); }
.hero-visual-frame {
  position: relative; min-height: 560px; display: flex; align-items: flex-end;
  overflow: hidden; padding: 60px; border-radius: var(--radius-large);
  background: linear-gradient(145deg, #0a84ff, #535ce8 52%, #bf5af2);
  color: #fff; box-shadow: var(--shadow);
}
.hero-visual-frame::before {
  content: ""; position: absolute; width: 520px; height: 520px; right: -130px; top: -150px;
  border: 1px solid rgba(255,255,255,.36); border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.06), 0 0 0 110px rgba(255,255,255,.04);
}
.hero-visual-frame::after {
  content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(1px); backdrop-filter: blur(1px); pointer-events: none;
}
.hero-visual-number {
  position: absolute; right: 42px; top: 20px; z-index: 1;
  color: rgba(255,255,255,.16); font-size: 190px; font-weight: 700; line-height: 1;
}
.hero-visual-copy { position: relative; z-index: 2; max-width: 700px; }
.hero-visual-copy span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 600; letter-spacing: .05em; }
.hero-visual-copy h2 { margin: 12px 0 0; color: #fff; }
.hero-visual-chart {
  position: absolute; right: 56px; bottom: 58px; z-index: 2; width: 28%; height: 42%;
  display: flex; align-items: end; gap: 10px; padding: 24px;
  border: 1px solid rgba(255,255,255,.25); border-radius: 20px;
  background: rgba(255,255,255,.14); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.hero-visual-chart i {
  flex: 1; height: var(--h); border-radius: 5px 5px 2px 2px;
  background: rgba(255,255,255,.88); transform: scaleY(.05); transform-origin: bottom;
  animation: bars-in .8s var(--spring) .7s forwards;
}
@keyframes bars-in { to { transform: scaleY(1); } }

.page-hero { padding: 160px 0 96px; background: var(--bg); }
.page-kicker {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 36px; color: var(--label-secondary); font-size: 13px;
}

.section { position: relative; padding: 120px 0; background: var(--bg); }
.section.white { background: var(--bg-tertiary); }
.section.dark {
  background: linear-gradient(145deg, #f5f5f7, #eef6ff);
  color: var(--label);
}
.section.dark h2, .section.dark h3, .section.dark strong, .section.dark .quote { color: var(--label); }
.section.blue {
  background: linear-gradient(145deg, #eaf4ff, #f4edff);
  color: var(--label);
}
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; margin-bottom: 52px;
}
.section-head h2 { max-width: 820px; margin-bottom: 0; }
.section-head p { max-width: 400px; color: var(--label-secondary); }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative; padding: 34px; overflow: hidden;
  border: 1px solid var(--separator-soft); border-radius: var(--radius);
  background: var(--surface-solid);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-small); }
.card-number {
  display: block; margin-bottom: 54px; color: var(--label-tertiary);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
}
.card p:last-child { margin-bottom: 0; }

.projects { gap: 24px; }
.project-card {
  position: relative; padding: 16px 16px 24px; border-radius: var(--radius-large);
  background: var(--bg-secondary);
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
}
.project-card:hover { transform: scale(1.012); box-shadow: var(--shadow); }
.project-art {
  position: relative; min-height: 360px; display: grid; place-items: center;
  overflow: hidden; margin-bottom: 22px; border-radius: 22px; isolation: isolate;
}
.project-art::before {
  content: ""; position: absolute; width: 66%; aspect-ratio: 1; z-index: -1;
  border: 1px solid rgba(255,255,255,.58); border-radius: 50%;
  transition: transform .7s var(--spring);
}
.project-art::after {
  content: attr(data-label); position: absolute; right: 18px; bottom: 14px;
  color: rgba(255,255,255,.7); font-size: 10px; font-weight: 600; letter-spacing: .08em;
}
.project-card:hover .project-art::before { transform: rotate(12deg) scale(1.08); }
.project-title {
  max-width: 76%; color: #fff; font-size: clamp(34px, 4vw, 56px);
  font-weight: 600; line-height: .98; letter-spacing: -.05em;
}
.project-meta {
  display: flex; justify-content: space-between; gap: 18px;
  padding: 0 8px; font-size: 14px;
}
.project-meta span { color: var(--label-secondary); }
.art-1 { background: linear-gradient(145deg, #0a84ff, #4158d0); }
.art-2 { background: linear-gradient(145deg, #ff9f0a, #ff453a); }
.art-3 { background: linear-gradient(145deg, #30d158, #0a7a62); }
.art-4 { background: linear-gradient(145deg, #bf5af2, #5e5ce6); }
.art-5 { background: linear-gradient(145deg, #64d2ff, #0071e3); }
.art-6 { background: linear-gradient(145deg, #636366, #1c1c1e); }

.experience-section {
  overflow: hidden; background:
    radial-gradient(circle at 50% 0, rgba(10, 132, 255, .08), transparent 35%),
    #f5f5f7;
}
.experience-heading {
  display: block; max-width: 880px; margin: 0 auto 72px; text-align: center;
}
.experience-heading > div { max-width: none; }
.experience-heading h2 {
  position: relative; max-width: none; margin: 12px 0 24px; padding-bottom: 28px;
  font-size: clamp(54px, 7vw, 90px); line-height: .98; letter-spacing: -.06em;
}
.experience-heading h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 92px; height: 5px;
  border-radius: 99px; background: linear-gradient(90deg, #0a84ff, #00c7be);
  transform: translateX(-50%);
}
.experience-heading p {
  max-width: 650px; margin: 0 auto; color: var(--label-secondary);
  font-size: 17px; line-height: 1.6;
}
.experience-resume-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  color: var(--blue); font-size: 14px; font-weight: 550;
}
.experience-resume-link span { transition: transform .25s var(--spring); }
.experience-resume-link:hover span { transform: translate(3px, -3px); }
.experience-timeline {
  position: relative; max-width: 1020px; margin: 0 auto; padding-left: 56px;
}
.experience-timeline::before {
  content: ""; position: absolute; left: 14px; top: 38px; bottom: 38px; width: 2px;
  border-radius: 99px; background: linear-gradient(180deg, #0a84ff, #00c7be);
}
.experience-item {
  position: relative; margin-bottom: 28px;
}
.experience-item:last-child { margin-bottom: 0; }
.experience-item::before {
  content: ""; position: absolute; left: -50px; top: 38px; width: 14px; height: 14px;
  border: 5px solid #f5f5f7; border-radius: 50%; background: #0a84ff;
  box-shadow: 0 0 0 2px rgba(10, 132, 255, .22), 0 8px 18px rgba(10, 132, 255, .2);
}
.experience-item:nth-child(2)::before { background: #00b8ad; }
.experience-item:nth-child(3)::before { background: #5856d6; }
.experience-card {
  padding: 40px; border: 1px solid rgba(0, 0, 0, .07); border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .07);
  transition: transform .35s var(--spring), box-shadow .35s var(--ease), border-color .3s var(--ease);
}
.experience-card:hover {
  border-color: rgba(10, 132, 255, .2); box-shadow: 0 24px 70px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}
.experience-card-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  padding-bottom: 28px; border-bottom: 1px solid var(--separator-soft);
}
.experience-company {
  display: block; margin-bottom: 9px; color: var(--blue);
  font-size: 12px; font-weight: 650; letter-spacing: .02em;
}
.experience-card h3 {
  max-width: 650px; margin: 0; color: var(--label);
  font-size: clamp(24px, 3vw, 34px); line-height: 1.08; letter-spacing: -.04em;
}
.experience-card time {
  flex: 0 0 auto; padding: 9px 13px; border-radius: 980px;
  background: var(--bg-secondary); color: var(--label-secondary);
  font-size: 11px; font-weight: 600; white-space: nowrap;
}
.experience-list {
  display: grid; gap: 15px; margin: 28px 0 0; padding: 0; list-style: none;
}
.experience-list li {
  position: relative; padding-left: 24px; color: var(--label-secondary);
  font-size: 15px; line-height: 1.55;
}
.experience-list li::before {
  content: "›"; position: absolute; left: 2px; top: -1px; color: #00a99d;
  font-size: 22px; font-weight: 700; line-height: 1;
}
.experience-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.experience-tags span {
  display: inline-flex; min-height: 34px; align-items: center; padding: 0 12px;
  border: 1px solid rgba(10, 132, 255, .12); border-radius: 980px;
  background: #f2f8ff; color: #35688e; font-size: 11px; font-weight: 550;
}
.experience-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 28px;
}
.experience-card-footer .experience-tags { margin-top: 0; }
.experience-project-link {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  color: var(--blue); font-size: 13px; font-weight: 600;
}
.experience-project-link span { transition: transform .25s var(--spring); }
.experience-project-link:hover span { transform: translateX(4px); }

.workflow { counter-reset: workflow; display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.workflow div {
  min-height: 170px; padding: 24px; border: 1px solid var(--separator-soft);
  border-radius: var(--radius); background: var(--surface-solid);
}
.workflow div::before {
  counter-increment: workflow; content: "0" counter(workflow); display: block;
  margin-bottom: 60px; color: #2997ff; font-size: 11px; font-weight: 600;
}
.workflow strong { color: var(--label); font-size: 21px; }
.tools-row { display: flex; flex-wrap: wrap; gap: 9px; }
.tag {
  display: inline-flex; min-height: 38px; align-items: center; padding: 0 14px;
  border: 1px solid var(--separator-soft); border-radius: 980px;
  background: var(--surface-solid); color: var(--label-secondary); font-size: 12px;
}
.tool-logo-grid {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px;
}
.tool-logo-card {
  min-height: 154px; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 18px; padding: 22px 14px;
  border: 1px solid var(--separator-soft); border-radius: var(--radius);
  background: var(--surface-solid); color: var(--label-secondary);
  text-align: center; font-size: 12px; font-weight: 500;
  transition: transform .32s var(--spring), box-shadow .32s var(--ease), border-color .25s var(--ease);
}
.tool-logo-card:hover {
  z-index: 1; border-color: transparent; box-shadow: var(--shadow-small);
  transform: translateY(-4px) scale(1.015);
}
.tool-logo-icon {
  width: 46px; height: 46px; transition: transform .32s var(--spring);
}
.tool-logo-wide { width: 54px; }
.tool-logo-card:hover .tool-logo-icon,
.tool-logo-card:hover .tool-wordmark { transform: scale(1.08); }
.tool-wordmark {
  min-width: 48px; min-height: 48px; display: inline-flex; align-items: center;
  justify-content: center; transition: transform .32s var(--spring);
}
.mark-frog {
  border-radius: 50%; background: #66ad3d; color: #fff;
  font-size: 17px; font-weight: 700; letter-spacing: -.03em;
}
.mark-ahrefs { position: relative; gap: 7px; color: var(--label); }
.mark-ahrefs i {
  width: 12px; height: 34px; display: block;
  background: repeating-linear-gradient(to bottom, #ff5a36 0 5px, transparent 5px 8px);
  transform: skew(-12deg);
}
.mark-ahrefs b { font-size: 17px; letter-spacing: -.04em; }
.mark-semrush {
  border-radius: 50%; background: #ff642d; color: #fff;
  font-size: 14px; font-weight: 750; letter-spacing: -.04em;
}
.skills-tech-section {
  position: relative; isolation: isolate; overflow: hidden; padding: 128px 0 140px;
  background: #070708; color: #f5f5f7;
}
.skills-tech-section .network-canvas { z-index: -3; opacity: .78; }
.skills-network-shade {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(circle at 50% 16%, rgba(0, 221, 194, .1), transparent 30%),
    linear-gradient(180deg, rgba(7, 7, 8, .38), rgba(7, 7, 8, .7) 46%, rgba(7, 7, 8, .94));
}
.skills-tech-section .wrap { position: relative; z-index: 1; }
.skills-tech-heading {
  max-width: 900px; margin: 0 auto 82px; text-align: center;
}
.skills-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
  color: rgba(245, 245, 247, .58); font-size: 11px; font-weight: 650;
  letter-spacing: .13em; text-transform: uppercase;
}
.skills-kicker::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #00ddc2; box-shadow: 0 0 18px rgba(0, 221, 194, .65);
}
.skills-tech-heading h2 {
  position: relative; margin: 0; padding-bottom: 34px; color: #00ddc2;
  background: linear-gradient(90deg, #18c8ff 8%, #00efb2 72%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  font-size: clamp(52px, 7vw, 92px); line-height: .96; letter-spacing: -.06em;
}
.skills-tech-heading h2::after {
  content: ""; position: absolute; left: 50%; bottom: 0; width: 94px; height: 5px;
  border-radius: 99px; background: linear-gradient(90deg, #16c8ff, #00f0b5);
  box-shadow: 0 0 24px rgba(0, 221, 194, .35); transform: translateX(-50%);
}
.skills-tech-heading p {
  max-width: 650px; margin: 28px auto 0; color: rgba(245, 245, 247, .62);
  font-size: 17px; line-height: 1.6;
}
.skills-group + .skills-group { margin-top: 76px; }
.skills-group-heading {
  display: flex; align-items: end; justify-content: space-between; gap: 32px;
  margin-bottom: 24px;
}
.skills-group-heading h3 {
  margin: 0 0 6px; color: #f5f5f7; font-size: 25px; letter-spacing: -.035em;
}
.skills-group-heading > span,
.skills-group-heading div > span {
  color: rgba(245, 245, 247, .48); font-size: 13px;
}
.skills-context-link {
  display: inline-flex; align-items: center; gap: 8px; color: #27c8ff;
  font-size: 14px; font-weight: 550; transition: color .2s var(--ease);
}
.skills-context-link span { transition: transform .25s var(--spring); }
.skills-context-link:hover { color: #64dfff; }
.skills-context-link:hover span { transform: translateX(4px); }
.seo-skill-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
.seo-skill-card {
  min-height: 248px; padding: 28px; border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 22px; background: rgba(24, 25, 27, .86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  transition: transform .35s var(--spring), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.seo-skill-card:hover {
  border-color: rgba(0, 221, 194, .42); background: rgba(27, 31, 32, .96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .06);
  transform: translateY(-6px);
}
.seo-skill-card svg {
  width: 48px; height: 48px; margin-bottom: 34px; color: #16d7e8;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 0 13px rgba(22, 215, 232, .18));
}
.seo-skill-card h4 {
  margin: 0 0 10px; color: #f5f5f7; font-size: 18px; letter-spacing: -.025em;
}
.seo-skill-card p {
  margin: 0; color: rgba(245, 245, 247, .52); font-size: 13px; line-height: 1.55;
}
.skills-tech-section .tool-logo-grid { gap: 14px; }
.skills-tech-section .tool-logo-card {
  min-height: 174px; border-color: rgba(255, 255, 255, .11);
  background: rgba(24, 25, 27, .86); color: rgba(245, 245, 247, .66);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  font-size: 13px; font-weight: 550;
}
.skills-tech-section .tool-logo-card:hover {
  border-color: rgba(22, 200, 255, .4); background: rgba(27, 31, 32, .96);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .06);
}
.skills-tech-section .tool-logo-icon {
  color: #18ccef; fill: currentColor;
  filter: drop-shadow(0 0 13px rgba(24, 204, 239, .22));
}
.skills-tech-section .tool-wordmark {
  border: 1px solid rgba(22, 215, 232, .25); border-radius: 13px;
  background: rgba(22, 215, 232, .08); color: #16d7e8;
  filter: drop-shadow(0 0 13px rgba(22, 215, 232, .14));
}
.skills-tech-section .mark-ahrefs { padding: 0 10px; }
.skills-tech-section .mark-ahrefs i {
  background: repeating-linear-gradient(to bottom, #16d7e8 0 5px, transparent 5px 8px);
}

.personal-brand-section { background: #fff; }
.brand-story {
  display: grid; grid-template-columns: .9fr 1.1fr; align-items: center;
  gap: 80px;
}
.brand-story-copy h2 { margin-top: 16px; }
.brand-story-copy .text-link { margin-top: 16px; }
.brand-visual {
  position: relative; min-height: 560px; display: grid; place-items: center;
  overflow: hidden; border-radius: 36px;
  background:
    radial-gradient(circle at 24% 22%, rgba(100,210,255,.72), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(191,90,242,.38), transparent 38%),
    linear-gradient(145deg, #edf7ff, #f6efff);
  box-shadow: var(--shadow);
}
.brand-visual::before {
  content: ""; position: absolute; width: 480px; height: 480px;
  border: 1px solid rgba(0,113,227,.17); border-radius: 50%;
  box-shadow: 0 0 0 50px rgba(255,255,255,.25), 0 0 0 100px rgba(255,255,255,.16);
}
.brand-orbit {
  position: relative; z-index: 1; width: 380px; height: 380px;
  border: 1px solid rgba(0,113,227,.16); border-radius: 50%;
  animation: brand-float 7s ease-in-out infinite;
}
@keyframes brand-float { 50% { transform: translateY(-8px) rotate(1deg); } }
.brand-monogram {
  position: absolute; inset: 50% auto auto 50%; color: var(--label);
  font-size: 118px; font-weight: 700; letter-spacing: -.09em;
  transform: translate(-52%,-52%);
}
.brand-pill {
  position: absolute; display: inline-flex; align-items: center; min-height: 38px;
  padding: 0 15px; border: 1px solid rgba(255,255,255,.7); border-radius: 980px;
  background: rgba(255,255,255,.76); color: var(--label); box-shadow: var(--shadow-small);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  font-size: 12px; font-style: normal; font-weight: 600;
}
.brand-pill-one { top: 4%; left: 4%; }
.brand-pill-two { top: 18%; right: -10%; }
.brand-pill-three { right: -4%; bottom: 11%; }
.brand-pill-four { left: -9%; bottom: 16%; }
.brand-visual-caption {
  position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 2;
  display: flex; justify-content: space-between; gap: 16px;
  color: var(--label-secondary); font-size: 12px;
}
.brand-visual-caption strong { color: var(--label); font-weight: 600; }
.brand-attribute-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: 28px;
}
.brand-attribute {
  min-height: 220px; padding: 26px; border: 1px solid var(--separator-soft);
  border-radius: var(--radius); background: var(--bg-tertiary);
  transition: transform .32s var(--spring), box-shadow .32s var(--ease);
}
.brand-attribute:hover { transform: translateY(-4px); box-shadow: var(--shadow-small); }
.brand-attribute > span { color: var(--blue); font-size: 11px; font-weight: 600; }
.brand-attribute h3 { margin-top: 60px; }
.brand-attribute p { margin: 0; color: var(--label-secondary); font-size: 14px; }
.about-identity-panel {
  display: grid; grid-template-columns: 280px 1fr; overflow: hidden;
  margin-top: 72px; border: 1px solid var(--separator-soft);
  border-radius: 34px; background: var(--surface-solid); box-shadow: var(--shadow-small);
}
.identity-monogram {
  min-height: 280px; display: grid; place-items: center;
  background:
    radial-gradient(circle at 28% 25%, rgba(100,210,255,.9), transparent 38%),
    linear-gradient(145deg, #dff2ff, #eee7ff);
  color: var(--label); font-size: 88px; font-weight: 700; letter-spacing: -.09em;
}
.identity-facts { display: grid; grid-template-columns: repeat(3, 1fr); }
.identity-facts div {
  display: flex; flex-direction: column; justify-content: flex-end; gap: 8px;
  padding: 34px; border-left: 1px solid var(--separator-soft);
}
.identity-facts span {
  color: var(--label-tertiary); font-size: 10px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.identity-facts strong { max-width: 180px; font-size: 19px; line-height: 1.2; }

.case-page .page-hero { padding: 170px 0 110px; text-align: center; }
.case-page .page-hero .page-kicker { justify-content: center; }
.case-page .page-hero h1 { max-width: 920px; margin-inline: auto; }
.case-page .page-hero .lead { margin-inline: auto; }
.case-page .page-hero .note {
  max-width: 800px; margin: 34px auto 0; text-align: left;
}
.case-disclosure {
  max-width: 830px; display: grid; grid-template-columns: 130px 1fr; gap: 18px;
  margin: 36px auto 0; padding: 18px 20px; border: 1px solid var(--separator-soft);
  border-radius: 14px; background: var(--surface-solid); text-align: left;
}
.case-disclosure strong {
  color: var(--label); font-size: 11px; font-weight: 650;
  letter-spacing: .04em; text-transform: uppercase;
}
.case-disclosure span { color: var(--label-secondary); font-size: 13px; line-height: 1.5; }
.inline-disclosure { max-width: none; margin: 0 0 30px; }
.project-ledger { padding: 104px 0 116px; background: var(--bg-secondary); }
.project-ledger-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  margin-bottom: 44px;
}
.project-ledger-head h2 { margin: 10px 0 0; }
.project-ledger-head > span { color: var(--label-tertiary); font-size: 13px; }
.project-ledger-list { border-top: 1px solid var(--separator); }
.project-ledger-list a {
  display: grid; grid-template-columns: 42px 1.05fr 1.35fr 1.1fr auto;
  align-items: center; gap: 20px; padding: 24px 8px;
  border-bottom: 1px solid var(--separator-soft);
  transition: padding .25s var(--spring), background .2s var(--ease);
}
.project-ledger-list a:hover { padding-inline: 16px; background: rgba(255,255,255,.72); }
.project-ledger-list .ledger-number {
  color: var(--label-tertiary); font-size: 11px; font-variant-numeric: tabular-nums;
}
.project-ledger-list strong { color: var(--label); font-size: 15px; }
.project-ledger-list a > span:not(.ledger-number) { color: var(--label-secondary); font-size: 13px; }
.project-ledger-list i {
  min-width: max-content; padding: 7px 10px; border: 1px solid var(--separator-soft);
  border-radius: 980px; background: var(--surface-solid); color: var(--label-secondary);
  font-size: 10px; font-style: normal; font-weight: 600;
}
.evidence-block {
  display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(260px, .55fr);
  overflow: hidden; margin: 42px 0 34px; border: 1px solid var(--separator-soft);
  border-radius: 24px; background: var(--surface-solid); box-shadow: 0 18px 50px rgba(0,0,0,.06);
}
.evidence-media {
  position: relative; min-height: 500px; overflow: hidden;
  border-right: 1px solid var(--separator-soft);
  background:
    linear-gradient(var(--separator-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--separator-soft) 1px, transparent 1px),
    #f6f7f8;
  background-size: 28px 28px;
}
.evidence-media::before {
  content: ""; position: absolute; inset: 0 0 auto; z-index: 3; height: 42px;
  border-bottom: 1px solid var(--separator-soft);
  background:
    radial-gradient(circle at 20px 21px, #ff5f57 0 4px, transparent 4.5px),
    radial-gradient(circle at 36px 21px, #ffbd2e 0 4px, transparent 4.5px),
    radial-gradient(circle at 52px 21px, #28c840 0 4px, transparent 4.5px),
    rgba(255,255,255,.94);
}
.evidence-image {
  position: absolute; inset: 42px 0 0; z-index: 2; width: 100%; height: calc(100% - 42px);
  object-fit: contain; background: #fff; opacity: 0; transition: opacity .25s var(--ease);
}
.evidence-media.has-image .evidence-image { opacity: 1; }
.evidence-media.has-image .evidence-placeholder { display: none; }
.evidence-placeholder {
  position: absolute; inset: 42px 0 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; padding: 40px; text-align: center;
}
.evidence-placeholder::before {
  content: "+"; width: 48px; height: 48px; display: grid; place-items: center;
  margin-bottom: 8px; border: 1px dashed #a9afb7; border-radius: 12px;
  background: rgba(255,255,255,.72); color: var(--label-secondary); font-size: 25px; font-weight: 300;
}
.evidence-placeholder span {
  color: var(--blue); font-size: 10px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
}
.evidence-placeholder strong { max-width: 420px; color: var(--label); font-size: 21px; }
.evidence-placeholder small {
  max-width: 500px; padding: 7px 10px; border-radius: 7px; background: rgba(255,255,255,.76);
  color: var(--label-tertiary); font-size: 11px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.source-photo {
  position: absolute; inset: 42px 0 0; width: 100%; height: calc(100% - 42px);
  object-fit: cover; background: #eef0f2;
}
.wrap-source-media .source-photo { object-position: center 58%; }
.window-source-media {
  background: linear-gradient(145deg, #edf6ff, #f8fbff);
}
.window-source-media .source-photo {
  width: 64%; object-fit: contain; object-position: left bottom; background: transparent;
}
.local-source-media {
  background: linear-gradient(145deg, #f5f7f9, #eaf0f4);
}
.local-source-media .source-photo {
  width: 72%; object-fit: contain; object-position: left center; background: transparent;
}
.source-photo-media::after {
  content: ""; position: absolute; inset: 42px 0 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, transparent 35%, rgba(5,10,16,.04) 60%, rgba(5,10,16,.18));
}
.wrap-source-media::after {
  background: linear-gradient(90deg, rgba(2,4,8,.08), rgba(2,4,8,.02) 45%, rgba(2,4,8,.6));
}
.source-review-card {
  position: absolute; right: 26px; bottom: 26px; z-index: 2; width: min(340px, calc(100% - 52px));
  padding: 24px; border: 1px solid rgba(255,255,255,.2); border-radius: 18px;
  background: rgba(17,20,24,.9); color: #fff; box-shadow: 0 20px 55px rgba(0,0,0,.22);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.source-review-card > span {
  color: #64d2ff; font-size: 9px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
}
.source-review-card > strong { display: block; margin: 8px 0 16px; font-size: 22px; }
.source-review-card ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.source-review-card li {
  position: relative; padding-left: 15px; color: rgba(255,255,255,.7); font-size: 11px; line-height: 1.45;
}
.source-review-card li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px;
  border-radius: 50%; background: #00c7be;
}
.source-review-card dl { display: grid; gap: 11px; margin: 0; }
.source-review-card dl div { padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); }
.source-review-card dt {
  margin-bottom: 4px; color: rgba(255,255,255,.45); font-size: 8px;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.source-review-card dd { margin: 0; color: rgba(255,255,255,.78); font-size: 11px; line-height: 1.35; }
.artifact-media { padding: 64px 22px 22px; background: #eef1f4; }
.artifact-window {
  height: 100%; overflow: hidden; border: 1px solid #d7dbe0; border-radius: 13px;
  background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.08);
}
.artifact-toolbar {
  min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 20px; border-bottom: 1px solid #e1e4e8; background: #fbfcfd;
}
.artifact-toolbar strong { font-size: 13px; letter-spacing: -.01em; }
.artifact-toolbar span {
  color: #757b84; font-size: 9px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase;
}
.artifact-sheet { min-width: 620px; }
.artifact-row {
  display: grid; grid-template-columns: 1.45fr .75fr .65fr 1fr; align-items: center;
  min-height: 59px; border-bottom: 1px solid #e8eaed;
}
.artifact-row > * { padding: 0 16px; font-size: 11px; }
.artifact-row > * + * { border-left: 1px solid #eef0f2; }
.artifact-row strong { color: #24272b; font-weight: 600; }
.artifact-row span { color: #5e646d; }
.artifact-head { min-height: 42px; background: #f6f8fa; }
.artifact-head span {
  color: #777e87; font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
}
.artifact-status {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 14px 18px; background: #f8fafb;
}
.artifact-status span { color: #8a9098; font-size: 9px; }
.artifact-status strong { color: #4d545d; font-size: 9px; font-weight: 600; }
.status {
  justify-self: start; display: inline-flex; min-height: 24px; align-items: center;
  margin-left: 16px; padding: 0 8px; border-radius: 99px; font-size: 8px; font-style: normal; font-weight: 700;
}
.status.planned { background: #edf4ff; color: #3676b8; }
.status.brief { background: #f4efff; color: #7654a6; }
.status.priority-status { background: #fff0ed; color: #b75543; }
.dashboard-artifact { background: #e9edf2; }
.sample-label {
  padding: 6px 9px; border-radius: 6px; background: #fff0ed; color: #b75543 !important;
}
.dashboard-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 18px; }
.dashboard-kpis div {
  padding: 14px; border: 1px solid #e1e5e9; border-radius: 9px; background: #fff;
}
.dashboard-kpis span { display: block; color: #777e87; font-size: 8px; }
.dashboard-kpis strong { display: block; margin-top: 8px; color: #202328; font-size: 23px; letter-spacing: -.04em; }
.dashboard-kpis small { color: #178a58; font-size: 8px; }
.dashboard-body {
  display: grid; grid-template-columns: 1.55fr .75fr; gap: 12px; padding: 0 18px 18px;
}
.dashboard-chart, .dashboard-insight {
  border: 1px solid #e1e5e9; border-radius: 9px; background: #fff;
}
.dashboard-chart { padding: 14px; }
.dashboard-chart > span, .dashboard-insight > span {
  color: #777e87; font-size: 8px; font-weight: 650; letter-spacing: .06em; text-transform: uppercase;
}
.dashboard-chart svg { width: 100%; height: 170px; margin-top: 8px; }
.chart-grid { fill: none; stroke: #e8ebee; stroke-width: 1; }
.chart-area { fill: rgba(10,132,255,.1); }
.chart-line { fill: none; stroke: #0a84ff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.chart-points { fill: #0a84ff; }
.dashboard-insight { padding: 18px; }
.dashboard-insight strong { display: block; margin-top: 42px; color: #25282d; font-size: 15px; line-height: 1.25; }
.dashboard-insight p { margin: 10px 0 0; color: #6f757d; font-size: 10px; line-height: 1.45; }
.evidence-block figcaption {
  display: flex; flex-direction: column; justify-content: flex-end; padding: 30px;
}
.evidence-block figcaption > span {
  margin-bottom: auto; color: var(--label-tertiary); font-size: 10px;
  font-weight: 650; letter-spacing: .08em; text-transform: uppercase;
}
.evidence-block figcaption strong {
  margin-top: 72px; color: var(--label); font-size: 20px; line-height: 1.25;
}
.evidence-block figcaption p {
  margin: 14px 0 0; color: var(--label-secondary); font-size: 13px; line-height: 1.5;
}
.evidence-source {
  display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--separator-soft);
}
.evidence-source a { color: var(--blue); font-size: 11px; font-weight: 600; }
.evidence-source small {
  flex-basis: 100%; color: var(--label-tertiary); font-size: 10px;
}
.case-highlights { padding: 104px 0 120px; overflow: hidden; background: var(--bg-secondary); }
.case-highlights-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 44px;
}
.case-highlights-head h2 { margin: 0; }
.case-highlights-head > span { padding-bottom: 10px; color: var(--label-tertiary); font-size: 13px; }
.highlight-rail {
  width: 100%; display: grid; grid-auto-flow: column; grid-auto-columns: 330px;
  gap: 18px; overflow-x: auto; padding: 0 2px 20px;
  scroll-snap-type: x mandatory; scrollbar-width: none;
}
.highlight-rail::-webkit-scrollbar { display: none; }
.highlight-card {
  position: relative; min-height: 430px; display: flex; flex-direction: column;
  justify-content: space-between; overflow: hidden; padding: 32px;
  border-radius: var(--radius-large); color: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  transition: transform .4s var(--spring), box-shadow .4s var(--ease);
  scroll-snap-align: start;
}
.highlight-card::before {
  content: ""; position: absolute; width: 260px; height: 260px;
  right: -95px; bottom: -90px; border: 1px solid rgba(255,255,255,.4);
  border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.07), 0 0 0 84px rgba(255,255,255,.045);
  transition: transform .65s var(--spring);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 25px 60px rgba(0,0,0,.14); }
.highlight-card:hover::before { transform: scale(1.12) rotate(10deg); }
.highlight-card span {
  position: relative; z-index: 1; color: rgba(255,255,255,.76);
  font-size: 12px; font-weight: 600; text-transform: uppercase;
}
.highlight-card strong {
  position: relative; z-index: 1; max-width: 250px; margin-top: auto; padding-bottom: 34px;
  font-size: 31px; line-height: 1.08; letter-spacing: -.04em;
}
.highlight-card i {
  position: absolute; top: 26px; right: 28px; z-index: 1; width: 36px; height: 36px;
  display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.18); font-style: normal;
}
.highlight-blue { background: linear-gradient(145deg, #0a84ff, #3156d3); }
.highlight-orange { background: linear-gradient(145deg, #ff9f0a, #ff6b35); }
.highlight-green { background: linear-gradient(145deg, #30d158, #0b7b5d); }
.highlight-purple { background: linear-gradient(145deg, #bf5af2, #6c52d9); }
.highlight-cyan { background: linear-gradient(145deg, #64d2ff, #0071e3); }
.highlight-indigo { background: linear-gradient(145deg, #5e5ce6, #28256f); }

.case-jump {
  position: sticky; top: 52px; z-index: 90; overflow-x: auto;
  border-block: 1px solid var(--separator-soft);
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.case-jump .wrap { display: flex; gap: 28px; min-width: max-content; }
.case-jump a {
  padding: 15px 0; color: var(--label-secondary); font-size: 11px;
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.case-jump a:hover, .case-jump a.active { color: var(--blue); }
.case-chapter {
  min-height: 0; padding: 150px 0; overflow: hidden;
  scroll-margin-top: 98px;
}
.case-chapter:nth-of-type(even) { background: var(--bg-secondary); }
.case-chapter::after {
  content: attr(data-chapter); position: absolute; top: -45px; right: -22px;
  color: rgba(0,0,0,.025); font-size: clamp(190px, 28vw, 420px);
  display: none; font-weight: 700; line-height: 1; letter-spacing: -.1em; pointer-events: none;
}
.case-chapter > .wrap { position: relative; z-index: 1; }
.case-intro {
  display: grid; grid-template-columns: 1.25fr .55fr; align-items: end;
  gap: 72px; margin-bottom: 50px;
}
.case-intro h2 { margin: 14px 0 0; }
.case-intro h2 { font-size: clamp(48px, 5.4vw, 72px); line-height: 1; }
.case-summary { color: var(--label-secondary); font-size: 21px; line-height: 1.25; }
.meta {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 34px 0; overflow: hidden; border: 1px solid var(--separator-soft);
  border-radius: var(--radius); background: var(--surface-solid);
}
.meta div { min-height: 108px; padding: 22px; border-right: 1px solid var(--separator-soft); }
.meta div:last-child { border-right: 0; }
.meta span {
  display: block; margin-bottom: 8px; color: var(--label-tertiary);
  font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.meta strong { font-size: 18px; font-weight: 600; }
.case-visual {
  position: relative; min-height: 590px; display: grid;
  grid-template-columns: .78fr 1.22fr; align-items: center; gap: 56px;
  overflow: hidden; margin: 46px 0 34px; padding: 56px;
  border-radius: 34px;
}
.case-visual::before {
  content: ""; position: absolute; width: 520px; height: 520px;
  right: -250px; top: -250px; border-radius: 50%;
  background: rgba(255,255,255,.5); box-shadow: 0 0 0 50px rgba(255,255,255,.22);
}
.visual-copy { position: relative; z-index: 2; max-width: 400px; }
.visual-copy > span {
  color: var(--label-secondary); font-size: 12px; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.visual-copy > strong {
  display: block; margin: 12px 0 10px; color: var(--blue);
  font-size: clamp(100px, 13vw, 168px); line-height: .88; letter-spacing: -.08em;
}
.visual-copy h3 { margin-top: 12px; font-size: clamp(38px, 4.5vw, 62px); }
.visual-copy p { color: var(--label-secondary); font-size: 18px; line-height: 1.38; }
.audit-stage { background: linear-gradient(145deg, #edf6ff, #dcecff); }
.audit-console {
  position: relative; z-index: 2; min-height: 430px; padding: 68px 42px 38px;
  border: 1px solid rgba(255,255,255,.8); border-radius: 28px;
  background: rgba(255,255,255,.86); box-shadow: 0 30px 80px rgba(0,93,180,.14);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.audit-console-top {
  position: absolute; inset: 0 0 auto; height: 48px; display: flex;
  align-items: center; gap: 7px; padding: 0 18px;
  border-bottom: 1px solid var(--separator-soft);
}
.audit-console-top i { width: 8px; height: 8px; border-radius: 50%; background: #d2d2d7; }
.audit-console-top i:first-child { background: #ff5f57; }
.audit-console-top i:nth-child(2) { background: #ffbd2e; }
.audit-console-top i:nth-child(3) { background: #28c840; }
.audit-console-top span { margin-left: 8px; color: var(--label-tertiary); font-size: 11px; }
.audit-score-ring {
  width: 180px; height: 180px; display: grid; place-content: center;
  margin: 12px auto 32px; border-radius: 50%;
  background: radial-gradient(circle at center, #fff 61%, transparent 62%), conic-gradient(var(--blue) 0 92%, #e5e5ea 92% 100%);
  text-align: center;
}
.audit-score-ring b { color: var(--label); font-size: 50px; line-height: 1; }
.audit-score-ring small { color: var(--label-tertiary); }
.audit-bars { display: grid; gap: 13px; }
.audit-bars span { height: 9px; overflow: hidden; border-radius: 99px; background: #e9e9ed; }
.audit-bars i { display: block; width: 0; height: 100%; border-radius: inherit; background: var(--blue); transition: width 1s var(--spring); }
.case-visual.visible .audit-bars i { width: var(--w); }

.keyword-stage { background: linear-gradient(145deg, #fff6e9, #ffe8c9); }
.keyword-orbit {
  position: relative; z-index: 2; width: min(440px, 100%); aspect-ratio: 1;
  justify-self: center; border: 1px solid rgba(255,149,0,.22); border-radius: 50%;
  box-shadow: inset 0 0 0 55px rgba(255,255,255,.22), inset 0 0 0 110px rgba(255,255,255,.14);
}
.keyword-orbit::before, .keyword-orbit::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 1px;
  background: rgba(255,149,0,.2);
}
.keyword-orbit::after { transform: rotate(90deg); }
.keyword-orbit span, .keyword-core {
  position: absolute; z-index: 1; display: grid; place-items: center;
  padding: 12px 18px; border-radius: 980px; background: #fff;
  box-shadow: var(--shadow-small); color: var(--label); font-size: 13px; font-style: normal;
}
.keyword-core {
  inset: 50% auto auto 50%; width: 150px; height: 150px; padding: 0;
  border-radius: 50%; background: #ff9f0a; color: #fff;
  text-align: center; font-size: 18px; transform: translate(-50%,-50%);
}
.kw-one { top: 12%; left: 4%; }
.kw-two { top: 8%; right: 13%; }
.kw-three { right: -2%; bottom: 18%; }
.kw-four { left: 4%; bottom: 10%; }

.local-stage { background: linear-gradient(145deg, #eefaf2, #dff3e7); }
.local-map {
  position: relative; z-index: 2; width: 100%; min-height: 420px;
  overflow: hidden; border-radius: 28px; background:
    linear-gradient(90deg, transparent 49%, rgba(36,138,61,.07) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(36,138,61,.07) 50%, transparent 51%), #f8fcf9;
  background-size: 72px 72px;
  box-shadow: 0 30px 80px rgba(36,138,61,.12);
}
.road { position: absolute; display: block; height: 13px; border-radius: 99px; background: #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.03); }
.road-one { width: 120%; top: 36%; left: -10%; transform: rotate(-14deg); }
.road-two { width: 110%; top: 62%; left: -5%; transform: rotate(17deg); }
.road-three { width: 80%; top: 15%; left: 28%; transform: rotate(72deg); }
.map-pin {
  position: absolute; width: 28px; height: 28px; border: 7px solid #fff;
  border-radius: 50% 50% 50% 0; background: var(--blue);
  box-shadow: var(--shadow-small); transform: rotate(-45deg);
}
.pin-one { top: 25%; left: 28%; }
.pin-two { top: 58%; right: 18%; }
.pin-three { right: 34%; bottom: 14%; }
.profile-popover {
  position: absolute; left: 50%; top: 48%; width: 230px; display: grid; gap: 4px;
  padding: 20px; border: 1px solid rgba(255,255,255,.75); border-radius: 18px;
  background: rgba(255,255,255,.9); box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  transform: translate(-50%,-50%);
}
.profile-popover b { font-size: 17px; }
.profile-popover span { color: #b06f00; font-size: 13px; }
.profile-popover small { color: var(--label-tertiary); }
.note {
  margin: 24px 0; padding: 20px 22px; border: 1px solid rgba(0,113,227,.13);
  border-radius: var(--radius-small); background: rgba(0,113,227,.07);
}
.note:last-child { margin-bottom: 0; }
.check { columns: 2; padding: 0; list-style: none; }
.check li { break-inside: avoid; padding: 7px 0; }
.check li::before { content: "✓"; margin-right: 9px; color: var(--green); font-weight: 600; }
.table {
  overflow-x: auto; margin: 24px 0; border: 1px solid var(--separator-soft);
  border-radius: var(--radius); background: var(--surface-solid);
}
table { width: 100%; min-width: 720px; border-collapse: collapse; }
th, td { padding: 17px 18px; border-bottom: 1px solid var(--separator-soft); text-align: left; }
th { color: var(--label-secondary); font-size: 10px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
td { color: var(--label); font-size: 14px; }
tr:last-child td { border-bottom: 0; }
.priority {
  display: inline-flex; min-height: 22px; align-items: center; padding: 0 8px;
  border-radius: 980px; background: var(--label); color: var(--bg);
  font-size: 9px; font-weight: 600; text-transform: uppercase;
}
.before-after {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden;
  border: 1px solid var(--separator-soft); border-radius: var(--radius-large);
  background: var(--separator-soft);
}
.before-after article { min-height: 360px; padding: 36px; background: var(--surface-solid); }
.before-after .after { background: #eef6ff; color: var(--label); }
.before-after .after h3 { color: var(--label); }
.before-after .label { color: var(--label-tertiary); font-size: 10px; font-weight: 600; text-transform: uppercase; }
.before-after h3 { margin-top: 40px; }
.funnel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 28px 0; }
.funnel div { min-height: 190px; padding: 24px; border-radius: var(--radius); background: var(--surface-solid); }
.funnel span { color: var(--blue); font-size: 10px; font-weight: 600; }
.funnel strong { display: block; margin-top: 52px; font-size: 18px; }
.metric strong {
  display: block; margin-bottom: 3px; color: var(--label);
  font-size: clamp(38px, 4.5vw, 58px); font-weight: 600; letter-spacing: -.05em;
}
.metric span { color: var(--label-secondary); font-size: 12px; }
.barbox {
  height: 300px; display: flex; align-items: end; gap: 14px; padding: 32px;
  border: 1px solid var(--separator-soft); border-radius: var(--radius);
  background: linear-gradient(180deg, #f7faff, #edf5ff);
}
.bar {
  flex: 1; height: var(--height); border-radius: 5px 5px 2px 2px;
  background: #2997ff; transform: scaleY(.04); transform-origin: bottom;
  transition: transform .9s var(--spring);
}
.bar.animate { transform: scaleY(1); }
.chart-labels { display: flex; justify-content: space-around; margin-top: 8px; color: var(--label-tertiary); font-size: 10px; }
.timeline { border-top: 1px solid var(--separator-soft); }
.timeline-item {
  display: grid; grid-template-columns: 180px 1fr; gap: 36px;
  padding: 34px 0; border-bottom: 1px solid var(--separator-soft);
}
.timeline-item time { color: var(--label-tertiary); font-size: 12px; }
.timeline-item p { max-width: 720px; color: var(--label-secondary); }
.quote {
  margin: 0; padding: 0; border: 0;
  color: var(--label); font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
}
.resume {
  width: 100%; height: 820px; border: 1px solid var(--separator-soft);
  border-radius: var(--radius); background: var(--surface-solid);
}
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.contact-list { margin: 36px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--separator-soft); }
.contact-list li { padding: 18px 0; border-bottom: 1px solid var(--separator-soft); }
.contact-list small {
  display: block; margin-bottom: 5px; color: var(--label-tertiary);
  font-size: 10px; font-weight: 600; text-transform: uppercase;
}
label {
  display: block; margin-bottom: 8px; color: var(--label-secondary);
  font-size: 12px; font-weight: 600;
}
input, textarea {
  width: 100%; margin-bottom: 18px; padding: 14px 16px;
  border: 1px solid var(--separator); border-radius: var(--radius-small);
  outline: 0; background: var(--surface-solid); color: var(--label);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,113,227,.14); }
textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--green); font-size: 13px; }

.mega-cta { padding: 120px 0; background: var(--bg-secondary); color: var(--label); text-align: center; }
.mega-cta p { color: var(--label-tertiary); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.mega-cta a {
  display: inline-flex; align-items: center; gap: 14px; color: var(--label);
  font-size: clamp(48px, 7vw, 86px); font-weight: 600; letter-spacing: -.05em;
  transition: color .2s var(--ease);
}
.mega-cta a:hover { color: var(--blue); }
.mega-cta a span { font-size: .45em; transition: transform .25s var(--spring); }
.mega-cta a:hover span { transform: translate(3px, -3px); }
.footer { padding: 28px 0; border-top: 1px solid var(--separator-soft); background: var(--bg-secondary); color: var(--label-tertiary); font-size: 12px; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer a:hover { color: var(--label); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--spring); }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); }
.stagger.visible > * { animation: rise .55s var(--spring) forwards; }
.stagger.visible > *:nth-child(2) { animation-delay: .06s; }
.stagger.visible > *:nth-child(3) { animation-delay: .12s; }
.stagger.visible > *:nth-child(4) { animation-delay: .18s; }
.stagger.visible > *:nth-child(5) { animation-delay: .24s; }
.stagger.visible > *:nth-child(6) { animation-delay: .3s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 960px) {
  .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow { grid-template-columns: repeat(3, 1fr); }
  .case-intro { grid-template-columns: 1fr; gap: 18px; }
  .meta { grid-template-columns: repeat(2, 1fr); }
  .meta div:nth-child(2) { border-right: 0; }
  .contact-grid { gap: 40px; }
  .tool-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .seo-skill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-visual { grid-template-columns: 1fr; gap: 34px; }
  .visual-copy { max-width: 650px; }
  .audit-console, .keyword-orbit, .local-map { width: min(620px, 100%); justify-self: center; }
  .brand-story { grid-template-columns: 1fr; gap: 50px; }
  .brand-visual { min-height: 520px; }
  .brand-attribute-grid { grid-template-columns: repeat(2, 1fr); }
  .about-identity-panel { grid-template-columns: 220px 1fr; }
  .identity-facts { grid-template-columns: 1fr; }
  .identity-facts div { min-height: 90px; justify-content: center; border-bottom: 1px solid var(--separator-soft); }
  .identity-facts div:last-child { border-bottom: 0; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 32px, 1180px); }
  .navin { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }
  .nav-socials { display: none; }
  .menu-toggle { display: block; }
  .links {
    position: fixed; inset: 52px 0 auto; display: grid; gap: 0; padding: 8px 24px 24px;
    border-bottom: 1px solid var(--separator-soft);
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    backdrop-filter: saturate(180%) blur(24px);
    opacity: 0; pointer-events: none; transform: translateY(-120%);
    transition: opacity .25s var(--ease), transform .35s var(--spring);
  }
  .links.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .links a { padding: 14px 0; border-bottom: 1px solid var(--separator-soft); font-size: 17px; }
  .links a::after { display: none; }
  .home-page .nav:not(.scrolled) .links {
    border-color: rgba(255,255,255,.1); background: rgba(7,7,8,.96);
  }
  .home-page .home-hero { min-height: 100svh; padding: 112px 0 68px; }
  .home-name { font-size: clamp(54px, 15vw, 78px); }
  .home-role { margin-top: 24px; font-size: 24px; }
  .home-intro-copy { margin-top: 34px; font-size: 16px; line-height: 1.55; }
  .hero-facts { flex-wrap: wrap; }
  .home-hero { min-height: 650px; padding: 120px 0 72px; }
  .home-hero::before { width: 420px; height: 420px; right: -240px; top: -100px; }
  .hero-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-visual { padding-bottom: 72px; }
  .hero-visual-frame { min-height: 440px; padding: 34px; }
  .hero-visual-number { right: 20px; font-size: 130px; }
  .hero-visual-chart { display: none; }
  .page-hero { padding: 120px 0 72px; }
  .page-kicker { align-items: flex-start; flex-direction: column; gap: 8px; }
  .section { padding: 82px 0; }
  .experience-heading { margin-bottom: 54px; }
  .experience-heading p { font-size: 15px; }
  .experience-timeline { padding-left: 38px; }
  .experience-timeline::before { left: 8px; }
  .experience-item::before { left: -37px; }
  .experience-card { padding: 30px; border-radius: 24px; }
  .experience-card-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .experience-card time { order: -1; }
  .experience-card-footer { align-items: flex-start; flex-direction: column; }
  .skills-tech-section { padding: 96px 0 104px; }
  .skills-tech-heading { margin-bottom: 62px; }
  .skills-tech-heading h2 { padding-bottom: 28px; }
  .skills-tech-heading p { font-size: 15px; }
  .skills-group-heading { align-items: flex-start; flex-direction: column; gap: 12px; }
  .skills-group + .skills-group { margin-top: 58px; }
  .case-page .page-hero { padding: 125px 0 82px; }
  .case-page .page-hero .page-kicker { align-items: center; }
  .case-highlights { padding: 76px 0 88px; }
  .case-highlights-head { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .highlight-rail { grid-auto-columns: 285px; }
  .highlight-card { min-height: 380px; padding: 28px; }
  .case-chapter { padding: 100px 0; }
  .section-head { align-items: flex-start; flex-direction: column; gap: 16px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .project-art { min-height: 300px; }
  .tool-logo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .seo-skill-card { min-height: 226px; }
  .workflow { grid-template-columns: 1fr 1fr; }
  .case-chapter::after { font-size: 210px; }
  .case-visual { min-height: 0; padding: 34px; border-radius: 26px; }
  .audit-console { min-height: 390px; padding: 68px 26px 28px; }
  .keyword-orbit { width: min(420px, 100%); }
  .local-map { min-height: 370px; }
  .meta { grid-template-columns: 1fr; }
  .meta div, .meta div:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--separator-soft); }
  .meta div:last-child { border-bottom: 0; }
  .before-after, .contact-grid { grid-template-columns: 1fr; }
  .funnel { grid-template-columns: 1fr 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .resume { height: 600px; }
  .mega-cta { padding: 86px 0; }
  .footer-row { flex-direction: column; }
  .about-identity-panel { grid-template-columns: 1fr; }
  .identity-monogram { min-height: 220px; }
  .identity-facts { grid-template-columns: 1fr 1fr 1fr; }
  .identity-facts div { min-height: 150px; padding: 24px; border-top: 1px solid var(--separator-soft); border-bottom: 0; }
  .identity-facts div:first-child { border-left: 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 52px; }
  h2 { font-size: 38px; }
  .home-hero { min-height: 620px; }
  .hero-visual-frame { min-height: 380px; padding: 26px; }
  .hero-visual-copy h2 { font-size: 34px; }
  .project-art { min-height: 250px; }
  .project-title { max-width: 88%; }
  .workflow, .funnel { grid-template-columns: 1fr; }
  .check { columns: 1; }
  .card { padding: 26px; }
  .experience-heading h2 { font-size: 48px; }
  .experience-timeline { padding-left: 26px; }
  .experience-timeline::before { left: 5px; top: 30px; bottom: 30px; }
  .experience-item::before { left: -27px; top: 30px; width: 12px; height: 12px; border-width: 4px; }
  .experience-card { padding: 24px; border-radius: 20px; }
  .experience-company { line-height: 1.45; }
  .experience-list li { padding-left: 20px; font-size: 14px; }
  .experience-tags { margin-top: 24px; }
  .tool-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .tool-logo-card { min-height: 138px; padding: 18px 10px; }
  .skills-tech-section { padding: 82px 0 90px; }
  .skills-tech-heading { margin-bottom: 50px; }
  .skills-tech-heading h2 { font-size: 48px; }
  .skills-tech-heading p { margin-top: 22px; }
  .seo-skill-grid { grid-template-columns: 1fr; gap: 10px; }
  .seo-skill-card { min-height: 0; padding: 24px; }
  .seo-skill-card svg { margin-bottom: 26px; }
  .skills-tech-section .tool-logo-card { min-height: 144px; }
  .case-page .page-hero .note { padding: 16px; }
  .case-intro h2 { font-size: 48px; }
  .case-summary { font-size: 18px; }
  .case-visual { padding: 26px; }
  .keyword-orbit span { padding: 9px 12px; font-size: 11px; }
  .keyword-core { width: 118px; height: 118px; font-size: 15px; }
  .profile-popover { width: 205px; }
  .brand-visual { min-height: 440px; border-radius: 28px; }
  .brand-orbit { width: 290px; height: 290px; }
  .brand-monogram { font-size: 88px; }
  .brand-pill-two, .brand-pill-three { right: -4%; }
  .brand-pill-four { left: -4%; }
  .brand-attribute-grid { grid-template-columns: 1fr; }
  .brand-attribute { min-height: 190px; }
  .identity-facts { grid-template-columns: 1fr; }
  .identity-facts div { min-height: 105px; border-left: 0; }
  .home-page .home-hero { padding-top: 100px; }
  .home-name { font-size: 52px; }
  .home-role { font-size: 21px; }
  .home-cta { width: 100%; }
  .home-cta .btn { flex: 1 1 auto; }
  .hero-facts { max-width: 300px; gap: 9px; }
}

@media (max-width: 960px) {
  .project-ledger-list a {
    grid-template-columns: 36px 1fr 1.2fr .9fr auto; gap: 14px;
  }
  .evidence-block { grid-template-columns: 1fr; }
  .evidence-media { min-height: 460px; border-right: 0; border-bottom: 1px solid var(--separator-soft); }
  .evidence-block figcaption { min-height: 230px; }
  .evidence-block figcaption strong { margin-top: 54px; }
}

@media (max-width: 760px) {
  .case-disclosure { grid-template-columns: 1fr; gap: 6px; }
  .project-ledger { padding: 78px 0 86px; }
  .project-ledger-head { align-items: flex-start; flex-direction: column; gap: 12px; margin-bottom: 30px; }
  .project-ledger-list a {
    grid-template-columns: 30px 1fr auto; gap: 8px 12px; padding: 20px 4px;
  }
  .project-ledger-list a:hover { padding-inline: 8px; }
  .project-ledger-list .ledger-number { grid-column: 1; grid-row: 1 / span 2; align-self: start; padding-top: 3px; }
  .project-ledger-list strong { grid-column: 2; }
  .project-ledger-list a > span:not(.ledger-number) { grid-column: 2; }
  .project-ledger-list a > span:nth-of-type(3) { display: none; }
  .project-ledger-list i { grid-column: 3; grid-row: 1 / span 2; }
  .evidence-block { margin: 32px 0 28px; border-radius: 19px; }
  .evidence-media { min-height: 390px; }
  .evidence-block figcaption { min-height: 210px; padding: 24px; }
  .evidence-block figcaption strong { margin-top: 42px; }
  .source-review-card { right: 18px; bottom: 18px; padding: 20px; }
  .window-source-media .source-photo, .local-source-media .source-photo { width: 100%; opacity: .48; }
  .artifact-media { padding: 58px 14px 14px; }
  .artifact-window { overflow-x: auto; }
  .artifact-toolbar, .artifact-sheet, .artifact-status, .dashboard-kpis, .dashboard-body { min-width: 620px; }
}

@media (max-width: 480px) {
  .project-ledger-list a { grid-template-columns: 26px 1fr; }
  .project-ledger-list i {
    grid-column: 2; grid-row: auto; justify-self: start; margin-top: 4px;
  }
  .evidence-media { min-height: 310px; }
  .evidence-placeholder { padding: 28px 18px; }
  .evidence-placeholder strong { font-size: 18px; }
  .evidence-placeholder small { max-width: 100%; overflow-wrap: anywhere; }
  .source-review-card { right: 12px; bottom: 12px; width: calc(100% - 24px); padding: 17px; }
  .source-review-card > strong { margin-bottom: 12px; font-size: 19px; }
  .source-review-card li { font-size: 10px; }
  .source-review-card dl { gap: 7px; }
  .source-review-card dl div { padding-top: 7px; }
  .source-review-card dd { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .stagger > *, .split-title > span > span { opacity: 1 !important; filter: none !important; transform: none !important; }
  .bar, .hero-visual-chart i { transform: scaleY(1) !important; }
}
