:root {
  --bg: #131421;
  --bg-soft: #191b2a;
  --panel: rgba(31, 33, 49, 0.82);
  --panel-solid: #202233;
  --line: rgba(240, 237, 255, 0.13);
  --line-strong: rgba(240, 237, 255, 0.23);
  --text: #f5f1ff;
  --muted: #b9b7c8;
  --violet: #aa9af4;
  --purple: #8778d9;
  --mint: #9bd9c0;
  --green: #72bd96;
  --coral: #ee9aa9;
  --peach: #efad87;
  --pink: #e8a3c3;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% -10%, rgba(170,154,244,.12), transparent 38%);
}

::selection { background: rgba(170,154,244,.35); color: white; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: .7rem 1rem;
  color: var(--bg);
  background: var(--mint);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.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;
}

.page-glow {
  position: fixed;
  width: 520px;
  aspect-ratio: 1;
  filter: blur(90px);
  opacity: .14;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
}
.page-glow-a { background: var(--purple); top: 2%; right: -220px; }
.page-glow-b { background: var(--green); bottom: 8%; left: -250px; }

.section-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.site-header {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 22px auto 0;
  padding: 12px 14px 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 14px;
  z-index: 30;
  background: rgba(20, 21, 34, .76);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 50px rgba(0,0,0,.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(170,154,244,.22), rgba(155,217,192,.13));
  border: 1px solid rgba(170,154,244,.34);
  border-radius: 13px;
}
.brand-mark svg { width: 31px; fill: none; stroke: var(--text); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.brand strong { display: block; font-size: .96rem; line-height: 1.1; letter-spacing: -.01em; }
.brand small { display: block; color: var(--muted); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 4px; }
.brand-subtitle-ending {
  display: inline-block;
  transition: opacity .22s ease, transform .22s ease;
}
.brand-subtitle-ending.is-changing {
  opacity: 0;
  transform: translateY(2px);
}

.site-nav { display: flex; align-items: center; gap: 7px; }
.site-nav a {
  padding: .72rem .9rem;
  color: var(--muted);
  text-decoration: none;
  font-size: .87rem;
  border-radius: 11px;
  transition: .2s ease;
}
.site-nav a:hover { color: var(--text); background: rgba(255,255,255,.055); }
.site-nav .nav-contact { color: var(--bg); background: var(--mint); font-weight: 750; }
.site-nav .nav-contact:hover { color: var(--bg); background: #abe0cb; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  border-radius: 12px;
  place-content: center;
  gap: 4px;
}
.nav-toggle span:not(.sr-only) { width: 18px; height: 2px; background: currentColor; border-radius: 2px; }

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .96fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
  padding-block: 90px 70px;
}

.eyebrow, .kicker {
  color: var(--mint);
  font: 700 .73rem/1.2 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; }
