:root {
  --ink: #0b1020;
  --ink-soft: #2d3548;
  --muted: #687087;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --line: #dcdedc;
  --lime: #c9ff52;
  --lime-dark: #a9e32a;
  --violet: #7b61ff;
  --violet-soft: #eae5ff;
  --blue: #2869ed;
  --salmon: #ff8a6b;
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
  --shadow: 0 28px 80px rgba(14, 20, 38, 0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
::selection { color: var(--ink); background: var(--lime); }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 16px; color: white; background: var(--ink); border-radius: 8px; transform: translateY(-180%); transition: transform 180ms ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 84px; transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(247, 246, 242, 0.9); border-color: rgba(11, 16, 32, 0.08); box-shadow: 0 10px 35px rgba(11, 16, 32, 0.05); backdrop-filter: blur(18px); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 13px; font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: -0.02em; box-shadow: inset 0 0 0 1px rgba(11, 16, 32, 0.08); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--display); font-size: 14px; letter-spacing: -0.02em; }
.brand-copy small { color: var(--muted); font-size: 11px; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { position: relative; font-size: 13px; font-weight: 600; }
.nav-links a:not(.nav-cta)::after { position: absolute; content: ""; right: 0; bottom: -6px; left: 0; height: 2px; background: var(--ink); transform: scaleX(0); transition: transform 180ms ease; }
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links .nav-cta { padding: 11px 18px; color: white; background: var(--ink); border-radius: 999px; transition: transform 180ms ease, background 180ms ease; }
.nav-links .nav-cta:hover { background: var(--blue); transform: translateY(-2px); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.nav-toggle > span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); transition: transform 180ms ease; }

