:root {
  --paper: #f5f2ea;
  --paper-bright: #fffdf8;
  --ink: #171916;
  --muted: #6f716b;
  --line: rgba(23, 25, 22, 0.18);
  --orange: #ff5c35;
  --green: #183a2c;
  --blue: #5c6df2;
  --yellow: #ffcf4a;
  --radius: 28px;
  --page: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  width: var(--page);
  height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.wordmark-dot {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-25deg);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  padding: 3px;
  display: flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 10px;
  font-weight: 850;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: #fff;
  background: var(--ink);
}

.language-switch button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.hero {
  width: var(--page);
  min-height: 740px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, 0.98fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  padding: 88px 0 110px;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  background: #2bad66;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(43, 173, 102, 0.13);
}

.hero h1,
.section-heading h2,
.work-heading h2,
.experience-intro h2,
.about-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.hero h1 span {
  color: var(--orange);
}

.hero-intro {
  max-width: 600px;
  margin: 34px 0 0;
  color: #4d4f4a;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  padding: 0 22px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 0 rgba(23, 25, 22, 0.14);
}

.button-primary {
  color: #fff;
  background: var(--ink);
}

.button-quiet {
  background: transparent;
}

.hero-stage {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.app-constellation {
  position: absolute;
  inset: 10px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 45%, rgba(255,255,255,0.9), rgba(255,255,255,0) 34%),
    linear-gradient(145deg, #ded8ff, #f2bf93 58%, #ef7659);
  border: 1px solid var(--line);
  border-radius: 48% 52% 46% 54% / 45% 42% 58% 55%;
  box-shadow: 18px 24px 0 rgba(23,25,22,0.09);
  transform: rotate(2deg);
}

.app-constellation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(23,25,22,0.19) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: radial-gradient(circle, #000 10%, transparent 68%);
  opacity: 0.45;
}

.constellation-orbit {
  position: absolute;
  left: 50%;
  top: 47%;
  border: 1px solid rgba(23,25,22,0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-13deg);
}

.orbit-large { width: 82%; height: 48%; }
.orbit-small { width: 52%; height: 76%; transform: translate(-50%, -50%) rotate(36deg); }

.constellation-app {
  position: absolute;
  z-index: 2;
  display: block;
  text-decoration: none;
  transition: transform 190ms ease, filter 190ms ease;
}

.constellation-app:hover,
.constellation-app:focus-visible {
  z-index: 5;
  filter: saturate(1.12);
  transform: translateY(-6px) rotate(0);
}

.constellation-app img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 24%;
  box-shadow: 0 18px 35px rgba(23,25,22,0.24);
}

.constellation-main {
  top: 27%;
  left: 33%;
  width: 38%;
  padding: 17px;
  color: #fff;
  background: rgba(17,20,17,0.88);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: 30px;
  box-shadow: 18px 22px 0 rgba(23,25,22,0.18);
  backdrop-filter: blur(16px);
  transform: rotate(-3deg);
}

.constellation-main img {
  width: 104px;
  height: 104px;
}

.constellation-main > span {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
}