.status-dot { width: 9px; height: 9px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 6px rgba(114,189,150,.10), 0 0 22px rgba(114,189,150,.8); }

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 28px;
  font-size: clamp(3.5rem, 7.8vw, 7.2rem);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 820;
}
h1 span {
  color: transparent;
  background: linear-gradient(98deg, var(--violet) 5%, var(--mint) 48%, var(--coral) 96%);
  background-clip: text;
  -webkit-background-clip: text;
}
.gradient-text {
  color: transparent;
  background: linear-gradient(98deg, var(--violet) 5%, var(--mint) 48%, var(--coral) 96%);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-motto {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 7px 0 25px;
}
.hero-motto::before {
  content: "";
  flex: 0 0 auto;
  width: clamp(42px, 5vw, 62px);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--mint), var(--coral));
  box-shadow: 0 0 18px rgba(170,154,244,.24);
}
.hero-motto strong {
  font: 820 clamp(1.22rem, 2vw, 1.62rem)/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .075em;
  text-shadow: 0 0 22px rgba(170,154,244,.11);
}
.hero-motto strong span {
  color: transparent;
  background: linear-gradient(95deg, #b7a8ff 0%, #9bd9c0 55%, #ee9aa9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lede { max-width: 670px; color: var(--muted); font-size: clamp(1rem, 1.4vw, 1.18rem); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: .85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 14px;
  text-decoration: none;
  font-size: .91rem;
  font-weight: 760;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #171823; background: linear-gradient(110deg, var(--violet), var(--mint)); background-repeat: no-repeat; box-shadow: 0 14px 35px rgba(135,120,217,.18); }
.button-secondary { color: var(--text); background: rgba(255,255,255,.045); border-color: var(--line); }
.button-secondary:hover { border-color: var(--line-strong); background: rgba(255,255,255,.07); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 23px;
  padding: 0;
  margin: 44px 0 0;
  list-style: none;
  color: var(--muted);
  font: 600 .72rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.hero-meta span { color: var(--violet); margin-right: 5px; }

.hero-art {
  position: relative;
  isolation: isolate;
  padding: 18px;
  border: 1px solid rgba(170,154,244,.22);
  background: linear-gradient(145deg, rgba(170,154,244,.07), rgba(155,217,192,.045));
  border-radius: 36px;
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% -7% -9% 11%;
  z-index: -1;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(238,154,169,.14), rgba(114,189,150,.12));
  filter: blur(2px);
  transform: rotate(-4deg);
}
.hero-art .workbench-image {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  border-radius: 23px;
}
.bench-bunny {
  position: absolute;
  z-index: 1;
  top: 7.2%;
  right: 5.4%;
  width: 27.5%;
  height: auto;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 5px, 0) scale(.985);
  transform-origin: 50% 70%;
  filter: drop-shadow(0 0 7px rgba(170,154,244,.42)) drop-shadow(0 0 18px rgba(238,95,111,.12));
  will-change: opacity, transform, filter;
}
.hero-art.rabbit-anomaly .bench-bunny {
  animation: bunny-materialise .82s steps(1, end) both, bunny-presence 3.8s steps(1, end) .82s infinite;
}
.rabbit-activity-status {
  display: inline-block;
  color: var(--mint);
  transform: translateZ(0);
}
.hero-art.rabbit-anomaly .art-label-bottom {
  color: var(--peach);
}
.hero-art.rabbit-anomaly .rabbit-activity-status {
  color: #ef6a75;
  text-shadow: 0 0 8px rgba(239,95,111,.72), 0 0 18px rgba(239,95,111,.36);
  animation: rabbit-status-glitch 1.15s steps(1, end) infinite;
}
@keyframes bunny-materialise {
  0%, 14%, 27% { opacity: 0; transform: translate3d(2px, 5px, 0) scale(.985); }
  8%, 20% { opacity: .34; transform: translate3d(-1px, 3px, 0) scale(.992); }
  36% { opacity: .18; transform: translate3d(1px, 2px, 0) scale(.997); }
  48%, 100% { opacity: .82; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes bunny-presence {
  0%, 86%, 100% { opacity: .82; transform: translate3d(0, 0, 0) scale(1); }
  87% { opacity: .28; transform: translate3d(-1px, 0, 0) scale(1); }
  89% { opacity: .86; transform: translate3d(1px, 0, 0) scale(1); }
  91% { opacity: .52; transform: translate3d(0, -1px, 0) scale(1); }
  93% { opacity: .82; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes rabbit-status-glitch {
  0%, 11%, 16%, 51%, 56%, 82%, 100% { opacity: 1; transform: translate3d(0, 0, 0); }
  12% { opacity: .15; transform: translate3d(1px, 0, 0); }
  14% { opacity: .9; transform: translate3d(-1px, 0, 0); }
  52% { opacity: .24; transform: translate3d(-1px, 0, 0); }
  54% { opacity: 1; transform: translate3d(1px, 0, 0); }
  83% { opacity: .45; transform: translate3d(0, -1px, 0); }
  85% { opacity: 1; transform: translate3d(0, 0, 0); }
}
.art-label {
  position: absolute;
  z-index: 2;
  padding: .58rem .75rem;
  color: var(--text);
  background: rgba(18,19,31,.88);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  font: 700 .64rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.art-label-top { top: -16px; right: 26px; }
.art-label-bottom { bottom: -15px; left: 30px; color: var(--mint); }

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  --ticker-distance: 50%;
  --ticker-duration: 30s;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0;
  padding-block: 14px;
  animation: ticker var(--ticker-duration) linear infinite;
  color: #ddd7f5;
  font: 750 .72rem/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .14em;
  will-change: transform;
}
.ticker-segment {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-inline: 13px;
}
.ticker i { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: 0 0 auto; }
@keyframes ticker { to { transform: translateX(calc(-1 * var(--ticker-distance))); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .ticker-track { animation: none; } * { transition-duration: 0.001ms !important; } }

@media (prefers-reduced-motion: reduce) {
  .hero-art.rabbit-anomaly .bench-bunny {
    opacity: .82;
    transform: none;
    animation: none;
  }
  .hero-art.rabbit-anomaly .rabbit-activity-status {
    animation: none;
  }
}

.section-block { padding-block: 115px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section-heading > div { max-width: 710px; }
.section-heading h2, .about-copy h2, .contact-card h2 {
  margin: 7px 0 0;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading > p { max-width: 430px; margin-bottom: 2px; color: var(--muted); }
.kicker { margin-bottom: 0; }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.project-column { display: flex; flex-direction: column; gap: 18px; }
.project-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 70px rgba(0,0,0,.13);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.project-card:hover { transform: translate3d(0, -4px, 0); border-color: var(--line-strong); }
.project-featured {
  min-height: 0;
  position: relative;
  border-color: rgba(170,154,244,.34);
  box-shadow: 0 20px 70px rgba(0,0,0,.13), 0 0 0 1px rgba(170,154,244,.07), 0 0 30px rgba(170,154,244,.10);
}
.project-featured::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(170,154,244,.18), 0 0 24px rgba(170,154,244,.16);
  opacity: .9;
}
.project-featured:hover { box-shadow: 0 24px 75px rgba(0,0,0,.18), 0 0 0 1px rgba(170,154,244,.10), 0 0 44px rgba(170,154,244,.14); }
.project-visual { min-height: 520px; position: relative; overflow: hidden; background: radial-gradient(circle at 45% 44%, rgba(170,154,244,.20), transparent 29%), linear-gradient(150deg, #24263a, #171824); }
.project-visual::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to bottom, black, transparent); }
.project-visual > svg { position: absolute; inset: auto 0 1% 0; width: 100%; height: 38%; z-index: 1; fill: none; stroke: rgba(155,217,192,.45); stroke-width: 2.2; filter: drop-shadow(0 0 10px rgba(155,217,192,.28)); }
.dial { position: absolute; display: grid; place-items: center; z-index: 2; }
.dial-svg { width: 100%; height: 100%; overflow: visible; filter: drop-shadow(0 0 20px rgba(170,154,244,.16)); }
.dial-redline { fill: rgba(239,95,111,.78); stroke: none; }
.dial-arc { fill: none; stroke: rgba(170,154,244,.42); stroke-width: 4; stroke-linecap: round; }
.dial-arc-inner { stroke-width: 2.2; stroke-opacity: .44; }
.dial-ticks line { stroke: rgba(245,241,255,.74); stroke-width: 3.2; stroke-linecap: round; }
.dial-ticks line.major { stroke-width: 4.2; stroke: rgba(245,241,255,.86); }
.dial-center { fill: #171824; stroke: var(--violet); stroke-width: 4; filter: drop-shadow(0 0 18px rgba(170,154,244,.44)); }
.dial-needle {
  stroke: #f6c2cc;
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 9px rgba(238,154,169,.55));
  transform-box: view-box;
  transform-origin: 50% 50%;
  will-change: transform;
}
/* A synchronized acceleration run: four upshifts, a brief limiter bounce, then coast-down. */
.dial-large .dial-needle { animation: dial-speed-run 38s linear infinite; }
.dial-small .dial-needle { animation: dial-rpm-run 38s linear infinite; }
@keyframes dial-speed-run {
  0%    { transform: rotate(-138deg); }
  6%    { transform: rotate(-135deg); }
  20%   { transform: rotate(-76deg); }
  21.5% { transform: rotate(-75deg); }
  31%   { transform: rotate(-34deg); }
  32.5% { transform: rotate(-33deg); }
  43%   { transform: rotate(7deg); }
  44.5% { transform: rotate(8deg); }
  55%   { transform: rotate(42deg); }
  56.5% { transform: rotate(43deg); }
  68%   { transform: rotate(68deg); }
  74%   { transform: rotate(68deg); }
  78%   { transform: rotate(59deg); }
  84%   { transform: rotate(36deg); }
  91%   { transform: rotate(-48deg); }
  100%  { transform: rotate(-138deg); }
}
@keyframes dial-rpm-run {
  0%    { transform: rotate(4deg); }
  6%    { transform: rotate(18deg); }
  20%   { transform: rotate(104deg); }
  21.5% { transform: rotate(57deg); }
  31%   { transform: rotate(121deg); }
  32.5% { transform: rotate(71deg); }
  43%   { transform: rotate(133deg); }
  44.5% { transform: rotate(84deg); }
  55%   { transform: rotate(142deg); }
  56.5% { transform: rotate(97deg); }
  68%   { transform: rotate(150deg); }
  68.25% { transform: rotate(146deg); }
  68.5%  { transform: rotate(151deg); }
  68.75% { transform: rotate(147deg); }
  69%    { transform: rotate(151deg); }
  69.25% { transform: rotate(146deg); }
  69.5%  { transform: rotate(151deg); }
  69.75% { transform: rotate(147deg); }
  70%    { transform: rotate(151deg); }
  70.25% { transform: rotate(146deg); }
  70.5%  { transform: rotate(151deg); }
  70.75% { transform: rotate(147deg); }
  71%    { transform: rotate(151deg); }
  71.25% { transform: rotate(146deg); }
  71.5%  { transform: rotate(151deg); }
  71.75% { transform: rotate(147deg); }
  72%    { transform: rotate(151deg); }
  72.25% { transform: rotate(146deg); }
  72.5%  { transform: rotate(151deg); }
  72.75% { transform: rotate(147deg); }
  73%    { transform: rotate(151deg); }
  73.25% { transform: rotate(146deg); }
  73.5%  { transform: rotate(151deg); }
  73.75% { transform: rotate(147deg); }
  74%    { transform: rotate(150deg); }
  74.8%  { transform: rotate(72deg); }
  76%    { transform: rotate(58deg); }
  84%    { transform: rotate(25deg); }
  91%    { transform: rotate(11deg); }
  100%   { transform: rotate(4deg); }
}
@media (prefers-reduced-motion: reduce) {
  .dial-large .dial-needle { animation: none; transform: rotate(-52deg); }
  .dial-small .dial-needle { animation: none; transform: rotate(72deg); }
}
.dial-large { width: 70%; aspect-ratio: 1; left: -10%; top: 13%; }
.dial-small { width: 44%; aspect-ratio: 1; right: 0; top: 27%; }
.mini-screen { position: absolute; right: 22%; bottom: 14%; z-index: 3; width: 142px; padding: 14px 15px 16px; text-align: center; border: 1px solid rgba(155,217,192,.32); background: rgba(15,17,25,.82); border-radius: 16px; box-shadow: 0 0 35px rgba(155,217,192,.12); }
.seg-readout { display: flex; justify-content: center; align-items: center; gap: 8px; margin-bottom: 7px; }
.seg-digit { --seg-on: rgba(155,217,192,.98); --seg-off: rgba(155,217,192,.08); position: relative; width: 28px; height: 46px; filter: drop-shadow(0 0 8px rgba(155,217,192,.22)); }
.seg { position: absolute; background: var(--seg-off); border-radius: 999px; }
.seg-a, .seg-d, .seg-g { left: 6px; width: 16px; height: 4px; }
.seg-a { top: 0; }
.seg-g { top: 21px; }
.seg-d { bottom: 0; }
.seg-b, .seg-c, .seg-e, .seg-f { width: 4px; height: 16px; }
.seg-b { top: 3px; right: 0; }
.seg-c { bottom: 3px; right: 0; }
.seg-e { bottom: 3px; left: 0; }
.seg-f { top: 3px; left: 0; }
.seg-digit.seg-4 .seg-b, .seg-digit.seg-4 .seg-c, .seg-digit.seg-4 .seg-f, .seg-digit.seg-4 .seg-g,
.seg-digit.seg-2 .seg-a, .seg-digit.seg-2 .seg-b, .seg-digit.seg-2 .seg-d, .seg-digit.seg-2 .seg-e, .seg-digit.seg-2 .seg-g { background: var(--seg-on); }
.mini-screen small { color: var(--muted); font: 700 .62rem ui-monospace, monospace; text-transform: uppercase; letter-spacing: .12em; }

.project-icon { min-height: 265px; display: grid; place-items: center; position: relative; overflow: hidden; }
.project-icon::before { content: ""; position: absolute; width: 240px; aspect-ratio: 1; border-radius: 50%; filter: blur(45px); opacity: .22; }
.project-icon svg { width: 150px; fill: none; stroke: var(--text); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 1; }
.oven-icon { background: linear-gradient(150deg, rgba(155,217,192,.11), transparent 55%); }
.oven-icon::before { background: var(--mint); }
.oven-icon svg path:last-child { stroke: var(--mint); stroke-width: 4; }
.automation-icon { background: linear-gradient(150deg, rgba(238,154,169,.11), transparent 55%); }
.automation-icon::before { background: var(--coral); }
.automation-icon svg path:last-child, .automation-icon svg path:nth-last-child(2) { stroke: var(--coral); }

.oddity-grid { min-height: 265px; position: relative; display: grid; grid-template-columns: repeat(3, 1fr); background: radial-gradient(circle at 70% 20%, rgba(239,173,135,.18), transparent 34%); }
.oddity-grid span { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.oddity-grid svg { position: absolute; width: 146px; left: 50%; top: 50%; transform: translate(-50%,-50%); fill: none; stroke: var(--peach); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 20px rgba(239,173,135,.24)); }

.project-body { padding: 26px 27px 29px; }
.project-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 19px; color: #777789; font: 700 .66rem/1 ui-monospace, monospace; letter-spacing: .12em; }
.tag { padding: .5rem .62rem; border: 1px solid currentColor; border-radius: 999px; font-size: .6rem; }
.tag-violet { color: var(--violet); background: rgba(170,154,244,.08); }
.tag-mint { color: var(--mint); background: rgba(155,217,192,.08); }
.tag-coral { color: var(--coral); background: rgba(238,154,169,.08); }
.tag-orange { color: var(--peach); background: rgba(239,173,135,.08); }
.project-body h3 { margin-bottom: 12px; font-size: clamp(1.5rem, 2.4vw, 2.25rem); line-height: 1.05; letter-spacing: -.035em; }
.project-body p { color: var(--muted); }
.tech-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 21px 0 0; list-style: none; }
.tech-list li { padding: .48rem .64rem; color: #cecadc; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 9px; font: 650 .64rem/1 ui-monospace, monospace; }

.capabilities-section { border-top: 1px solid var(--line); }
.capability-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.018); }
.capability-grid article { min-height: 245px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .2s ease; }
.capability-grid article:nth-child(3n) { border-right: 0; }
.capability-grid article:nth-last-child(-n+3) { border-bottom: 0; }
.capability-grid article:hover { background: linear-gradient(145deg, rgba(170,154,244,.055), rgba(155,217,192,.03)); }
.capability-grid span { color: var(--violet); font: 700 .68rem ui-monospace, monospace; letter-spacing: .12em; }
.capability-grid h3 { margin: 30px 0 11px; font-size: 1.2rem; }
.capability-grid p { color: var(--muted); font-size: .91rem; margin-bottom: 0; }

.about-card { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 580px; overflow: hidden; background: linear-gradient(145deg, rgba(32,34,51,.96), rgba(25,27,42,.96)); border: 1px solid var(--line); border-radius: 38px; box-shadow: var(--shadow); }
.about-graphic { min-height: 500px; display: grid; place-items: center; position: relative; overflow: hidden; background: radial-gradient(circle at center, rgba(170,154,244,.16), transparent 44%), linear-gradient(145deg, rgba(238,154,169,.07), rgba(155,217,192,.05)); }
.about-graphic::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 31px 31px; }
.about-graphic svg { width: min(80%, 390px); fill: none; stroke: var(--text); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; position: relative; z-index: 2; }
.about-graphic svg > circle:first-child,
.about-graphic svg > circle:nth-child(2) { stroke: rgba(170,154,244,.28); stroke-dasharray: 5 10; }
.about-graphic svg .bunny-ears,
.about-graphic svg .bunny-head,
.about-graphic svg .bunny-nose { stroke: rgba(245,241,255,.92); stroke-width: 2.2; }
.about-graphic svg .bunny-eye { fill: none; stroke: rgba(245,241,255,.92); stroke-width: 2.2; }
.about-graphic svg .bunny-wave { stroke: var(--mint); stroke-width: 4; filter: drop-shadow(0 0 10px rgba(155,217,192,.32)); }
.orbit { position: absolute; border: 1px solid rgba(238,154,169,.24); border-radius: 50%; transform: rotate(-16deg); }
.orbit::after { content: ""; position: absolute; width: 9px; aspect-ratio: 1; border-radius: 50%; background: var(--coral); box-shadow: 0 0 17px var(--coral); }
.orbit-a { width: 310px; height: 190px; }
.orbit-a::after { top: 26px; right: 32px; }
.orbit-b { width: 390px; height: 270px; transform: rotate(28deg); border-color: rgba(155,217,192,.18); }
.orbit-b::after { bottom: 35px; left: 45px; background: var(--mint); box-shadow: 0 0 17px var(--mint); }
.about-copy { align-self: center; padding: clamp(38px, 7vw, 82px); }
.about-copy h2 { margin: 9px 0 25px; }
.about-copy > p { color: var(--muted); font-size: 1.02rem; }
.about-copy strong { color: var(--text); }
.principles { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.principles span { padding: .62rem .72rem; color: #d8d4e7; border: 1px solid var(--line); border-radius: 999px; font: 650 .67rem ui-monospace, monospace; }

.contact-section { padding-top: 30px; }
.contact-card { display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: clamp(32px, 6vw, 72px); background: linear-gradient(115deg, rgba(170,154,244,.18), rgba(155,217,192,.12) 50%, rgba(238,154,169,.15)); border: 1px solid rgba(170,154,244,.25); border-radius: 36px; position: relative; overflow: hidden; }
.contact-card::after { content: ""; position: absolute; width: 330px; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; right: -170px; top: -160px; box-shadow: 0 0 0 45px rgba(255,255,255,.018), 0 0 0 90px rgba(255,255,255,.012); }
.contact-card > div { position: relative; z-index: 1; }
.contact-card h2 { max-width: 700px; }
.contact-card p { max-width: 690px; color: #ccc8d8; margin: 20px 0 0; }
.contact-motto {
  display: block;
  width: fit-content;
  margin-bottom: 15px;
  font: 780 clamp(.96rem, 1.45vw, 1.12rem)/1.3 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: transparent;
  background: linear-gradient(90deg, #c8bcff 0%, #9bd9c0 58%, #efacb7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(170,154,244,.13);
}
.contact-actions { min-width: max-content; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.copy-button { min-height: 44px; padding: .7rem 1rem; color: var(--muted); background: rgba(18,19,31,.35); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; }
.copy-button:hover { color: var(--text); border-color: var(--line-strong); }

.site-footer { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; gap: 24px 42px; padding-block: 32px 42px; color: #8f8d9c; font: 600 .67rem/1.5 ui-monospace, monospace; text-transform: uppercase; letter-spacing: .06em; }
.site-footer p { margin: 0; }
.footer-left, .footer-right { min-width: 0; display: flex; flex-direction: column; gap: 7px; }
.footer-right { text-align: right; }
.footer-legal span, .footer-business span { display: block; }
.footer-business { color: #a4a1af; font-size: .62rem; }
.footer-legal { color: rgba(170,154,244,.72); font-size: .62rem; }

.toast { position: fixed; left: 50%; bottom: 24px; z-index: 100; padding: .8rem 1rem; color: var(--bg); background: var(--mint); border-radius: 12px; font-weight: 750; box-shadow: 0 15px 45px rgba(0,0,0,.32); opacity: 0; transform: translate(-50%, 20px); pointer-events: none; transition: .22s ease; }
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 980px) {
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 80px; }
  .hero-copy { max-width: 790px; }
  .hero-art { width: min(100%, 650px); margin-inline: auto; }
  .project-featured { min-height: 0; }
  .project-visual { min-height: 390px; }
  .capability-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .capability-grid article:nth-child(3n) { border-right: 1px solid var(--line); }
  .capability-grid article:nth-child(2n) { border-right: 0; }
  .capability-grid article:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .capability-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .about-card { grid-template-columns: 1fr; }
  .about-graphic { min-height: 410px; }
  .contact-card { align-items: start; flex-direction: column; }
  .contact-actions { min-width: 0; width: 100%; align-items: stretch; }
}

@media (max-width: 760px) {
  .section-shell, .site-header { width: min(calc(100% - 24px), var(--max-width)); }
  .site-header { top: 8px; margin-top: 10px; }
  .nav-toggle { display: grid; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: calc(100% + 8px); padding: 10px; flex-direction: column; align-items: stretch; background: rgba(20,21,34,.97); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { text-align: center; }
  .hero { padding-block: 78px 55px; gap: 58px; }
  h1 { font-size: clamp(3.2rem, 16vw, 5.2rem); }
  .hero-meta { flex-direction: column; gap: 8px; }
  .hero-art { border-radius: 26px; padding: 11px; }
  .art-label { font-size: .55rem; }
  .art-label-top { right: 16px; }
  .art-label-bottom { left: 17px; }
  .section-block { padding-block: 84px; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; }
  .project-grid { display: flex; flex-direction: column; gap: 18px; }
  .project-column { display: contents; }
  .project-card, .project-featured { min-height: 0; }
  .project-featured { order: 1; }
  .project-reflow { order: 2; }
  .project-tools { order: 3; }
  .project-oddity { order: 4; }
  .project-visual { min-height: 380px; }
  .project-icon, .oddity-grid { min-height: 235px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid article { min-height: 210px; border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .capability-grid article:last-child { border-bottom: 0 !important; }
  .about-card, .contact-card { border-radius: 27px; }
  .about-graphic { min-height: 350px; }
  .about-copy { padding: 35px 27px 40px; }
  .contact-card { padding: 31px 24px; }
  .email-link { overflow-wrap: anywhere; }
  .site-footer { grid-template-columns: 1fr; gap: 18px; }
  .footer-right { text-align: left; }
}

@media (max-width: 460px) {
  .brand { min-width: 0; flex: 1; }
  .brand > span:last-child { min-width: 0; }
  .brand small {
    display: block;
    font-size: .54rem;
    line-height: 1.35;
    letter-spacing: .07em;
    overflow-wrap: anywhere;
  }
  .brand strong { font-size: .85rem; }
  .brand-mark { width: 38px; flex: 0 0 auto; }
  .hero-actions .button { width: 100%; }
  .project-visual { min-height: 315px; }
  .mini-screen { width: 112px; right: 13%; padding: 11px 12px 12px; }
  .seg-readout { gap: 6px; margin-bottom: 6px; }
  .seg-digit { width: 22px; height: 38px; }
  .seg-a, .seg-d, .seg-g { left: 5px; width: 12px; height: 3.5px; }
  .seg-g { top: 17px; }
  .seg-b, .seg-c, .seg-e, .seg-f { width: 3.5px; height: 13px; }
  .about-graphic { min-height: 300px; }
}