.hero { position: relative; min-height: 810px; padding-top: 162px; padding-bottom: 90px; display: grid; grid-template-columns: minmax(0, 1.07fr) minmax(420px, 0.93fr); align-items: center; gap: 88px; }
.hero-copy { position: relative; z-index: 2; }
.availability { width: fit-content; display: flex; align-items: center; gap: 9px; margin-bottom: 34px; padding: 7px 12px 7px 9px; color: #465035; background: #eef9d5; border: 1px solid #dcefb4; border-radius: 999px; font-size: 12px; font-weight: 600; }
.status-dot { position: relative; width: 9px; height: 9px; background: #5fa70b; border-radius: 50%; }
.status-dot::after { position: absolute; content: ""; inset: -3px; border: 1px solid rgba(95, 167, 11, 0.35); border-radius: inherit; animation: pulse 2s infinite; }
@keyframes pulse { 50% { transform: scale(1.45); opacity: 0; } }
.eyebrow { margin: 0 0 16px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin: 0; font-family: var(--display); font-size: clamp(52px, 5.8vw, 82px); font-weight: 700; line-height: 1.01; letter-spacing: -0.055em; }
.hero h1 em, .contact-inner h2 em { position: relative; z-index: 0; font-style: normal; }
.hero h1 em::after { position: absolute; z-index: -1; content: ""; right: -3px; bottom: 5px; left: 0; height: 15px; background: var(--lime); transform: rotate(-1.2deg); }
.hero-lede { max-width: 650px; margin: 30px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button { min-height: 50px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 999px; font-size: 13px; font-weight: 700; transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease; }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; transition: transform 180ms ease; }
.button:hover { transform: translateY(-3px); }
.button:hover svg { transform: translateX(3px); }
.button-primary { color: white; background: var(--ink); box-shadow: 0 12px 30px rgba(11, 16, 32, 0.16); }
.button-primary:hover { background: var(--blue); }
.button-secondary { background: rgba(255, 255, 255, 0.6); border-color: var(--line); }
.button-secondary:hover { background: white; border-color: #b8bdc4; }
.hero-links { display: flex; gap: 24px; margin-top: 36px; }
.hero-links a { color: var(--muted); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; transition: color 180ms ease; }
.hero-links a:hover { color: var(--blue); }
.hero-links span { display: inline-block; margin-left: 2px; transition: transform 180ms ease; }
.hero-links a:hover span { transform: translate(2px, -2px); }

.hero-visual { position: relative; min-height: 580px; display: grid; place-items: center; isolation: isolate; }
.hero-visual::before { position: absolute; z-index: -3; content: ""; width: 500px; height: 500px; background: linear-gradient(140deg, #e3eaff, #e7fcb7 56%, #ffe6df); border-radius: 50%; filter: blur(1px); }
.visual-orbit { position: absolute; z-index: -2; border: 1px solid rgba(11, 16, 32, 0.13); border-radius: 50%; }
.orbit-one { width: 560px; height: 390px; transform: rotate(-34deg); }
.orbit-two { width: 480px; height: 590px; transform: rotate(43deg); }
.portrait-card { width: min(390px, 84%); padding: 13px; background: rgba(255, 255, 255, 0.76); border: 1px solid rgba(255, 255, 255, 0.9); border-radius: 26px; box-shadow: var(--shadow); backdrop-filter: blur(20px); transform: rotate(2.5deg); }
.portrait-topline, .portrait-footer { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.portrait-topline { padding: 3px 5px 12px; }
.portrait-index { font-variant-numeric: tabular-nums; }
.portrait-frame { position: relative; aspect-ratio: 0.87; overflow: hidden; background: #d8dfe0; border-radius: 17px; }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; filter: saturate(0.82) contrast(1.02); }
.portrait-gradient { position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(8, 13, 27, 0.76)); }
.portrait-caption { position: absolute; right: 20px; bottom: 19px; left: 20px; display: flex; flex-direction: column; color: white; }
.portrait-caption strong { font-family: var(--display); font-size: 23px; line-height: 1.2; }
.portrait-caption span { color: rgba(255, 255, 255, 0.74); font-size: 11px; }
.portrait-footer { justify-content: flex-start; gap: 10px; padding: 12px 5px 2px; letter-spacing: 0; text-transform: none; }
.stacked-avatars { display: flex; padding-left: 6px; }
.stacked-avatars i { width: 27px; height: 27px; margin-left: -6px; display: grid; place-items: center; color: white; background: var(--ink); border: 2px solid white; border-radius: 50%; font-size: 8px; font-style: normal; }
.stacked-avatars i:nth-child(2) { background: var(--blue); }.stacked-avatars i:nth-child(3) { color: var(--ink); background: var(--lime); }
.floating-note { position: absolute; z-index: 3; padding: 13px 15px; display: flex; align-items: center; gap: 11px; background: rgba(255, 255, 255, 0.88); border: 1px solid white; border-radius: 15px; box-shadow: 0 14px 35px rgba(11, 16, 32, 0.13); backdrop-filter: blur(16px); }
.floating-note > span:last-child { display: flex; flex-direction: column; }.floating-note strong { font-family: var(--display); font-size: 12px; }.floating-note small { color: var(--muted); font-size: 9px; }
.note-icon { width: 29px; height: 29px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 9px; font-size: 17px; font-weight: 700; }
.note-one { top: 88px; left: -30px; transform: rotate(-4deg); }.note-two { right: -22px; bottom: 102px; transform: rotate(4deg); }.note-two .note-icon { color: white; background: var(--violet); }

.signal-bar { color: white; background: var(--ink); }
.signal-grid { min-height: 160px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.signal-item { min-height: 84px; padding: 7px 30px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.signal-item:first-child { padding-left: 0; }.signal-item:last-child { padding-right: 0; border-right: 0; }
.signal-item strong { font-family: var(--display); font-size: 34px; letter-spacing: -0.06em; }.signal-item strong span { color: var(--lime); }
.signal-item p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 11px; line-height: 1.5; }

.section { padding-block: 128px; }
.section-kicker { margin-bottom: 78px; padding-bottom: 14px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.section-number { color: var(--ink); font-variant-numeric: tabular-nums; }
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 110px; }
.intro-grid h2, .section-heading-row h2, .experience-intro h2, .education-grid h2 { margin: 0; font-family: var(--display); font-size: clamp(39px, 4.4vw, 62px); font-weight: 650; line-height: 1.1; letter-spacing: -0.045em; }
.intro-copy { padding-top: 4px; }
.intro-copy p { margin: 0 0 22px; color: var(--ink-soft); font-size: 17px; line-height: 1.78; }

.work-section { background: #eeeee9; border-block: 1px solid #e0e1dc; }
.section-heading-row { margin-bottom: 56px; display: grid; grid-template-columns: 1fr 0.55fr; align-items: end; gap: 80px; }
.section-heading-row .eyebrow { margin-bottom: 12px; }
.section-summary { margin: 0 0 5px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.case-card { overflow: hidden; display: flex; flex-direction: column; background: var(--surface); border: 1px solid rgba(11, 16, 32, 0.08); border-radius: 24px; box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset; transition: transform 250ms ease, box-shadow 250ms ease; }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(11, 16, 32, 0.09); }
.case-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.08fr 0.92fr; }
.case-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 0.92fr 1.08fr; }
.case-visual { position: relative; min-height: 295px; overflow: hidden; }
.case-featured .case-visual { min-height: 440px; }.case-wide .case-visual { min-height: 370px; order: 2; }
.case-content { padding: 34px 36px 36px; display: flex; flex-direction: column; flex: 1; }
.case-featured .case-content { padding: 58px 52px; justify-content: center; }.case-wide .case-content { padding: 52px; justify-content: center; }
.case-meta { margin-bottom: 22px; display: flex; align-items: center; justify-content: space-between; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }.case-meta span:last-child { color: var(--muted); }
.case-content h3 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(25px, 3vw, 39px); line-height: 1.14; letter-spacing: -0.04em; }.case-card:not(.case-featured):not(.case-wide) .case-content h3 { font-size: 27px; }
.case-content p { margin: 0 0 27px; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.tag-list, .timeline-tags { padding: 0; margin: auto 0 0; display: flex; flex-wrap: wrap; gap: 7px; list-style: none; }
.tag-list li, .timeline-tags span { padding: 6px 10px; color: #525a6c; background: #f2f3f2; border: 1px solid #e5e6e4; border-radius: 999px; font-size: 10px; font-weight: 600; }

.ai-visual { background: radial-gradient(circle at 20% 25%, rgba(201, 255, 82, 0.85), transparent 28%), linear-gradient(135deg, #151b32 10%, #33308c 55%, #8e73ff); }
.prompt-window { position: absolute; z-index: 3; top: 84px; left: 48px; width: 58%; padding: 14px 18px 22px; color: white; background: rgba(12, 17, 35, 0.88); border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 15px; box-shadow: 0 30px 50px rgba(8, 9, 32, 0.28); transform: rotate(-3deg); }
.window-bar { display: flex; gap: 5px; margin-bottom: 23px; }.window-bar i { width: 6px; height: 6px; background: rgba(255, 255, 255, 0.35); border-radius: 50%; }.window-bar i:first-child { background: var(--lime); }
.prompt-window p { margin: 0; font-family: var(--display); font-size: clamp(12px, 1.5vw, 17px); line-height: 1.5; }.prompt-cursor { display: inline-block; width: 1px; height: 18px; margin-top: 13px; background: var(--lime); animation: blink 1s infinite; }
@keyframes blink { 50% { opacity: 0; } }
.screen-stack { position: absolute; right: 20px; bottom: 26px; width: 47%; height: 72%; }.screen-stack i { position: absolute; width: 57%; height: 69%; background: #f6f6fa; border: 5px solid white; border-radius: 12px; box-shadow: 0 25px 45px rgba(6, 8, 28, 0.23); }
.screen-stack i::before, .screen-stack i::after { position: absolute; content: ""; right: 11px; left: 11px; border-radius: 4px; }.screen-stack i::before { top: 18px; height: 35%; background: linear-gradient(135deg, #c8ff55, #8ccf14); }.screen-stack i::after { top: 51%; height: 7%; background: #d8dbe5; box-shadow: 0 16px 0 #e5e6eb, 0 32px 0 #e5e6eb; }
.screen-stack i:nth-child(1) { top: 24px; left: 0; transform: rotate(-10deg); }.screen-stack i:nth-child(2) { top: 6px; left: 24%; transform: rotate(1deg); }.screen-stack i:nth-child(3) { top: 32px; left: 48%; transform: rotate(12deg); }
.spark { position: absolute; color: var(--lime); font-size: 28px; }.spark-one { top: 38px; right: 33px; }.spark-two { bottom: 30px; left: 34px; font-size: 14px; }
.canvas-visual { background-color: #e8e7e4; background-image: linear-gradient(rgba(11, 16, 32, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 16, 32, 0.055) 1px, transparent 1px); background-size: 22px 22px; }
.canvas-toolbar { position: absolute; z-index: 4; top: 18px; left: 50%; padding: 9px; display: flex; gap: 7px; background: var(--ink); border-radius: 10px; box-shadow: 0 8px 20px rgba(11, 16, 32, 0.22); transform: translateX(-50%); }.canvas-toolbar i { width: 13px; height: 13px; border: 1px solid rgba(255,255,255,.6); border-radius: 3px; }.canvas-toolbar i:nth-child(3) { background: var(--lime); border-color: var(--lime); }
.canvas-card { position: absolute; width: 130px; height: 155px; padding: 16px; background: white; border: 1px solid #d6d8dc; border-radius: 10px; box-shadow: 0 13px 28px rgba(11, 16, 32, 0.11); }.canvas-card span { height: 8px; margin-bottom: 8px; display: block; background: #dfe2e8; border-radius: 3px; }.canvas-card span:first-child { width: 55%; background: var(--ink); }.canvas-card b { height: 65px; margin-top: 16px; display: block; background: var(--violet-soft); border-radius: 7px; }.canvas-a { top: 72px; left: 58px; }.canvas-b { right: 58px; bottom: 35px; transform: rotate(2deg); }.canvas-b::after { position: absolute; content: ""; right: 16px; bottom: 16px; left: 16px; height: 67px; background: linear-gradient(135deg, var(--lime), #89d72f); border-radius: 7px; }
.canvas-visual svg { position: absolute; z-index: 3; inset: 0; width: 100%; height: 100%; fill: none; stroke: var(--violet); stroke-width: 2; stroke-dasharray: 5 5; }.cursor { position: absolute; z-index: 5; width: 0; height: 0; border-top: 14px solid var(--violet); border-right: 7px solid transparent; border-left: 7px solid transparent; transform: rotate(-32deg); }.cursor-a { top: 138px; left: 48%; }.cursor-label { position: absolute; z-index: 5; top: 153px; left: 49%; padding: 3px 7px; color: white; background: var(--violet); border-radius: 4px; font-size: 8px; }
.bridge-visual { display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, #13182a, #242b47); }
.bridge-node { position: relative; z-index: 2; display: grid; place-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 10px; }.bridge-node > span { width: 54px; height: 54px; display: grid; place-items: center; color: white; background: #303954; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; font-family: var(--display); font-weight: 800; }.bridge-main > span { width: 76px; height: 76px; color: var(--ink); background: var(--lime); border-radius: 22px; font-size: 25px; box-shadow: 0 0 45px rgba(201,255,82,.22); }
.bridge-line { width: 55px; height: 2px; display: flex; justify-content: space-around; background: rgba(255,255,255,.14); }.bridge-line i { width: 4px; height: 4px; margin-top: -1px; background: var(--lime); border-radius: 50%; animation: travel 2s infinite; }.bridge-line i:nth-child(2) { animation-delay: .5s; }.bridge-line i:nth-child(3) { animation-delay: 1s; }
@keyframes travel { 50% { opacity: .2; transform: translateX(6px); } }
.eval-visual { padding: 64px 12%; display: flex; flex-direction: column; justify-content: center; gap: 13px; background: linear-gradient(135deg, #1b2134, #101524); }
.eval-card { padding: 17px 19px; color: white; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.11); border-radius: 12px; }.eval-card > div:first-child { display: flex; justify-content: space-between; font-size: 11px; }.eval-card strong { color: var(--lime); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }.score-track { height: 4px; margin-top: 13px; overflow: hidden; background: rgba(255,255,255,.1); border-radius: 5px; }.score-track i { height: 100%; display: block; background: linear-gradient(90deg, var(--violet), var(--lime)); border-radius: inherit; }.muted-eval { opacity: .65; }.muted-eval strong { color: var(--salmon); }

.playground-section { background: #e8eee2; border-bottom: 1px solid #d7ded0; }
.playground-section .section-kicker { border-color: rgba(23, 75, 67, .18); }
.playground-section .eyebrow { color: #b54a38; }
.playground-heading { margin-bottom: 56px; display: grid; grid-template-columns: 1fr .55fr; align-items: end; gap: 80px; }
.playground-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(39px, 4.4vw, 62px); font-weight: 650; line-height: 1.1; letter-spacing: -.045em; }
.playground-showcase { overflow: hidden; display: grid; grid-template-columns: 1.08fr .92fr; background: #fffdf8; border: 1px solid rgba(23, 75, 67, .14); border-radius: 28px; box-shadow: 0 28px 70px rgba(31, 58, 46, .13); }
.playground-preview { min-width: 0; min-height: 620px; padding: 18px; display: flex; flex-direction: column; overflow: hidden; background: #173f39; }
.browser-chrome { height: 46px; padding: 0 14px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; color: rgba(255,255,255,.66); background: #0f2e2a; border-radius: 14px 14px 0 0; }
.browser-chrome > span { display: flex; gap: 6px; }.browser-chrome i { width: 7px; height: 7px; display: block; background: rgba(255,255,255,.25); border-radius: 50%; }.browser-chrome i:first-child { background: #d76a54; }.browser-chrome i:nth-child(2) { background: #d8ab53; }.browser-chrome i:nth-child(3) { background: #7ca876; }
.browser-chrome small { overflow: hidden; font-size: 9px; letter-spacing: .03em; text-overflow: ellipsis; white-space: nowrap; }.browser-chrome b { justify-self: end; font-size: 14px; font-weight: 400; transition: transform 180ms ease; }
.playground-preview img { width: 100%; min-height: 0; flex: 1; object-fit: cover; object-position: 30% center; border-radius: 0 0 14px 14px; transition: transform 350ms cubic-bezier(.2,.75,.3,1), filter 350ms ease; }
.playground-preview:hover img { filter: saturate(1.06); transform: scale(1.012); }.playground-preview:hover .browser-chrome b { transform: translate(2px,-2px); }
.playground-content { padding: 56px 50px; display: flex; flex-direction: column; justify-content: center; }
.project-status { width: fit-content; margin-bottom: 27px; padding: 7px 11px 7px 9px; display: flex; align-items: center; gap: 9px; color: #405737; background: #eef4df; border: 1px solid #dae6c6; border-radius: 999px; font-size: 10px; font-weight: 700; letter-spacing: .02em; }
.project-status .status-dot { width: 8px; height: 8px; }
.project-label { margin: 0 0 12px; color: #a64534; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.playground-content h3 { margin: 0 0 20px; font-family: var(--display); font-size: clamp(30px, 3vw, 43px); line-height: 1.12; letter-spacing: -.045em; }
.project-description { margin: 0; color: var(--ink-soft); font-size: 14px; line-height: 1.75; }
.project-capabilities { margin-top: 27px; border-top: 1px solid #dde3d9; }
.project-capabilities > div { padding: 14px 0; display: grid; grid-template-columns: 122px 1fr; gap: 17px; border-bottom: 1px solid #dde3d9; }
.project-capabilities strong { color: #174b43; font-size: 11px; line-height: 1.5; }.project-capabilities span { color: var(--muted); font-size: 11px; line-height: 1.55; }
.project-tags { margin-top: 25px; }
.project-tags li { color: #31544d; background: #eef3e9; border-color: #dce5d8; }
.button-project { width: fit-content; margin-top: 30px; color: white; background: #174b43; box-shadow: 0 12px 28px rgba(23,75,67,.2); }.button-project:hover { background: #b54a38; }

.expertise-section { background: var(--ink); color: white; }
.expertise-section .section-kicker { color: rgba(255,255,255,.5); border-color: rgba(255,255,255,.14); }.expertise-section .section-number { color: white; }.expertise-section .eyebrow { color: var(--lime); }.expertise-section .section-summary { color: rgba(255,255,255,.55); }
.expertise-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; overflow: hidden; }
.expertise-card { min-height: 430px; padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.15); transition: background 200ms ease; }.expertise-card:last-child { border-right: 0; }.expertise-card:hover { background: rgba(255,255,255,.055); }
.expertise-number { color: var(--lime); font-family: var(--display); font-size: 11px; }.expertise-card h3 { margin: 72px 0 16px; font-family: var(--display); font-size: 22px; letter-spacing: -.03em; }.expertise-card p { min-height: 84px; margin: 0 0 34px; color: rgba(255,255,255,.53); font-size: 13px; line-height: 1.65; }
.expertise-card ul { padding: 0; margin: 0; list-style: none; }.expertise-card li { position: relative; padding: 10px 0 10px 17px; color: rgba(255,255,255,.78); border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }.expertise-card li::before { position: absolute; content: ""; top: 17px; left: 1px; width: 5px; height: 5px; background: var(--lime); border-radius: 50%; }

.experience-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 105px; }
.experience-intro { position: sticky; top: 125px; height: fit-content; }.experience-intro h2 { font-size: clamp(38px, 4vw, 55px); }.experience-intro > p:not(.eyebrow) { margin: 28px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.text-link { display: inline-flex; gap: 7px; padding-bottom: 3px; color: var(--blue); border-bottom: 1px solid currentColor; font-size: 12px; font-weight: 700; }.text-link span { transition: transform 180ms ease; }.text-link:hover span { transform: translate(2px, -2px); }
.timeline { position: relative; }.timeline::before { position: absolute; content: ""; top: 10px; bottom: 20px; left: 7px; width: 1px; background: var(--line); }
.timeline-item { position: relative; padding: 0 0 62px 43px; }.timeline-item:last-child { padding-bottom: 0; }.timeline-marker { position: absolute; z-index: 2; top: 6px; left: 0; width: 15px; height: 15px; display: grid; place-items: center; background: var(--paper); border: 1px solid #b9bec6; border-radius: 50%; }.timeline-marker span { width: 5px; height: 5px; background: #adb2bd; border-radius: inherit; }.timeline-item.current .timeline-marker { border-color: #6e9e08; }.timeline-item.current .timeline-marker span { background: var(--lime-dark); box-shadow: 0 0 0 4px rgba(169,227,42,.17); }
.timeline-head { margin-bottom: 16px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }.timeline-date { margin: 0 0 4px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.timeline-head h3 { margin: 0; font-family: var(--display); font-size: 22px; letter-spacing: -.03em; }.role-pill { flex: none; padding: 6px 10px; color: var(--ink-soft); background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 9px; font-weight: 700; }
.timeline-item > p { margin: 0 0 20px; color: var(--muted); font-size: 14px; line-height: 1.75; }.timeline-tags { margin-top: 0; }

.education-section { background: #e6ecff; }
.education-grid { display: grid; grid-template-columns: .7fr 1.3fr; align-items: start; gap: 110px; }.compact-kicker { margin-bottom: 48px; }.education-grid h2 { font-size: clamp(38px, 4vw, 55px); }
.education-list article { padding: 25px 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(11,16,32,.15); }.education-list article:last-child { border-bottom: 1px solid rgba(11,16,32,.15); }.education-list h3 { margin: 0 0 4px; font-family: var(--display); font-size: 17px; letter-spacing: -.02em; }.education-list p { margin: 0; color: var(--muted); font-size: 13px; }.education-list article > span { flex: none; color: var(--muted); font-size: 10px; font-weight: 700; }

.contact-section { position: relative; overflow: hidden; padding: 150px 0; color: white; background: #6450de; text-align: center; isolation: isolate; }.contact-section::before, .contact-section::after { position: absolute; z-index: -2; content: ""; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }.contact-section::before { width: 760px; height: 760px; top: -350px; left: -230px; }.contact-section::after { width: 560px; height: 560px; right: -150px; bottom: -280px; }.contact-glow { position: absolute; z-index: -3; width: 500px; height: 500px; top: 50%; left: 50%; background: #8069ff; border-radius: 50%; filter: blur(100px); transform: translate(-50%,-50%); }
.contact-inner .eyebrow { color: var(--lime); }.contact-inner h2 { margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 88px); line-height: 1.02; letter-spacing: -.055em; }.contact-inner h2 em::after { position: absolute; z-index: -1; content: ""; right: -4px; bottom: 6px; left: 0; height: 13px; background: rgba(201,255,82,.75); transform: rotate(-1deg); }.contact-inner > p:not(.eyebrow) { max-width: 610px; margin: 30px auto 0; color: rgba(255,255,255,.72); font-size: 16px; }
.contact-actions { margin-top: 38px; display: flex; justify-content: center; gap: 11px; }.button-light { color: var(--ink); background: var(--lime); }.button-light:hover { background: white; }.button-ghost { color: white; border-color: rgba(255,255,255,.38); }.button-ghost:hover { background: rgba(255,255,255,.1); border-color: white; }.contact-email { margin-top: 50px; display: inline-block; color: rgba(255,255,255,.62); border-bottom: 1px solid rgba(255,255,255,.28); font-size: 13px; }

.site-footer { padding: 35px 0; color: white; background: var(--ink); }.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }.footer-inner > div:first-child { display: flex; flex-direction: column; line-height: 1.4; }.footer-inner strong { font-family: var(--display); font-size: 13px; }.footer-inner span, .footer-inner p { color: rgba(255,255,255,.45); font-size: 10px; }.footer-inner p { margin: 0; text-align: center; }.footer-links { display: flex; justify-content: flex-end; gap: 18px; }.footer-links a { color: rgba(255,255,255,.7); font-size: 10px; font-weight: 600; }.footer-links a:hover { color: var(--lime); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms cubic-bezier(.2,.75,.3,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr .83fr; gap: 38px; }.hero h1 { font-size: clamp(52px, 6vw, 72px); }.note-one { left: -5px; }.note-two { right: -5px; }
  .signal-item { padding-inline: 20px; grid-template-columns: 1fr; gap: 0; }.signal-item strong { font-size: 29px; }
  .playground-showcase { grid-template-columns: 1fr 1fr; }.playground-preview { min-height: 570px; }.playground-content { padding: 42px 38px; }.project-capabilities > div { grid-template-columns: 1fr; gap: 3px; }
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }.expertise-card { min-height: 370px; border-bottom: 1px solid rgba(255,255,255,.15); }.expertise-card:nth-child(2) { border-right: 0; }.expertise-card:nth-child(3), .expertise-card:nth-child(4) { border-bottom: 0; }.expertise-card h3 { margin-top: 45px; }.expertise-card p { min-height: 62px; }
  .experience-layout, .education-grid { gap: 62px; }
}

@media (max-width: 820px) {
  :root { --shell: min(calc(100% - 32px), 680px); }
  .site-header { height: 72px; }.brand-copy { display: none; }.nav-toggle { z-index: 102; display: block; }.nav-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(3.5px) rotate(45deg); }.nav-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 0; padding: 110px 24px 40px; display: flex; flex-direction: column; justify-content: flex-start; gap: 12px; background: rgba(247,246,242,.98); visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms; }.nav-links.is-open { visibility: visible; opacity: 1; transform: translateY(0); }.nav-links a { width: min(100%, 500px); padding: 12px 0; font-family: var(--display); font-size: 26px; }.nav-links .nav-cta { width: min(100%, 500px); margin-top: 12px; padding: 15px 20px; text-align: center; font-size: 16px; }
  .hero { min-height: auto; padding-top: 125px; padding-bottom: 80px; grid-template-columns: 1fr; gap: 70px; }.hero h1 { font-size: clamp(49px, 11vw, 72px); }.hero-visual { min-height: 570px; overflow: clip; }.portrait-card { width: min(390px, 78vw); }.hero-visual::before { width: min(500px, 90vw); height: min(500px, 90vw); }.orbit-one { width: min(560px, 100vw); }.orbit-two { width: min(480px, 88vw); }
  .signal-grid { padding-block: 24px; grid-template-columns: repeat(2, 1fr); }.signal-item { min-height: 105px; padding: 18px 26px; border-bottom: 1px solid rgba(255,255,255,.14); }.signal-item:first-child { padding-left: 26px; }.signal-item:nth-child(2) { border-right: 0; }.signal-item:nth-child(3), .signal-item:nth-child(4) { border-bottom: 0; }.signal-item:last-child { padding-right: 26px; }
  .section { padding-block: 96px; }.section-kicker { margin-bottom: 54px; }.intro-grid, .section-heading-row, .playground-heading, .experience-layout, .education-grid { grid-template-columns: 1fr; gap: 38px; }.section-heading-row, .playground-heading { align-items: start; }.section-summary { max-width: 560px; }
  .case-grid { grid-template-columns: 1fr; }.case-featured, .case-wide { grid-column: auto; display: flex; }.case-featured .case-visual { min-height: 370px; }.case-wide .case-visual { min-height: 330px; order: 0; }.case-featured .case-content, .case-wide .case-content { padding: 36px; }
  .playground-showcase { grid-template-columns: 1fr; }.playground-preview { min-height: 500px; }.playground-content { padding: 44px 40px; }
  .experience-intro { position: static; }.timeline { margin-top: 20px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }.footer-inner p { order: 3; }.footer-links { justify-content: center; }
}

@media (max-width: 540px) {
  :root { --shell: calc(100vw - 28px); }.hero { padding-top: 108px; }.availability { margin-bottom: 28px; font-size: 10px; }.hero h1 { font-size: clamp(43px, 13vw, 60px); }.hero h1 em::after { bottom: 2px; height: 10px; }.hero-lede { font-size: 16px; }.hero-actions, .contact-actions { flex-direction: column; }.button { width: 100%; }.hero-links { gap: 17px; }.hero-links a { font-size: 10px; }
  .hero-visual { min-height: 500px; }.portrait-card { width: 79vw; }.floating-note { padding: 10px 11px; }.note-one { top: 50px; left: 0; }.note-two { right: 0; bottom: 68px; }.floating-note strong { font-size: 10px; }.floating-note small { font-size: 7px; }.note-icon { width: 25px; height: 25px; }
  .signal-grid { grid-template-columns: 1fr; }.signal-item, .signal-item:nth-child(3) { min-height: auto; padding: 22px 4px; grid-template-columns: 75px 1fr; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }.signal-item:first-child, .signal-item:last-child { padding-inline: 4px; }.signal-item:last-child { border-bottom: 0; }
  .section { padding-block: 78px; }.section-kicker { margin-bottom: 44px; }.intro-grid h2, .section-heading-row h2, .playground-heading h2, .experience-intro h2, .education-grid h2 { font-size: 38px; }.intro-copy p { font-size: 15px; }
  .case-visual, .case-featured .case-visual, .case-wide .case-visual { min-height: 285px; }.prompt-window { top: 50px; left: 23px; width: 62%; }.screen-stack { right: 3px; bottom: 0; height: 70%; }.case-content, .case-featured .case-content, .case-wide .case-content { padding: 27px 24px 30px; }.case-content h3, .case-card:not(.case-featured):not(.case-wide) .case-content h3 { font-size: 26px; }.canvas-card { width: 105px; height: 130px; }.canvas-a { top: 74px; left: 24px; }.canvas-b { right: 23px; bottom: 28px; }.canvas-b::after { height: 48px; }.bridge-node > span { width: 45px; height: 45px; }.bridge-main > span { width: 63px; height: 63px; }.bridge-line { width: 35px; }
  .playground-heading { margin-bottom: 42px; }.playground-showcase { border-radius: 20px; }.playground-preview { min-height: 340px; padding: 10px; }.browser-chrome { height: 39px; padding-inline: 10px; border-radius: 11px 11px 0 0; }.browser-chrome small { max-width: 190px; }.playground-preview img { border-radius: 0 0 11px 11px; }.playground-content { padding: 32px 24px 34px; }.playground-content h3 { font-size: 30px; }.project-capabilities > div { grid-template-columns: 1fr; gap: 3px; }.button-project { width: 100%; }
  .expertise-grid { grid-template-columns: 1fr; }.expertise-card { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15) !important; }.expertise-card:last-child { border-bottom: 0 !important; }.expertise-card p { min-height: auto; }
  .timeline-head { flex-direction: column; }.role-pill { order: -1; }.education-list article { flex-direction: column; gap: 8px; }.contact-section { padding-block: 100px; }.contact-inner h2 { font-size: 49px; }.contact-email { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .hero-actions, .contact-section, .site-footer, .floating-note { display: none; }
  body { background: white; color: black; }.hero { min-height: auto; padding-top: 30px; }.section { padding-block: 40px; }.reveal { opacity: 1; transform: none; }.case-card, .playground-showcase, .expertise-section { break-inside: avoid; box-shadow: none; }
}