.constellation-main strong {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.constellation-main small {
  margin-top: 2px;
  color: rgba(255,255,255,0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.constellation-meow,
.constellation-cropper,
.constellation-spatial,
.constellation-clock {
  width: 76px;
  height: 76px;
}

.constellation-meow { top: 12%; left: 17%; transform: rotate(-9deg); }
.constellation-cropper { left: 12%; bottom: 16%; transform: rotate(7deg); }
.constellation-spatial { top: 13%; right: 12%; transform: rotate(8deg); }
.constellation-clock { right: 13%; bottom: 15%; transform: rotate(-7deg); }

.constellation-note {
  position: absolute;
  z-index: 4;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.constellation-note strong { font-size: 12px; letter-spacing: -0.02em; }

.constellation-note span {
  margin-top: 3px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.note-platform { left: 3%; top: 44%; transform: rotate(-5deg); }
.note-shipped { right: 3%; top: 47%; transform: rotate(6deg); }

.stage-caption {
  position: absolute;
  bottom: 14px;
  left: 6%;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(23, 25, 22, 0.66);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.stage-caption i {
  width: 22px;
  height: 1px;
  background: currentColor;
}

/* Interactive product deck */
.hero-deck-stage {
  min-height: 580px;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-items: end;
}

.product-deck {
  position: relative;
  width: 100%;
  height: 500px;
  outline: none;
  touch-action: pan-y;
  cursor: grab;
}

.product-deck:active { cursor: grabbing; }

.product-deck:focus-visible::after {
  content: "";
  position: absolute;
  inset: 12px 7% 0 8%;
  border: 2px solid var(--orange);
  border-radius: 34px;
  pointer-events: none;
}

.product-playing-card {
  --stack: 0;
  position: absolute;
  top: 22px;
  left: 47%;
  z-index: calc(20 - var(--stack));
  width: min(330px, 66vw);
  min-height: 438px;
  padding: 19px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid rgba(23,25,22,0.62);
  border-radius: 28px;
  box-shadow: 12px 18px 0 rgba(23,25,22,0.1), 0 24px 55px rgba(23,25,22,0.16);
  transform: translate3d(calc(-50% + var(--stack) * 25px), calc(var(--stack) * 13px), 0) rotate(calc(-4deg + var(--stack) * 3.2deg));
  transform-origin: 50% 96%;
  transition: transform 360ms cubic-bezier(.2,.85,.25,1), opacity 240ms ease, filter 240ms ease;
  user-select: none;
}

.product-playing-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid color-mix(in srgb, var(--card-accent), transparent 62%);
  border-radius: 21px;
  pointer-events: none;
}

.product-playing-card[data-stack="0"] {
  transform: translate3d(-50%, 0, 0) rotate(-2deg);
}

.product-playing-card[data-stack="0"]:hover {
  transform: translate3d(-50%, -8px, 0) rotate(-1deg);
}

.product-playing-card[data-stack="1"] { filter: saturate(.92); }
.product-playing-card[data-stack="2"] { filter: saturate(.82); }
.product-playing-card[data-stack="3"] { filter: saturate(.72); }
.product-playing-card.is-hidden { opacity: 0; pointer-events: none; }

.playing-card-top {
  min-height: 28px;
  display: flex;
  justify-content: space-between;
  color: color-mix(in srgb, var(--card-accent), var(--ink) 34%);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-playing-card > img {
  width: 180px;
  height: 180px;
  margin: 23px auto 24px;
  object-fit: cover;
  border-radius: 25%;
  box-shadow: 0 18px 38px color-mix(in srgb, var(--card-accent), transparent 68%);
}

.card-meow > img { object-fit: contain; background: #e9e4ff; }

.playing-card-copy small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
}

.playing-card-copy h2 {
  margin: 5px 0 0;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.055em;
}

.playing-card-copy p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.product-playing-card > a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-playing-card[data-stack="0"] > a { opacity: 1; pointer-events: auto; }

.deck-toolbar {
  position: relative;
  z-index: 30;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: center;
}

.deck-toolbar button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font: inherit;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.deck-toolbar button:hover,
.deck-toolbar button:focus-visible { color: #fff; background: var(--ink); transform: translateY(-2px); }

.deck-toolbar span {
  min-width: 58px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.deck-hint {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 10px;
}

.marquee {
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  transform: rotate(-1deg) scale(1.02);
}

.marquee div {
  width: max-content;
  min-width: 100%;
  padding: 19px 32px;
  display: flex;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  justify-content: space-around;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.marquee b {
  color: var(--orange);
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 70px;
}

.work-section {
  padding-bottom: 70px;
}

.work-heading {
  display: flex;
  gap: 42px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 62px;
}

.work-heading h2 {
  font-size: clamp(54px, 7vw, 96px);
}

.award-stamp {
  width: 148px;
  height: 148px;
  padding: 15px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 5px 8px;
  color: #fff;
  background: #e1261c;
  border-radius: 50%;
  align-items: center;
  justify-items: center;
  transform: rotate(7deg);
  box-shadow: 10px 12px 0 rgba(23,25,22,0.12);
}

.award-stamp > span {
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.award-stamp strong {
  font-size: 11px;
  line-height: 1.05;
}

.award-stamp small {
  grid-column: 1 / -1;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.webex-work-accordion {
  border-bottom: 1px solid var(--ink);
}

.webex-work-panel {
  border-top: 1px solid var(--ink);
}

.webex-work-panel summary {
  min-height: 156px;
  padding: 30px 4px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 58px;
  gap: 28px;
  align-items: center;
  list-style: none;
  cursor: pointer;
  transition: color 180ms ease, padding 240ms ease;
}

.webex-work-panel summary::-webkit-details-marker { display: none; }

.webex-work-panel summary:hover .work-panel-title > strong,
.webex-work-panel summary:focus-visible .work-panel-title > strong {
  color: var(--orange);
}

.webex-work-panel summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}

.work-panel-number {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 850;
}

.work-panel-title {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.work-panel-title small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
}

.work-panel-title > strong {
  margin-top: 8px;
  font-size: clamp(31px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -.055em;
  transition: color 180ms ease;
}

.work-panel-title > span:last-child {
  margin-top: 11px;
  color: var(--muted);
  font-size: 14px;
}

.work-panel-toggle {
  position: relative;
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 240ms ease;
}

.work-panel-toggle::before,
.work-panel-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.work-panel-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.webex-work-panel[open] .work-panel-toggle {
  color: #fff;
  background: var(--ink);
  transform: rotate(45deg);
}

.webex-panel-content {
  padding: 6px 0 58px;
  animation: reveal-work-panel 260ms ease both;
}

@keyframes reveal-work-panel {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-platform-overview {
  position: relative;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 92% 6%, rgba(101,151,255,.28), transparent 26%),
    linear-gradient(135deg, #20242e, #0f1116 68%);
  border-radius: var(--radius);
}

.mobile-platform-overview::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -105px;
  top: -150px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255,255,255,.025), 0 0 0 82px rgba(255,255,255,.018);
}

.mobile-platform-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .72fr);
  gap: clamp(42px, 8vw, 100px);
  align-items: end;
}

.mobile-platform-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
  color: rgba(255,255,255,.46);
}

.mobile-platform-intro h3 {
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.06em;
}

.mobile-platform-intro > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.75;
}

.platform-tech-grid {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.22);
}

.platform-tech-grid article {
  min-height: 230px;
  padding: 26px 28px 0 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,.16);
}

.platform-tech-grid article + article { padding-left: 28px; }
.platform-tech-grid article:last-child { border-right: 0; }

.platform-tech-grid article > span {
  color: #76a6ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 850;
}

.platform-tech-grid h4 {
  margin: auto 0 13px;
  font-size: clamp(21px, 2.2vw, 30px);
  line-height: 1;
  letter-spacing: -.045em;
}

.platform-tech-grid p {
  margin: 0;
  color: rgba(255,255,255,.57);
  font-size: 13px;
  line-height: 1.65;
}

.vision-panel-content .webex-summary {
  padding-top: 0;
  border-top: 0;
}

.webex-summary {
  margin-bottom: 48px;
  padding-top: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(44px, 9vw, 120px);
  align-items: start;
  border-top: 1px solid var(--ink);
}

.webex-summary h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.webex-summary > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.webex-summary .credit-note {
  margin-top: 22px;
  padding-left: 16px;
  border-left: 2px solid var(--orange);
  font-size: 13px;
}

.webex-summary .credit-note strong { color: var(--ink); }

.button-dark {
  margin-top: 28px;
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.webex-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.webex-feature {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  background: #10121b;
  border-radius: var(--radius);
}

.webex-feature-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #22242b;
}

.webex-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 420ms ease;
}

.webex-feature-image:hover img { transform: scale(1.025); }

.webex-feature-image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 7px 9px;
  color: rgba(255,255,255,0.8);
  background: rgba(9,10,17,0.72);
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.webex-feature-copy {
  min-height: 300px;
  padding: clamp(28px, 4vw, 42px);
  display: flex;
  flex-direction: column;
}

.webex-feature .project-meta { color: rgba(255,255,255,0.44); }

.webex-feature h3 {
  margin: 46px 0 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.webex-feature-copy > p {
  margin: 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
  line-height: 1.7;
}

.webex-feature-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.section-heading h2,
.experience-intro h2,
.about-copy h2 {
  font-size: clamp(46px, 6vw, 78px);
}

.section-heading > p,
.experience-intro > p:last-child,
.about-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  min-height: 620px;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-card .project-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.project-card .project-copy {
  padding: 32px;
}

.project-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.app-cn-name {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: .38em;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .01em;
}

.project-featured .app-cn-name { color: rgba(255,255,255,.58); }

.product-page-link {
  color: inherit;
  text-decoration: none;
}

.product-page-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.14em;
}

.project-card p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

.text-link b {
  transition: transform 180ms ease;
}

.project-link:hover .text-link b,
.project-link:focus-visible .text-link b {
  transform: translate(4px, -4px);
}

.project-featured {
  grid-column: 1 / -1;
  min-height: 580px;
  color: #f8f3e9;
  background: var(--green);
  border: 0;
}

.project-featured .project-link {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
}

.project-featured .project-copy {
  padding: 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-featured .project-meta,
.project-featured p {
  color: rgba(255,255,255,0.66);
}

.bean-art {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: #d89059;
}

.bean-art::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: 65px;
  right: 70px;
  border: 1px solid rgba(67,35,22,0.22);
  border-radius: 50%;
}

.bean-orbit {
  position: absolute;
  width: 520px;
  height: 150px;
  top: 235px;
  right: 8px;
  border: 2px solid rgba(67,35,22,0.34);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.bean {
  position: absolute;
  width: 190px;
  height: 250px;
  background: #6a3928;
  border-radius: 48% 52% 48% 52%;
  box-shadow: inset -24px -18px 0 rgba(32,14,11,0.18), 18px 25px 0 rgba(80,38,23,0.14);
  transform: rotate(33deg);
}

.bean::after {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 16px;
  background: #d89059;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.bean-one { top: 165px; right: 165px; }
.bean-two { top: -105px; right: -40px; transform: scale(0.66) rotate(-40deg); opacity: 0.75; }
.bean-three { bottom: -125px; left: -10px; transform: scale(0.72) rotate(75deg); opacity: 0.55; }

.bean-label {
  position: absolute;
  right: 30px;
  bottom: 28px;
  color: rgba(65,32,21,0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-align: right;
}

.project-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.app-project {
  display: flex;
  flex-direction: column;
}

.app-project .project-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-project .project-copy p {
  flex: 1;
}

.app-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-actions a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.app-actions a:hover,
.app-actions a:focus-visible {
  color: #fff;
  background: var(--ink);
  transform: translateY(-2px);
}

.meow-visual {
  background: #d9d1ff;
}

.cat-window {
  width: min(78%, 350px);
  padding: 18px;
  background: #fdfbff;
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 12px 14px 0 var(--ink);
  transform: rotate(-3deg);
}

.cat-status {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cat-status i {
  width: 8px;
  height: 8px;
  background: #26aa66;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(38,170,102,0.15);
}

.cat-face {
  position: relative;
  width: 118px;
  height: 105px;
  margin: 34px auto 24px;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 48% 48% 42% 42%;
}

.cat-face::before,
.cat-face::after {
  content: "";
  position: absolute;
  top: -19px;
  width: 38px;
  height: 45px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: rotate(45deg);
  z-index: -1;
}

.cat-face::before { left: 8px; }
.cat-face::after { right: 8px; }

.cat-face i {
  width: 9px;
  height: 13px;
  background: var(--ink);
  border-radius: 50%;
}

.cat-face b {
  position: absolute;
  bottom: 18px;
  font-size: 18px;
}

.cat-task {
  display: grid;
  gap: 7px;
}

.cat-task span {
  height: 7px;
  background: rgba(23,25,22,0.13);
  border-radius: 99px;
}

.cat-task span:nth-child(2) { width: 76%; }
.cat-task span:nth-child(3) { width: 48%; }

.projector-visual {
  position: relative;
  background: #2d302f;
}

.projector-body {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 165px;
  margin-top: 60px;
  background: #d7c49d;
  border: 3px solid #0b0c0c;
  border-radius: 22px;
  box-shadow: 14px 17px 0 #111;
}

.reel {
  position: absolute;
  top: -102px;
  width: 118px;
  height: 118px;
  background: #baa57e;
  border: 3px solid #0b0c0c;
  border-radius: 50%;
}

.reel-left { left: 6px; }
.reel-right { right: 6px; }

.reel i {
  position: absolute;
  width: 28px;
  height: 28px;
  background: #2d302f;
  border: 2px solid #0b0c0c;
  border-radius: 50%;
}

.reel i:nth-child(1) { top: 13px; left: 44px; }
.reel i:nth-child(2) { bottom: 16px; left: 19px; }
.reel i:nth-child(3) { right: 18px; bottom: 17px; }

.projector-lens {
  position: absolute;
  top: 45px;
  right: -36px;
  width: 65px;
  height: 65px;
  background: #151615;
  border: 8px solid #716b5f;
  border-radius: 50%;
}

.projector-light {
  position: absolute;
  top: 68px;
  right: -215px;
  width: 190px;
  height: 25px;
  background: linear-gradient(90deg, rgba(255,222,139,0.75), transparent);
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 65%);
}

.film-strip {
  position: absolute;
  right: -20px;
  bottom: 27px;
  width: 310px;
  height: 40px;
  border-top: 7px dotted #e9c765;
  border-bottom: 7px dotted #e9c765;
  transform: rotate(-8deg);
  opacity: 0.55;
}

.cropper-visual {
  position: relative;
  background: #d8ebd2;
}

.crop-photo {
  position: absolute;
  width: 210px;
  height: 260px;
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.photo-back {
  background: #f3ba7f;
  transform: translate(45px, 12px) rotate(9deg);
}

.photo-front {
  background: linear-gradient(150deg, #58796b 0 43%, #eee1c5 44% 65%, #af7c58 66%);
  box-shadow: 10px 12px 0 var(--ink);
  transform: translate(-26px, -8px) rotate(-5deg);
}

.photo-front > span {
  position: absolute;
  inset: 34px 26px;
  border: 2px dashed #fff;
}

.photo-front i {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid var(--ink);
}

.photo-front i:nth-of-type(1) { top: 27px; left: 19px; }
.photo-front i:nth-of-type(2) { top: 27px; right: 19px; }
.photo-front i:nth-of-type(3) { bottom: 27px; left: 19px; }
.photo-front i:nth-of-type(4) { right: 19px; bottom: 27px; }

.crop-grid {
  position: absolute;
  right: 32px;
  bottom: 28px;
  padding: 9px;
  display: flex;
  gap: 5px;
  background: var(--ink);
  border-radius: 9px;
}

.crop-grid span {
  width: 18px;
  height: 24px;
  background: var(--paper-bright);
  border-radius: 3px;
}

.spatialbox-visual {
  position: relative;
  background: radial-gradient(circle at 55% 45%, #b5a7ff, #474663 55%, #252633);
}

.box-stage {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  transform: rotate(-8deg);
}

.box-face {
  position: absolute;
  display: block;
  border: 2px solid rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(8px);
}

.face-front { inset: 25px 12px 0 0; }
.face-side { width: 42px; top: 2px; right: -28px; bottom: 23px; transform: skewY(-32deg); }
.face-top { height: 38px; top: -26px; right: -6px; left: 12px; transform: skewX(-48deg); }

.panorama-screen {
  position: absolute;
  width: 360px;
  height: 170px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(127,200,255,0.25);
  transform: rotate(-8deg);
}

.collab-cursor {
  position: absolute;
  z-index: 4;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.cursor-a { top: 70px; right: 80px; }
.cursor-b { bottom: 55px; left: 70px; background: var(--blue); }

.dollar-visual {
  position: relative;
  background: #f3d770;
}

.coin-stack {
  position: absolute;
  bottom: 75px;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  color: #60460d;
  background: #f6bd2f;
  border: 3px solid #60460d;
  border-radius: 50%;
  box-shadow: 0 14px 0 #d6911b, 0 18px 0 #60460d;
  font-size: 48px;
  font-weight: 900;
}

.coin-stack i {
  position: absolute;
  right: -18px;
  bottom: -24px;
  width: 112px;
  height: 112px;
  border: 3px solid #60460d;
  border-radius: 50%;
  z-index: -1;
}

.coin-stack i:nth-of-type(2) { right: -35px; bottom: -42px; background: #e9a51e; }
.coin-stack i:nth-of-type(3) { right: -52px; bottom: -60px; background: #d99118; }

.stack-one { left: 20%; transform: scale(0.72) rotate(-10deg); }
.stack-two { right: 21%; bottom: 95px; transform: rotate(8deg); }

.score-board {
  position: absolute;
  top: 30px;
  padding: 12px 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 6px 7px 0 rgba(96,70,13,0.35);
}

.score-board small { color: rgba(255,255,255,0.55); font-size: 8px; font-weight: 800; }
.score-board strong { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

/* Refined app identity panels — BeanVault and FlippingTime intentionally keep their original art. */
.product-showcase {
  position: relative;
  isolation: isolate;
  padding: 34px;
  background: #ddd;
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.product-showcase::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  z-index: -1;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255,255,255,.045), 0 0 0 72px rgba(255,255,255,.025);
}

.showcase-board {
  position: relative;
  width: min(94%, 410px);
  min-height: 290px;
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  color: #fff;
  background: rgba(17,18,22,.84);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 28px;
  box-shadow: 15px 18px 0 rgba(17,18,22,.23), 0 30px 60px rgba(17,18,22,.25);
  backdrop-filter: blur(18px);
  transform: rotate(-2.2deg);
}

.showcase-board::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  pointer-events: none;
}

.showcase-top,
.showcase-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.showcase-top { color: rgba(255,255,255,.58); }

.showcase-board > img {
  width: 150px;
  height: 150px;
  margin: 18px auto;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 25%;
  box-shadow: 0 20px 36px rgba(0,0,0,.34);
}

.meow-visual .showcase-board > img { object-fit: contain; background: #ddd8ff; }

.showcase-bottom {
  min-height: 34px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.showcase-bottom strong {
  font-family: inherit;
  font-size: 15px;
  letter-spacing: -.02em;
}

.showcase-bottom > span { display: flex; gap: 5px; align-items: center; color: rgba(255,255,255,.6); }
.live-state { color: #98f2ba; }
.showcase-bottom > span > i { width: 4px; height: 4px; display: block; background: #a99cff; border-radius: 50%; }
.showcase-bottom > span > i:nth-child(2) { opacity: .7; }
.showcase-bottom > span > i:nth-child(3) { opacity: .4; }

.product-showcase.meow-visual { background: linear-gradient(145deg, #c5baff, #7766da); }
.product-showcase.projector-visual { background: linear-gradient(145deg, #448fbc, #092738); }
.product-showcase.cropper-visual { background: linear-gradient(145deg, #ffd42a, #ee8b1d); }
.product-showcase.spatialbox-visual { background: linear-gradient(145deg, #d8ba8a, #7d4515); }
.product-showcase.dollar-visual { background: linear-gradient(145deg, #71ad78, #125b3d); }

.projector-visual .showcase-board { background: rgba(4,18,28,.86); }
.cropper-visual .showcase-board { background: rgba(38,31,69,.9); }
.spatialbox-visual .showcase-board { background: rgba(58,30,12,.86); }
.dollar-visual .showcase-board { background: rgba(6,49,32,.88); }

.film-frames i { width: 18px !important; height: 12px !important; border: 1px solid rgba(255,255,255,.6); border-radius: 2px !important; background: transparent !important; }
.crop-layout i { width: 11px !important; height: 18px !important; border: 1px solid #fff; border-radius: 1px !important; background: transparent !important; }
.crop-layout i:nth-child(2) { width: 22px !important; }
.collab-people i { width: 24px !important; height: 24px !important; display: grid !important; place-items: center; color: #fff; background: #ee785b !important; border: 1px solid #fff; font-style: normal; border-radius: 50% !important; }
.collab-people i:nth-child(2) { margin-left: -9px; background: #6758d7 !important; }
.collab-people b { margin-left: 4px; font-size: 7px; }
.score-line b { color: #fff; font-size: 13px; }
.score-line i { width: auto !important; height: auto !important; padding: 4px 6px; color: #153f2d; background: #7cf0a9 !important; border-radius: 99px !important; font-style: normal; }

.clock-visual {
  position: relative;
  background: #ef8b6e;
}

.flip-clock {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
}

.flip-clock div {
  position: relative;
  width: 70px;
  height: 100px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: #1b1c1b;
  border: 2px solid #090a09;
  border-radius: 9px;
  box-shadow: 7px 9px 0 rgba(58,28,21,0.45);
}

.flip-clock div::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  border-top: 2px solid #050505;
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.flip-clock span {
  font-size: 65px;
  font-weight: 500;
  letter-spacing: -0.08em;
}

.flip-clock > i {
  margin: 0 1px;
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
}

.clock-shadow {
  position: absolute;
  width: 370px;
  height: 100px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 12px;
  transform: translate(14px, 18px) rotate(3deg);
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 10vw, 150px);
  border-top: 1px solid var(--line);
}

.experience-intro {
  align-self: start;
  position: sticky;
  top: 48px;
}

.experience-intro > p:last-child {
  margin-top: 32px;
}

.experience-list {
  border-top: 1px solid var(--ink);
}

.experience-list article {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 24px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.experience-number {
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
}

.experience-list h3 {
  margin: -6px 0 10px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.experience-list p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.experience-tag {
  padding: 7px 11px;
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(70px, 12vw, 170px);
  align-items: center;
}

.portrait-wrap {
  position: relative;
  max-width: 450px;
  aspect-ratio: 1;
}

.portrait-wrap img {
  width: 78%;
  height: 78%;
  margin: 11%;
  display: block;
  object-fit: cover;
  object-position: center 64%;
  border-radius: 48% 52% 46% 54% / 55% 44% 56% 45%;
}

.portrait-ring {
  position: absolute;
  inset: 2%;
  border: 2px solid var(--orange);
  border-radius: 46% 54% 54% 46% / 50% 44% 56% 50%;
  transform: rotate(9deg);
}

.portrait-label {
  position: absolute;
  right: -18px;
  bottom: 12%;
  padding: 13px 15px;
  color: #fff;
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.08em;
  transform: rotate(-4deg);
}

.about-copy > p {
  max-width: 620px;
  margin-top: 28px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
}

.about-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.contact-section {
  padding: 140px max(24px, calc((100vw - 1240px) / 2));
  color: #fff;
  background: var(--ink);
}

.contact-section .kicker {
  color: rgba(255,255,255,0.55);
}

.contact-section h2 {
  max-width: 1000px;
  font-size: clamp(58px, 8vw, 118px);
}

.contact-section h2 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.contact-link {
  width: fit-content;
  margin-top: 52px;
  padding-bottom: 8px;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  min-height: 100px;
  padding: 0 max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.54);
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.13);
  font-size: 11px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  :root { --page: min(100% - 36px, 760px); }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-stage {
    width: min(100%, 600px);
    margin: 0 auto;
  }

  .section-heading,
  .experience-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .webex-summary { grid-template-columns: 1fr; }

  .mobile-platform-intro { grid-template-columns: 1fr; gap: 24px; }
  .mobile-platform-intro .eyebrow { margin-bottom: 0; }

  .section-heading {
    gap: 26px;
  }

  .experience-intro {
    position: static;
  }

  .portrait-wrap {
    width: min(80vw, 430px);
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  :root { --page: calc(100% - 28px); --radius: 20px; }

  .site-header {
    height: 74px;
  }

  .site-nav {
    gap: 16px;
    margin-left: auto;
  }

  .site-nav a:not(:last-child) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 68px 0 88px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-stage {
    min-height: 450px;
  }

  .hero-deck-stage { min-height: 550px; }
  .product-deck { height: 468px; }
  .product-playing-card {
    top: 18px;
    left: 44%;
    width: min(300px, 70vw);
    min-height: 408px;
    padding: 17px;
    transform: translate3d(calc(-50% + var(--stack) * 17px), calc(var(--stack) * 11px), 0) rotate(calc(-4deg + var(--stack) * 3deg));
  }
  .product-playing-card > img { width: 156px; height: 156px; margin: 20px auto; }
  .playing-card-copy h2 { font-size: 27px; }

  .app-constellation { inset: 0 0 48px; }
  .constellation-main { left: 31%; width: 42%; }
  .constellation-meow,
  .constellation-cropper,
  .constellation-spatial,
  .constellation-clock { width: 62px; height: 62px; }
  .note-platform { left: 1%; }
  .note-shipped { right: 1%; }

  .marquee div {
    justify-content: flex-start;
  }

  .section {
    padding: 100px 0;
  }

  .work-heading {
    align-items: flex-start;
    gap: 14px;
  }

  .work-heading > div:first-child { min-width: 0; }
  .work-heading h2 { font-size: clamp(42px, 13vw, 58px); }

  .award-stamp {
    width: 84px;
    height: 84px;
    padding: 9px;
    flex: 0 0 auto;
  }

  .award-stamp > span { font-size: 27px; }
  .award-stamp strong { font-size: 7px; }
  .award-stamp small { font-size: 5px; }

  .webex-feature-grid { grid-template-columns: 1fr; }

  .webex-work-panel summary {
    min-height: 132px;
    padding: 24px 0;
    grid-template-columns: 30px minmax(0, 1fr) 44px;
    gap: 13px;
  }

  .work-panel-title > strong { font-size: clamp(27px, 8vw, 38px); }
  .work-panel-title > span:last-child { font-size: 12px; line-height: 1.5; }
  .work-panel-toggle { width: 42px; height: 42px; }
  .webex-panel-content { padding-bottom: 38px; }

  .mobile-platform-overview { padding: 28px 24px; }
  .platform-tech-grid { margin-top: 42px; grid-template-columns: 1fr; }
  .platform-tech-grid article,
  .platform-tech-grid article + article {
    min-height: 180px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .platform-tech-grid article:last-child { border-bottom: 0; }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-featured {
    min-height: 0;
  }

  .project-featured {
    grid-column: auto;
  }

  .project-featured .project-link {
    grid-template-columns: 1fr;
  }

  .project-featured .project-copy {
    padding: 32px;
  }

  .bean-art {
    min-height: 430px;
    grid-row: 1;
  }

  .project-visual {
    min-height: 310px;
  }

  .experience-list article {
    grid-template-columns: 30px 1fr;
  }

  .experience-tag {
    grid-column: 2;
    width: fit-content;
  }

  .contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .site-footer {
    padding-top: 28px;
    padding-bottom: 28px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
