:root {
  --ink: #070b1d;
  --ink-soft: #101630;
  --paper: #f7f7fb;
  --muted: #a9b2c7;
  --muted-dark: #6e7896;
  --line: rgba(226, 231, 255, .16);
  --acid: #a3ff8f;
  --violet: #7c5cff;
  --cyan: #25d6ff;
  --pink: #ff6fb5;
  --orange: #ffaf65;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shell: min(1240px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(75rem 48rem at 94% -12%, rgba(73, 66, 185, .22), transparent 65%),
    radial-gradient(62rem 45rem at -16% 68%, rgba(147, 53, 142, .14), transparent 68%),
    var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: var(--acid); }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding-block: clamp(90px, 11vw, 165px); }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 0;
  top: calc(var(--cursor-y, 20vh) - 22rem);
  left: calc(var(--cursor-x, 50vw) - 22rem);
  width: 44rem;
  height: 44rem;
  pointer-events: none;
  background: radial-gradient(circle, rgba(94, 83, 255, .15), rgba(37, 214, 255, .035) 35%, transparent 68%);
  transition: left .5s cubic-bezier(.2, .7, .2, 1), top .5s cubic-bezier(.2, .7, .2, 1);
}
.ambient { position: fixed; z-index: 0; pointer-events: none; border-radius: 50%; filter: blur(45px); opacity: .28; }
.ambient-violet { top: 13%; right: -14%; width: max(30vw, 280px); height: max(30vw, 280px); background: #7148ff; }
.ambient-cyan { top: 54%; left: -16%; width: max(25vw, 230px); height: max(25vw, 230px); background: #007fb9; opacity: .15; }
main, .footer { position: relative; z-index: 1; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 560; letter-spacing: -.06em; }
h1 em, h2 em {
  color: var(--acid);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.08em;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 em, h2 em {
    color: transparent;
    background: linear-gradient(100deg, var(--acid) 0%, var(--cyan) 42%, #ad8bff 70%, var(--pink) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }

.site-header { position: sticky; top: 0; z-index: 10; }
.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 19px;
  border: 1px solid rgba(226, 231, 255, .15);
  border-radius: 15px;
  background: rgba(7, 11, 29, .68);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .13);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 650; letter-spacing: -.025em; }
.brand-mark { color: var(--acid); font-size: 19px; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 29px; font-size: 13px; }
.nav-links > a:not(.nav-contact) { color: rgba(243, 240, 252, .74); transition: color .2s ease; }
.nav-links > a:not(.nav-contact):hover, .nav-links > a.is-active { color: var(--acid); }
.nav-resume { display: inline-flex; align-items: center; gap: 8px; margin-left: 2px; padding: 10px 13px; border: 1px solid rgba(163,255,143,.35); border-radius: 999px; color: var(--acid); background: rgba(163,255,143,.07); font-size: 12px; font-weight: 650; box-shadow: inset 0 0 0 1px rgba(255,255,255,.03); transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.nav-resume span { font-size: 14px; line-height: .8; transition: transform .2s ease; }
.nav-resume:hover { color: var(--ink); border-color: var(--acid); background: linear-gradient(110deg, var(--acid), var(--cyan)); transform: translateY(-2px); }
.nav-resume:hover span { transform: translateY(2px); }
.nav-contact { display: inline-flex; align-items: center; gap: 8px; margin-left: 4px; padding: 11px 15px; border-radius: 999px; color: var(--ink); background: linear-gradient(110deg, var(--acid), #c6ffb8); box-shadow: 0 8px 20px rgba(163, 255, 143, .18); transition: transform .2s ease, background .2s ease; }
.nav-contact:hover { background: linear-gradient(110deg, #c9ffbc, var(--cyan)); transform: translateY(-2px); }
.menu-toggle { display: none; }

.hero { display: grid; grid-template-columns: 1.08fr .92fr; grid-template-rows: 1fr auto auto; gap: 58px 50px; align-items: center; min-height: calc(100vh - 98px); padding-top: clamp(62px, 8vw, 110px); }
.hero-copy { position: relative; z-index: 1; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--muted); font: 10px/1.5 var(--mono); font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(163, 255, 143, .11), 0 0 14px rgba(163,255,143,.55); }
h1 { max-width: 770px; margin: 23px 0 28px; font-size: clamp(54px, 7vw, 108px); line-height: .9; }
.hero-intro { max-width: 514px; margin-bottom: 36px; color: #bdc5d5; font-size: 16px; line-height: 1.63; }
.hero-intro strong { color: var(--paper); font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 26px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 19px; padding: 15px 18px; border: 0; font-size: 13px; font-weight: 700; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-3px); }
.button span { font-size: 17px; line-height: .8; }
.button-primary { color: var(--ink); background: linear-gradient(110deg, var(--acid), var(--cyan)); box-shadow: 0 12px 27px rgba(37,214,255,.15); }
.button-primary:hover { background: linear-gradient(110deg, #d1ffc8, #bdf9ff); box-shadow: 0 17px 32px rgba(37,214,255,.23); }
.text-link { display: inline-flex; align-items: center; gap: 7px; width: fit-content; padding-bottom: 3px; border-bottom: 1px solid rgba(243,240,252,.52); font-size: 13px; font-weight: 650; transition: color .2s ease, border-color .2s ease; }
.text-link span { transition: transform .2s ease; }.text-link:hover { color: var(--acid); border-color: var(--acid); }.text-link:hover span { transform: translate(2px, -2px); }

.hero-art { position: relative; min-height: 570px; overflow: hidden; isolation: isolate; border: 1px solid rgba(226, 231, 255, .17); border-radius: 22px; background: radial-gradient(circle at 75% 25%, rgba(37, 214, 255, .42), transparent 24%), radial-gradient(circle at 20% 76%, rgba(124, 92, 255, .56), transparent 40%), linear-gradient(145deg, #1a2259 0%, #111b3c 45%, #281a48 100%); box-shadow: 0 28px 80px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255,255,255,.12); }
.hero-art::after { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(125deg, transparent 25%, rgba(255,255,255,.11) 47%, transparent 62%); transform: translateX(-135%); transition: transform .9s cubic-bezier(.2,.7,.2,1); }.hero-art:hover::after { transform: translateX(135%); }
.art-grid { position: absolute; inset: 0; opacity: .32; background-image: linear-gradient(rgba(243,240,252,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(243,240,252,.14) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 92%); }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(231, 235, 255, .39); border-radius: 50%; transform: translate(-50%, -50%); }.orbit-large { width: min(39vw, 510px); height: min(39vw, 510px); }.orbit-small { width: min(25vw, 330px); height: min(25vw, 330px); border-style: dashed; animation: turn 22s linear infinite; }
.orb { position: absolute; z-index: 2; border-radius: 50%; }.orb-one { top: 22%; left: 30%; width: 17px; height: 17px; background: var(--acid); box-shadow: 0 0 0 12px rgba(163,255,143,.11), 0 0 35px rgba(163,255,143,.42); }.orb-two { right: 16%; bottom: 17%; width: 11px; height: 11px; background: var(--pink); box-shadow: 0 0 0 10px rgba(255,111,181,.09), 0 0 24px rgba(255,111,181,.38); }
.hero-stamp { position: absolute; z-index: 2; top: 41px; right: -54px; display: flex; align-items: center; gap: 12px; width: 275px; color: rgba(242,245,255,.79); font: 9px/1 var(--mono); letter-spacing: .1em; animation: drift 8s ease-in-out infinite; }.hero-stamp i { color: var(--cyan); font-size: 11px; font-style: normal; }
.identity-card { position: absolute; z-index: 3; top: 13%; left: 10%; width: min(50%, 270px); min-height: 235px; padding: 18px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid rgba(240, 244, 255, .40); border-radius: 16px; color: var(--paper); background: linear-gradient(145deg, rgba(25, 32, 77, .84), rgba(81, 44, 131, .59)); box-shadow: 0 20px 38px rgba(5, 7, 24, .23), inset 0 1px 0 rgba(255,255,255,.18); backdrop-filter: blur(13px); transform: rotate(-7deg); transition: transform .5s cubic-bezier(.2,.8,.2,1); }.identity-card::before { content: ""; position: absolute; top: -80px; right: -65px; width: 160px; height: 160px; border-radius: 50%; background: rgba(37,214,255,.39); filter: blur(4px); }.hero-art:hover .identity-card { transform: rotate(-2deg) translate(7px,-5px); }.identity-label, .identity-skill { position: relative; z-index: 1; font: 9px/1.25 var(--mono); letter-spacing: .11em; }.identity-skill { align-self: flex-end; color: var(--acid); text-align: right; }.identity-initials { position: relative; z-index: 1; font-size: clamp(75px, 9vw, 117px); font-weight: 700; line-height: .75; letter-spacing: -.12em; }
.profile-photo-wrap { position: absolute; z-index: 4; top: 10%; right: 8%; width: min(43%, 255px); aspect-ratio: .79; padding: 8px; overflow: hidden; border: 1px solid rgba(240,244,255,.42); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.035)); box-shadow: 0 24px 55px rgba(3,6,23,.34), inset 0 1px 0 rgba(255,255,255,.2); backdrop-filter: blur(12px); transform: rotate(4deg); transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; }
.profile-photo-wrap::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(163,255,143,.18); border-radius: 12px; pointer-events: none; }
.hero-art:hover .profile-photo-wrap { transform: rotate(1deg) translate(-5px,-6px); box-shadow: 0 30px 68px rgba(3,6,23,.42), 0 0 35px rgba(37,214,255,.10); }
.profile-photo { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; border-radius: 12px; filter: saturate(.92) contrast(1.03); }
.photo-label { position: absolute; z-index: 2; left: 17px; bottom: 16px; padding: 5px 7px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--acid); background: rgba(7,12,39,.62); font: 7px var(--mono); letter-spacing: .09em; backdrop-filter: blur(8px); }
.photo-corner { position: absolute; z-index: 3; width: 15px; height: 15px; border-color: var(--acid); border-style: solid; pointer-events: none; }
.photo-corner-one { top: 3px; left: 3px; border-width: 2px 0 0 2px; border-radius: 5px 0 0 0; }
.photo-corner-two { right: 3px; bottom: 3px; border-width: 0 2px 2px 0; border-radius: 0 0 5px 0; }
.recruiter-brief { position: absolute; z-index: 3; right: 8%; bottom: 8%; width: min(47%, 250px); padding: 17px; border: 1px solid rgba(240,244,255,.28); border-radius: 13px; color: #e9efff; background: rgba(7,12,39,.55); box-shadow: 0 17px 35px rgba(0,0,0,.17); backdrop-filter: blur(13px); transform: rotate(5deg); transition: transform .4s ease; }.hero-art:hover .recruiter-brief { transform: rotate(1deg) translate(-4px,-5px); }.recruiter-brief p { margin: 0 0 14px; color: rgba(222,232,255,.57); font: 8px var(--mono); letter-spacing: .1em; }.recruiter-brief strong { display: block; margin-top: 11px; font-size: 11px; letter-spacing: -.02em; }.recruiter-brief strong:first-of-type { margin-top: 0; }.recruiter-brief > span { display: block; margin-top: 4px; color: rgba(237,242,255,.66); font-size: 9px; line-height: 1.3; }.brief-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 15px; }.brief-tags b { padding: 4px 6px; border: 1px solid rgba(227,237,255,.24); border-radius: 999px; color: var(--acid); font: 8px var(--mono); font-weight: 400; }
.hero-footer { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; line-height: 1.45; }.hero-footer p { margin: 0; }.hero-index { text-align: right; font: 10px var(--mono); letter-spacing: .1em; }.scroll-link { justify-self: center; display: inline-flex; align-items: center; gap: 10px; color: #c5ccdb; font-size: 11px; }.scroll-link span { position: relative; display: block; width: 24px; height: 37px; border: 1px solid rgba(243,240,252,.47); border-radius: 20px; }.scroll-link span::after { content: ""; position: absolute; top: 7px; left: 50%; width: 2px; height: 7px; border-radius: 2px; background: var(--acid); transform: translateX(-50%); animation: scrollDot 1.8s ease-in-out infinite; }
.proof-row { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 12px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }.proof-row p { min-height: 92px; margin: 0; padding: 20px 20px 18px 0; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }.proof-row p + p { padding-left: 20px; }.proof-row p:last-child { border-right: 0; }.proof-row span { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }.proof-row strong { font-size: 13px; font-weight: 560; letter-spacing: -.02em; }

.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }.section-heading h2 { max-width: 760px; margin: 0 0 15px; font-size: clamp(39px, 5vw, 70px); line-height: .96; }.section-heading div > p { max-width: 430px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.58; }

.fit { padding-top: clamp(82px, 10vw, 150px); }.fit-board { display: grid; grid-template-columns: .82fr 1.58fr; min-height: 342px; overflow: hidden; margin-top: 18px; border: 1px solid rgba(226,231,255,.16); border-radius: 18px; background: linear-gradient(135deg, rgba(21,29,73,.92), rgba(10,15,39,.76)); box-shadow: 0 26px 65px rgba(0,0,0,.17); }.role-selector { display: flex; flex-direction: column; align-items: stretch; justify-content: center; padding: 25px; border-right: 1px solid var(--line); background: linear-gradient(170deg, rgba(42,38,100,.62), rgba(15,21,54,.2)); }.role-chip { position: relative; padding: 15px 14px; color: rgba(240,244,255,.62); border: 1px solid transparent; border-radius: 10px; background: transparent; text-align: left; font-size: 14px; font-weight: 620; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }.role-chip:hover { color: var(--paper); transform: translateX(3px); }.role-chip.is-selected { color: var(--ink); border-color: var(--acid); background: linear-gradient(110deg, var(--acid), #b8fff8); box-shadow: 0 7px 18px rgba(163,255,143,.15); }.fit-result { position: relative; min-height: 340px; padding: clamp(31px, 4.2vw, 58px); overflow: hidden; }.fit-result::before { content: ""; position: absolute; top: -120px; right: -70px; width: 310px; height: 310px; border-radius: 50%; background: radial-gradient(circle, rgba(37,214,255,.28), rgba(124,92,255,.03) 63%, transparent 65%); }.fit-kicker { position: relative; margin: 0 0 10px; color: var(--cyan); font: 10px var(--mono); letter-spacing: .1em; text-transform: uppercase; }.fit-result h3 { position: relative; max-width: 540px; margin: 0 0 13px; font-size: clamp(30px, 4vw, 48px); line-height: .98; }.fit-copy { position: relative; max-width: 520px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.62; }.fit-evidence { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 29px; }.fit-evidence > div { padding: 11px 12px; border: 1px solid rgba(226,231,255,.16); border-radius: 8px; background: rgba(9,14,35,.34); }.fit-evidence span { display: block; color: var(--muted); font: 8px var(--mono); letter-spacing: .08em; text-transform: uppercase; }.fit-evidence strong { display: block; margin-top: 5px; font-size: 12px; font-weight: 600; line-height: 1.35; }.fit-projects { position: relative; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }.fit-projects b { padding: 5px 8px; border-radius: 999px; color: var(--paper); background: rgba(37,214,255,.12); font-size: 10px; font-weight: 520; }

.projects { padding-top: clamp(82px, 10vw, 150px); }.project-controls { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0 20px; }.project-controls > p { margin: 0; color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }.project-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }.filter-chip { padding: 8px 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: rgba(12,17,43,.34); font-size: 11px; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }.filter-chip:hover { color: var(--paper); border-color: rgba(226,231,255,.42); transform: translateY(-2px); }.filter-chip.is-selected { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.project-detail { position: relative; display: grid; grid-template-columns: .65fr 1.6fr .9fr; gap: 28px; min-height: 210px; margin-bottom: 18px; padding: clamp(23px, 3vw, 40px); overflow: hidden; border: 1px solid rgba(226,231,255,.18); border-radius: 17px; background: linear-gradient(130deg, rgba(31,37,87,.87), rgba(12,18,51,.83)); box-shadow: 0 20px 50px rgba(0,0,0,.15); }.project-detail::after { content: ""; position: absolute; z-index: 0; top: -130px; right: 24%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,111,181,.22), transparent 66%); }.detail-index, .detail-copy, .detail-stack { position: relative; z-index: 1; }.detail-index { align-self: start; color: var(--cyan); font: 10px var(--mono); letter-spacing: .1em; }.detail-copy h3 { margin: 7px 0 10px; font-size: clamp(26px, 3.3vw, 43px); line-height: .97; }.detail-copy p { max-width: 600px; margin: 0; color: #c2cada; font-size: 14px; line-height: 1.6; }.detail-stack { align-self: end; }.detail-stack p { margin: 0 0 10px; color: var(--muted); font: 9px var(--mono); letter-spacing: .09em; text-transform: uppercase; }.detail-stack div { display: flex; flex-wrap: wrap; gap: 6px; }.detail-stack b { padding: 6px 8px; border: 1px solid rgba(226,231,255,.18); border-radius: 999px; font-size: 10px; font-weight: 520; }
.project-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }.project-card { position: relative; min-height: 230px; padding: 18px; overflow: hidden; color: var(--paper); border: 1px solid rgba(226,231,255,.14); border-radius: 15px; background: rgba(18,24,57,.69); text-align: left; cursor: pointer; transition: transform .28s cubic-bezier(.2,.7,.2,1), border-color .28s ease, box-shadow .28s ease; }.project-card::before { content: ""; position: absolute; top: -40px; right: -46px; width: 160px; height: 160px; border-radius: 50%; background: var(--card-glow, rgba(37,214,255,.25)); filter: blur(1px); opacity: .74; transition: transform .4s ease; }.project-card::after { content: ""; position: absolute; top: 12px; right: 12px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.27); border-radius: 14px; background: linear-gradient(135deg, rgba(255,255,255,.15), transparent); transform: rotate(19deg); }.project-card:hover, .project-card.is-selected { border-color: rgba(177,241,255,.64); box-shadow: 0 18px 33px rgba(0,0,0,.25); transform: translateY(-6px); }.project-card:hover::before { transform: scale(1.25) translate(-8px, 9px); }.project-card.is-selected { outline: 1px solid var(--acid); outline-offset: 2px; }.project-card.tone-ai { --card-glow: rgba(141,103,255,.57); background: linear-gradient(145deg, rgba(66,48,142,.77), rgba(22,29,80,.78)); }.project-card.tone-data { --card-glow: rgba(37,214,255,.51); background: linear-gradient(145deg, rgba(16,92,127,.72), rgba(17,28,67,.8)); }.project-card.tone-apps { --card-glow: rgba(255,111,181,.48); background: linear-gradient(145deg, rgba(103,43,102,.74), rgba(25,28,69,.82)); }.project-card.tone-systems { --card-glow: rgba(255,175,101,.43); background: linear-gradient(145deg, rgba(104,62,38,.77), rgba(26,29,65,.83)); }.card-index, .card-category, .project-card h3, .project-card p, .project-card .card-tags { position: relative; z-index: 1; }.card-index { color: rgba(247,247,251,.64); font: 9px var(--mono); letter-spacing: .1em; }.card-category { display: block; margin-top: 53px; color: var(--acid); font: 9px var(--mono); letter-spacing: .09em; text-transform: uppercase; }.project-card h3 { margin: 8px 0 9px; max-width: 210px; font-size: 20px; line-height: 1.02; }.project-card p { min-height: 37px; margin: 0; color: rgba(247,247,251,.67); font-size: 11px; line-height: 1.45; }.card-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }.card-tags b { padding: 4px 6px; border: 1px solid rgba(247,247,251,.18); border-radius: 999px; color: rgba(247,247,251,.82); font: 8px var(--mono); font-weight: 400; }.project-card.is-hidden { display: none; }

.workflow { display: grid; grid-template-columns: .82fr 1.18fr; gap: 58px; align-items: center; }.workflow-intro h2 { max-width: 550px; margin: 21px 0 20px; font-size: clamp(43px, 5.4vw, 75px); line-height: .94; }.workflow-intro > p:last-child { max-width: 415px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }.workflow-console { overflow: hidden; border: 1px solid rgba(226,231,255,.17); border-radius: 18px; background: linear-gradient(145deg, rgba(27,34,81,.8), rgba(10,15,42,.93)); box-shadow: 0 25px 60px rgba(0,0,0,.18); }.workflow-steps { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); }.workflow-steps::before { content: ""; position: absolute; top: 50%; right: 8%; left: 8%; height: 1px; background: linear-gradient(90deg, transparent, rgba(37,214,255,.58), rgba(163,255,143,.45), transparent); }.workflow-step { position: relative; z-index: 1; min-height: 105px; padding: 17px 8px; color: rgba(236,241,255,.57); border: 0; border-right: 1px solid rgba(226,231,255,.1); background: transparent; font-size: 11px; font-weight: 650; cursor: pointer; transition: color .2s ease, background .2s ease; }.workflow-step:last-child { border-right: 0; }.workflow-step span { display: grid; place-items: center; width: 25px; height: 25px; margin: 0 auto 10px; border: 1px solid rgba(226,231,255,.35); border-radius: 50%; background: #151b41; font: 8px var(--mono); }.workflow-step:hover { color: var(--paper); background: rgba(255,255,255,.04); }.workflow-step.is-selected { color: var(--acid); background: rgba(37,214,255,.05); }.workflow-step.is-selected span { color: var(--ink); border-color: var(--acid); background: var(--acid); box-shadow: 0 0 0 6px rgba(163,255,143,.08), 0 0 18px rgba(163,255,143,.34); }.workflow-display { min-height: 300px; padding: clamp(27px, 4vw, 50px); }.workflow-number { color: var(--pink); font: 10px var(--mono); letter-spacing: .1em; }.workflow-display h3 { max-width: 490px; margin: 12px 0 10px; font-size: clamp(28px, 3.4vw, 43px); line-height: .98; }.workflow-copy { max-width: 560px; margin: 0; color: #bbc5da; font-size: 14px; line-height: 1.62; }.workflow-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 28px; }.workflow-bottom > div { padding: 13px 0 0; border-top: 1px solid var(--line); }.workflow-bottom span { display: block; margin-bottom: 8px; color: var(--muted); font: 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; }.workflow-bottom p { margin: 0; color: var(--paper); font-size: 12px; line-height: 1.45; }.workflow-skills { display: flex; flex-wrap: wrap; gap: 6px; }.workflow-skills b { padding: 5px 7px; border-radius: 999px; color: var(--acid); background: rgba(163,255,143,.10); font-size: 10px; font-weight: 550; }

.journey { padding-top: clamp(82px, 10vw, 150px); }.journey-layout { display: grid; grid-template-columns: 1.23fr .77fr; gap: 18px; margin-top: 18px; }.journey-list { border-top: 1px solid var(--line); }.journey-item { position: relative; border-bottom: 1px solid var(--line); }.journey-item::before { content: ""; position: absolute; top: 28px; left: -4px; z-index: 1; width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 6px rgba(37,214,255,.09), 0 0 18px rgba(37,214,255,.52); }.journey-item:nth-child(2)::before { background: #ae87ff; box-shadow: 0 0 0 6px rgba(174,135,255,.09), 0 0 18px rgba(174,135,255,.52); }.journey-item:nth-child(3)::before { background: var(--pink); box-shadow: 0 0 0 6px rgba(255,111,181,.09), 0 0 18px rgba(255,111,181,.52); }.journey-item > button { width: 100%; min-height: 68px; padding: 20px 18px 20px 23px; display: grid; grid-template-columns: 112px 1fr auto; gap: 17px; align-items: baseline; color: var(--paper); border: 0; background: transparent; text-align: left; cursor: pointer; }.journey-item > button span { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; }.journey-item > button strong { font-size: 17px; font-weight: 550; letter-spacing: -.04em; }.journey-item > button i { color: var(--acid); font-size: 20px; font-style: normal; transition: transform .25s ease; }.journey-item.is-open > button i { transform: rotate(45deg); }.journey-detail { max-height: 0; margin-left: 23px; overflow: hidden; transition: max-height .38s ease, padding .38s ease; }.journey-item.is-open .journey-detail { max-height: 210px; padding: 0 33px 23px 0; }.journey-detail p { max-width: 680px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }.journey-detail div, .education-card article > div { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }.journey-detail b, .education-card article b { padding: 5px 7px; border: 1px solid rgba(226,231,255,.16); border-radius: 999px; color: #cfd8ec; font-size: 9px; font-weight: 500; }
.education-card { padding: clamp(26px, 3.6vw, 43px); border: 1px solid rgba(226,231,255,.17); border-radius: 16px; background: radial-gradient(circle at 90% 6%, rgba(255,111,181,.28), transparent 30%), linear-gradient(145deg, rgba(57,37,107,.69), rgba(19,22,58,.86)); box-shadow: 0 20px 48px rgba(0,0,0,.15); }.education-card > .eyebrow { color: rgba(231,237,255,.65); }.education-card article { padding: 28px 0; border-bottom: 1px solid rgba(226,231,255,.15); }.education-card article:last-child { padding-bottom: 0; border-bottom: 0; }.education-card article > span { color: var(--acid); font: 9px var(--mono); letter-spacing: .1em; }.education-card h3 { margin: 13px 0 8px; font-size: 23px; line-height: 1.02; }.education-card article > p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.45; }

.toolkit { padding-top: clamp(82px, 10vw, 150px); }.toolkit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; padding-top: 18px; }.toolkit-grid article { min-height: 255px; padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(15,21,51,.58); transition: transform .25s ease, border-color .25s ease, background .25s ease; }.toolkit-grid article:hover { border-color: rgba(226,231,255,.38); background: rgba(25,31,70,.72); transform: translateY(-5px); }.toolkit-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--ink); font-size: 23px; font-weight: 700; }.gradient-one { background: linear-gradient(135deg, var(--acid), var(--cyan)); }.gradient-two { background: linear-gradient(135deg, var(--cyan), #9aa2ff); }.gradient-three { background: linear-gradient(135deg, var(--pink), #bf8dff); }.gradient-four { background: linear-gradient(135deg, var(--orange), #ffd28f); }.toolkit-grid h3 { margin: 33px 0 10px; font-size: 20px; line-height: 1.05; }.toolkit-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.62; }.training-line { display: grid; grid-template-columns: 1fr 2fr; gap: 30px; margin-top: 18px; padding-top: 20px; border-top: 1px solid var(--line); }.training-line span { color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }.training-line p { margin: 0; color: #c9d0dd; font-size: 13px; }

.contact { padding-top: clamp(65px, 9vw, 130px); }.contact-card { position: relative; display: grid; grid-template-columns: .97fr 1.03fr; min-height: 650px; overflow: hidden; border: 1px solid rgba(226,231,255,.22); border-radius: 22px; color: var(--paper); background: radial-gradient(circle at 22% 15%, rgba(255,111,181,.53), transparent 28%), radial-gradient(circle at 68% 74%, rgba(37,214,255,.20), transparent 42%), linear-gradient(135deg, #2a235f, #101a47 47%, #091328 100%); box-shadow: 0 31px 90px rgba(0,0,0,.31), inset 0 1px 0 rgba(255,255,255,.18); }.contact-intro { position: relative; z-index: 2; padding: clamp(38px, 5.7vw, 75px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }.contact-intro .eyebrow { color: rgba(247,247,251,.68); }.contact-intro h2 { margin: 22px 0 20px; font-size: clamp(44px, 5.8vw, 77px); line-height: .91; }.contact-intro > p:not(.eyebrow) { max-width: 410px; margin: 0; color: rgba(247,247,251,.75); font-size: 14px; line-height: 1.65; }.contact-methods { width: 100%; margin-top: 42px; border-top: 1px solid rgba(247,247,251,.24); }.contact-method { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 14px 0; border-bottom: 1px solid rgba(247,247,251,.18); }.contact-method span { color: rgba(247,247,251,.58); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }.contact-method strong { font-size: 12px; font-weight: 500; }.contact-form { position: relative; z-index: 2; align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: clamp(37px, 5vw, 68px); border-left: 1px solid rgba(247,247,251,.19); background: rgba(5,9,27,.55); backdrop-filter: blur(15px); }.form-row { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }.form-row label { color: rgba(247,247,251,.73); font: 10px var(--mono); letter-spacing: .08em; text-transform: uppercase; }.form-row input, .form-row textarea { width: 100%; padding: 0 0 10px; color: var(--paper); border: 0; border-bottom: 1px solid rgba(247,247,251,.3); border-radius: 0; outline: 0; background: transparent; font: 14px var(--sans); transition: border-color .2s ease, box-shadow .2s ease; }
.form-row textarea { min-height: 88px; padding: 8px 0; resize: vertical; }
.select-wrap { position: relative; }
.form-row select { width: 100%; min-height: 48px; padding: 0 38px 0 14px; color: #f7f7fb; border: 1px solid rgba(226,231,255,.24); border-radius: 11px; outline: 0; background: linear-gradient(135deg, rgba(34,42,91,.86), rgba(10,16,40,.9)); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 24px rgba(0,0,0,.12); color-scheme: dark; font: 13px var(--sans); appearance: none; -webkit-appearance: none; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.form-row select:hover { border-color: rgba(163,255,143,.45); }
.form-row select:focus { border-color: var(--acid); box-shadow: 0 0 0 3px rgba(163,255,143,.08), inset 0 1px 0 rgba(255,255,255,.07); }
.form-row select option { color: #f7f7fb; background: #111936; padding: 12px; }
.select-arrow { position: absolute; top: 50%; right: 15px; pointer-events: none; color: var(--acid); font-size: 19px; line-height: 1; transform: translateY(-57%); }
.form-row input:focus, .form-row textarea:focus { border-color: var(--acid); box-shadow: 0 5px 20px rgba(163,255,143,.05); }.button-form { align-self: flex-start; margin-top: 7px; color: #0b1722; background: linear-gradient(110deg, var(--acid), var(--cyan)); cursor: pointer; }.button-form:hover { color: var(--ink); background: linear-gradient(110deg, #d1ffc8, #bdf9ff); }.form-status { min-height: 20px; margin: 16px 0 0; color: rgba(247,247,251,.73); font-size: 12px; line-height: 1.45; }.contact-orbit { position: absolute; top: 50%; right: -14%; width: min(48vw, 600px); aspect-ratio: 1; border: 1px solid rgba(247,247,251,.20); border-radius: 50%; transform: translateY(-50%); }.contact-orbit::before, .contact-orbit::after { content: ""; position: absolute; border: 1px solid rgba(247,247,251,.15); border-radius: 50%; }.contact-orbit::before { inset: 14%; }.contact-orbit::after { inset: 30%; }.contact-orbit span { position: absolute; top: 17%; left: 10%; color: var(--acid); font-size: 30px; animation: starspin 15s linear infinite reverse; }

.footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 104px; color: var(--muted); border-top: 1px solid var(--line); font-size: 11px; }.footer p { margin: 0; }.footer-links { display: flex; gap: 22px; }.footer-links a:hover { color: var(--acid); }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes turn { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes drift { 50% { transform: translate(-15px, 6px); } }
@keyframes scrollDot { 50% { transform: translate(-50%, 11px); opacity: .2; } }
@keyframes starspin { to { transform: rotate(360deg); } }

@media (max-width: 1000px) {
  .project-grid { grid-template-columns: repeat(3, 1fr); }.toolkit-grid { grid-template-columns: repeat(2, 1fr); }.workflow { gap: 38px; }
}

@media (max-width: 850px) {
  :root { --shell: min(100% - 40px, 700px); }
  .nav { height: 68px; margin-top: 10px; }.menu-toggle { position: relative; z-index: 4; display: grid; gap: 5px; width: 36px; height: 36px; padding: 9px; color: var(--paper); border: 1px solid var(--line); background: transparent; }.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; transition: transform .2s ease; }.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }.nav-links { position: absolute; top: 72px; right: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 14px; opacity: 0; visibility: hidden; border: 1px solid var(--line); border-radius: 13px; background: rgba(12,17,43,.97); box-shadow: 0 18px 38px rgba(0,0,0,.24); transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }.nav-links.is-open { opacity: 1; visibility: visible; transform: translateY(0); }.nav-links > a:not(.nav-contact) { padding: 13px 9px; }.nav-resume, .nav-contact { justify-content: space-between; margin: 8px 0 0; }
  .hero { grid-template-columns: 1fr; gap: 50px; min-height: auto; padding-top: 78px; }.hero-art { min-height: min(98vw, 560px); }.orbit-large { width: min(77vw, 500px); height: min(77vw, 500px); }.orbit-small { width: min(49vw, 330px); height: min(49vw, 330px); }.identity-card { width: 44%; }.profile-photo-wrap { width: 40%; right: 7%; }.hero-footer { margin-top: 6px; }.proof-row { grid-template-columns: 1fr; gap: 0; }.proof-row p, .proof-row p + p { min-height: auto; padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }.proof-row p:last-child { border-bottom: 0; }
  .section-heading { grid-template-columns: 1fr; gap: 23px; }.fit-board { grid-template-columns: 1fr; }.role-selector { flex-direction: row; flex-wrap: wrap; gap: 8px; justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }.role-chip { flex: 1 1 140px; border: 1px solid var(--line); }.project-detail { grid-template-columns: .55fr 1.45fr; }.detail-stack { grid-column: 2; }.project-grid { grid-template-columns: repeat(2, 1fr); }.workflow { grid-template-columns: 1fr; gap: 37px; }.journey-layout { grid-template-columns: 1fr; }.toolkit-grid { grid-template-columns: repeat(2, 1fr); }.contact-card { grid-template-columns: 1fr; }.contact-intro { padding-bottom: 45px; }.contact-form { border-top: 1px solid rgba(247,247,251,.19); border-left: 0; }.contact-orbit { top: 26%; right: -25%; }
}

@media (max-width: 560px) {
  :root { --shell: min(100% - 32px, 500px); }.section-pad { padding-block: 76px; }.site-header .nav { padding: 0 14px; }.nav-contact { border-radius: 8px; }.hero { padding-top: 57px; }.hero-art { min-height: 440px; border-radius: 17px; }.identity-card { top: 14%; left: 7%; width: 52%; min-height: 178px; padding: 13px; }.identity-initials { font-size: 67px; }.profile-photo-wrap { top: 8%; right: 5%; width: 43%; border-radius: 14px; }.photo-label { left: 12px; bottom: 12px; font-size: 6px; }.recruiter-brief { right: 5%; bottom: 6%; width: 48%; padding: 12px; }.recruiter-brief strong { margin-top: 8px; font-size: 9px; }.recruiter-brief > span { font-size: 8px; }.brief-tags { display: none; }.hero-footer { grid-template-columns: 1fr auto; gap: 17px; }.hero-footer > p:first-child { display: none; }.scroll-link { justify-self: start; }.hero-index { grid-column: 2; grid-row: 1; }.hero-stamp { right: -105px; }.project-controls { display: block; }.project-controls > p { margin-bottom: 12px; }.project-filters { justify-content: flex-start; }.project-detail { grid-template-columns: 1fr; gap: 15px; padding: 24px; }.detail-stack { grid-column: auto; }.project-grid { grid-template-columns: 1fr; }.project-card { min-height: 214px; }.workflow-steps { grid-template-columns: repeat(5, 1fr); overflow-x: auto; }.workflow-step { min-width: 82px; min-height: 91px; font-size: 9px; }.workflow-bottom { grid-template-columns: 1fr; gap: 13px; }.journey-item > button { grid-template-columns: 1fr auto; gap: 8px; padding-left: 22px; }.journey-item > button span { grid-column: 1; }.journey-item > button strong { grid-column: 1; font-size: 16px; }.journey-item > button i { grid-column: 2; grid-row: 1 / span 2; }.journey-item.is-open .journey-detail { max-height: 260px; }.toolkit-grid { grid-template-columns: 1fr; }.toolkit-grid article { min-height: auto; }.training-line { grid-template-columns: 1fr; gap: 11px; }.contact-card { border-radius: 17px; }.contact-intro, .contact-form { padding: 32px 24px; }.contact-intro h2 { font-size: 45px; }.contact-method { flex-direction: column; align-items: flex-start; gap: 4px; }.contact-orbit { top: 19%; right: -46%; width: 95vw; }.footer { flex-wrap: wrap; padding-block: 26px; }.footer p { order: 3; flex-basis: 100%; }.footer-links { margin-left: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }.reveal { opacity: 1; transform: none; transition: none; }.orbit-small, .hero-stamp, .scroll-link span::after, .contact-orbit span { animation: none; }.cursor-glow { display: none; }
}


/* Recruiter-focused enhancements */
.snapshot { padding-top: clamp(72px, 9vw, 125px); }
.snapshot-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr .85fr; gap: 13px; padding-top: 18px; }
.snapshot-card { min-height: 225px; padding: 23px; border: 1px solid var(--line); border-radius: 15px; background: linear-gradient(145deg, rgba(19,26,60,.78), rgba(11,16,39,.72)); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.snapshot-card:hover { transform: translateY(-5px); border-color: rgba(177,241,255,.48); box-shadow: 0 18px 36px rgba(0,0,0,.18); }
.snapshot-feature { background: linear-gradient(145deg, rgba(62,48,137,.78), rgba(18,27,68,.82)); }
.snapshot-label { display: block; color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.snapshot-card strong { display: block; max-width: 330px; margin: 35px 0 10px; font-size: 22px; line-height: 1.02; letter-spacing: -.04em; }
.snapshot-card p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.snapshot-number { display: block; margin-bottom: 14px; color: var(--acid); font-size: 44px; font-weight: 650; line-height: .9; letter-spacing: -.07em; }
.snapshot-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 19px; }
.snapshot-tags b { padding: 5px 7px; border: 1px solid rgba(226,231,255,.18); border-radius: 999px; color: #d9e2f3; font: 9px var(--mono); font-weight: 400; }
.recruiter-strip { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 13px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: rgba(12,17,43,.42); }
.recruiter-strip > div { min-height: 90px; padding: 18px 20px; border-right: 1px solid var(--line); }
.recruiter-strip > div:last-child { border-right: 0; }
.recruiter-strip span { display: block; color: var(--muted); font: 8px var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.recruiter-strip strong { display: block; margin-top: 10px; font-size: 12px; font-weight: 560; line-height: 1.35; }
.detail-outcome { display: block; margin: 0 0 18px; color: #dce5f5; font-size: 12px; line-height: 1.45; font-weight: 560; }
.detail-tools-label { margin-top: 0 !important; }
.scroll-progress { position: fixed; top: 0; left: 0; z-index: 100; width: 0; height: 2px; background: linear-gradient(90deg, var(--acid), var(--cyan), var(--pink)); box-shadow: 0 0 12px rgba(37,214,255,.42); pointer-events: none; }
.project-card { transform: perspective(800px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); }
.project-card:hover, .project-card.is-selected { transform: perspective(800px) translateY(-6px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); }

@media (max-width: 1100px) {
  .snapshot-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .snapshot-card:last-child { grid-column: 1 / -1; min-height: 180px; }
}
@media (max-width: 850px) {
  .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-card:last-child { grid-column: auto; min-height: 225px; }
  .recruiter-strip { grid-template-columns: 1fr; }
  .recruiter-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .recruiter-strip > div:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .snapshot-grid { grid-template-columns: 1fr; }
  .snapshot-card:last-child { min-height: auto; }
  .snapshot-card strong { margin-top: 25px; }
}
@media (prefers-reduced-motion: reduce) {
  .snapshot-card, .project-card, .profile-photo-wrap { transition: none; transform: none !important; }
}


/* Connect hub + visual widgets */
.connect-hub { padding-top: clamp(72px, 9vw, 125px); }
.connect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; padding-top: 18px; }
.connect-card { position: relative; min-height: 235px; padding: 21px; display: flex; flex-direction: column; align-items: flex-start; overflow: hidden; border: 1px solid var(--line); border-radius: 15px; color: var(--paper); background: linear-gradient(145deg, rgba(19,26,60,.78), rgba(11,16,39,.72)); transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.connect-card::after { content: "↗"; position: absolute; top: 18px; right: 19px; color: rgba(247,247,251,.38); font-size: 17px; transition: transform .25s ease, color .25s ease; }
.connect-card:hover { transform: translateY(-7px); border-color: rgba(177,241,255,.55); box-shadow: 0 20px 42px rgba(0,0,0,.23); }
.connect-card:hover::after { color: var(--acid); transform: translate(3px,-3px); }
.connect-email { background: linear-gradient(145deg, rgba(62,48,137,.78), rgba(18,27,68,.82)); }
.connect-icon { display: grid; place-items: center; width: 45px; height: 45px; border: 1px solid rgba(247,247,251,.19); border-radius: 13px; color: var(--ink); background: linear-gradient(135deg, var(--acid), var(--cyan)); font-size: 17px; font-weight: 800; }
.connect-type { margin-top: 34px; color: var(--muted); font: 9px var(--mono); letter-spacing: .1em; }
.connect-card strong { margin-top: 8px; font-size: 16px; line-height: 1.12; letter-spacing: -.035em; }
.connect-card small { max-width: 210px; margin-top: 9px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.profile-ticker { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 11px; margin-top: 13px; padding: 19px 20px; border: 1px solid var(--line); border-radius: 13px; background: rgba(12,17,43,.42); color: rgba(235,241,255,.72); font: 9px var(--mono); letter-spacing: .1em; }
.profile-ticker i { color: var(--acid); font-style: normal; }
.contact-method a:hover strong { color: var(--acid); }

@media (max-width: 1100px) { .connect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 850px) { .connect-grid { grid-template-columns: repeat(2, 1fr); } .profile-ticker { justify-content: flex-start; } }
@media (max-width: 560px) { .connect-grid { grid-template-columns: 1fr; } .connect-card { min-height: 205px; } .profile-ticker { gap: 8px; font-size: 8px; } }
@media (prefers-reduced-motion: reduce) { .connect-card { transition: none; } }


/* Premium contact-card spotlight */
.connect-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(260px circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(163,255,143,.14), transparent 62%);
  transition: opacity .3s ease;
}
.connect-card:hover::before { opacity: 1; }
.connect-card > * { position: relative; z-index: 1; }

/* Extra polish for interactive elements */
.button, .nav-contact, .connect-card, .toolkit-grid article, .snapshot-card, .filter-chip, .role-chip, .workflow-step {
  will-change: transform;
}

.button-primary, .button-form, .nav-contact {
  position: relative;
  overflow: hidden;
}
.button-primary::after, .button-form::after, .nav-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,.42) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.button-primary:hover::after, .button-form:hover::after, .nav-contact:hover::after {
  transform: translateX(130%);
}

@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(163,255,143,.18); }
  50% { box-shadow: 0 0 0 9px rgba(163,255,143,0); }
}
.status-dot { animation: pulseRing 2.4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .connect-card::before { display: none; }
  .button-primary::after, .button-form::after, .nav-contact::after { display: none; }
  .status-dot { animation: none; }
}
