:root {
  color-scheme: light;
  --bg: #f4f8fc;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --ink: #07162d;
  --muted: #54657a;
  --soft: #e1ebf4;
  --line: #cddceb;
  --blue: #0b6fdc;
  --blue-2: #2eb3ff;
  --cyan: #03c7d9;
  --green: #19b986;
  --dark: #06101c;
  --dark-2: #0b1724;
  --shadow: 0 18px 44px rgba(15, 47, 82, 0.12);
  --shadow-strong: 0 26px 70px rgba(2, 12, 24, 0.22);
  --radius: 8px;
  --wide: min(1840px, calc(100vw - 56px));
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #08111c;
  --surface: #0f1b28;
  --surface-2: #111f2e;
  --ink: #eef6ff;
  --muted: #a9b7c7;
  --soft: #1e3143;
  --line: #284155;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 28px 76px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(170px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 68px;
  padding: 0 30px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(8, 29, 55, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--ink);
  font-size: clamp(22px, 1.8vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.3vw, 26px);
}

.topnav a {
  position: relative;
  padding: 22px 2px 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
}

.topnav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a.active {
  color: var(--blue);
}

.topnav a.active::after {
  background: var(--blue);
}

.top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.theme-toggle,
.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.theme-toggle {
  min-width: 132px;
  padding: 0 12px;
  background: var(--surface-2);
  color: var(--ink);
}

.theme-toggle__icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e4a018;
}

.theme-toggle__icons .icon:last-child {
  color: #9fb2c9;
}

.download-button {
  padding: 0 18px;
  border-color: transparent;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(11, 111, 220, 0.28);
}

.hero-dashboard {
  display: grid;
  grid-template-columns: 32.5fr 30.5fr 37fr;
  min-height: 504px;
  border-bottom: 1px solid var(--line);
}

.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.panel-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.panel-inner {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 2.1vw, 42px) clamp(24px, 2.2vw, 42px);
}

.hero-panel--career,
.hero-panel--builder {
  color: #f7fbff;
}

.hero-panel--career {
  background: var(--dark);
}

.panel-backdrop--career {
  background:
    linear-gradient(90deg, rgba(4, 13, 23, 0.92), rgba(4, 13, 23, 0.62)),
    url("./assets/snoaper-launch-route-dark.png") center / cover no-repeat;
}

.hero-panel--career::after {
  background:
    linear-gradient(90deg, rgba(4, 12, 21, 0.28), rgba(4, 12, 21, 0.14)),
    radial-gradient(circle at 8% 84%, rgba(3, 199, 217, 0.18), transparent 28rem);
}

.hero-panel--builder {
  background: var(--dark-2);
}

.panel-backdrop--builder {
  background:
    linear-gradient(90deg, rgba(5, 15, 27, 0.94), rgba(5, 15, 27, 0.7)),
    url("./assets/products/snoaper-live-home.png") center / cover no-repeat;
}

.hero-panel--builder::after {
  background: linear-gradient(90deg, rgba(4, 12, 20, 0.18), rgba(2, 7, 12, 0.5));
}

.hero-panel--life {
  min-height: 560px;
  background:
    radial-gradient(circle at 85% 10%, rgba(46, 179, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #fbfdff, #f4f8fc);
  color: #07162d;
}

.hero-panel--life .panel-inner {
  padding-right: min(52%, 520px);
}

:root[data-theme="dark"] .hero-panel--life {
  background:
    radial-gradient(circle at 85% 10%, rgba(46, 179, 255, 0.12), transparent 24rem),
    #eef5fb;
  color: #07162d;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: color-mix(in srgb, currentColor 76%, transparent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--blue-2);
  font-size: 19px;
}

.hero-panel--life .eyebrow span {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-panel h1,
.hero-panel h2 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(35px, 3.1vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-panel--builder h2,
.hero-panel--life h2 {
  font-size: clamp(34px, 3vw, 55px);
}

.contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 26px;
  color: rgba(247, 251, 255, 0.84);
  font-size: 13px;
}

.contact-line span,
.contact-line a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-line .icon {
  color: var(--cyan);
}

.panel-copy {
  max-width: 720px;
  margin-bottom: 26px;
  color: color-mix(in srgb, currentColor 82%, transparent);
  font-size: clamp(14px, 0.95vw, 17px);
}

.hero-panel--life .panel-copy {
  max-width: 260px;
  color: #23354b;
}

.metric-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 720px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.metric-board article {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  column-gap: 12px;
  min-height: 94px;
  padding: 18px 18px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.metric-board article:nth-child(3n) {
  border-right: 0;
}

.metric-board article:nth-child(n + 4) {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-board .icon {
  grid-row: span 2;
  width: 27px;
  height: 27px;
  color: var(--blue-2);
}

.metric-board strong {
  color: var(--blue-2);
  font-size: clamp(24px, 1.6vw, 34px);
  line-height: 0.95;
}

.metric-board span {
  color: rgba(247, 251, 255, 0.86);
  font-size: 12px;
  line-height: 1.2;
}

.tech-row {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 18px;
  margin: 28px 0 24px;
  color: rgba(247, 251, 255, 0.88);
}

.tech-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 720;
}

.tech-row .icon {
  width: 26px;
  height: 26px;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: rgba(247, 251, 255, 0.9);
}

.check-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--blue-2);
  border-radius: 50%;
}

.panel-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 850;
}

.panel-button {
  padding: 0 18px;
  border: 1px solid var(--blue-2);
  color: #d8f5ff;
}

.outline-button {
  margin-top: 22px;
  padding: 0 16px;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.life-points {
  display: grid;
  gap: 15px;
  margin-top: 34px;
  max-width: 360px;
}

.life-points span,
.value-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #152b44;
  font-weight: 740;
}

.life-points .icon,
.value-row .icon {
  color: #07162d;
}

.hero-collage {
  position: absolute;
  top: 16px;
  right: 16px;
  width: min(62%, 560px);
  aspect-ratio: 1960 / 2450;
  pointer-events: none;
}

.hero-collage__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.domain-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  min-height: 62px;
  padding: 0 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(20, 49, 82, 0.06);
}

.domain-label {
  color: var(--ink);
  font-weight: 850;
}

.domain-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 0;
}

.domain-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}

.domain-list .icon {
  color: var(--blue);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(470px, 1.28fr) minmax(340px, 0.82fr) minmax(360px, 0.9fr);
  gap: 32px;
  align-items: start;
  width: var(--wide);
  margin: 0 auto;
  padding: 28px 0 38px;
}

.dashboard-column {
  min-width: 0;
}

.section-kicker {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-kicker--green {
  color: #009b9a;
}

.career-list {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 30px;
}

.career-list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 18px;
  bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}

.career-list section {
  position: relative;
  display: grid;
  grid-template-columns: 134px 1fr;
  gap: 18px;
  padding: 16px 16px 16px 18px;
  border: 1px solid color-mix(in srgb, var(--blue) 20%, var(--line));
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--blue) 5%, transparent), transparent 34%),
    var(--surface);
  box-shadow: 0 14px 32px rgba(15, 47, 82, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.career-list section::before {
  content: "";
  position: absolute;
  left: -28px;
  top: 20px;
  width: 17px;
  height: 17px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.career-list section:hover {
  transform: translateX(8px) scale(1.01);
  border-color: color-mix(in srgb, var(--blue) 48%, var(--line));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--blue) 8%, transparent), transparent 42%),
    var(--surface);
  box-shadow: 0 22px 46px rgba(15, 47, 82, 0.14);
}

.career-list time {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
}

.career-list strong {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
}

.career-list h3 {
  margin: 4px 0 6px;
  color: var(--blue);
  font-size: 15.5px;
  line-height: 1.25;
}

.career-list p,
.person-copy,
.product-card p,
.detail-timeline p,
.impact-grid p,
.skills-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
}

.career-punch {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.career-punch li {
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--line));
  border-radius: 999px;
  padding: 5px 9px;
  background: color-mix(in srgb, var(--blue) 7%, var(--surface));
  color: color-mix(in srgb, var(--ink) 82%, var(--blue));
  font-size: 11.5px;
  font-weight: 820;
  line-height: 1.15;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-grid--overview {
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-card {
  min-height: 214px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.06);
}

.product-card--row {
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(230px, 1.05fr);
  gap: 16px;
  align-items: stretch;
  min-height: 168px;
  padding: 16px;
}

.product-grid--overview .product-card--row {
  display: block;
  min-height: auto;
  padding: 11px 12px;
  box-shadow: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.product-grid--overview .product-card--row:hover {
  transform: translateX(6px);
  border-color: color-mix(in srgb, var(--green) 38%, var(--line));
  background: color-mix(in srgb, var(--green) 4%, var(--surface));
  box-shadow: 0 15px 32px rgba(15, 47, 82, 0.1);
}

.product-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.product-grid--overview .product-copy {
  gap: 8px;
}

.product-head {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: start;
  min-height: 78px;
}

.product-card--row .product-head {
  min-height: auto;
}

.product-grid--overview .product-head {
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 0;
}

.product-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: contain;
  padding: 6px;
  background: #fff;
  border: 1px solid var(--line);
}

.product-grid--overview .product-logo {
  width: 34px;
  height: 34px;
  padding: 4px;
}

.product-logo--text,
.product-logo--pulse {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.product-logo--text {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.product-logo--pulse {
  background: linear-gradient(135deg, #ff4f72, #0db3d8);
}

.product-logo--planner {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0b6f68, #07162d);
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.product-head h3 {
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.08;
}

.product-grid--overview .product-head h3 {
  margin-bottom: 3px;
  font-size: 14.5px;
}

.product-grid--overview .product-card p {
  font-size: 12px;
  line-height: 1.34;
}

.status-badge {
  align-self: start;
  border-radius: 999px;
  padding: 4px 9px;
  background: #dff8ed;
  color: #138f66;
  font-size: 11px;
  font-weight: 850;
}

.product-grid--overview .status-badge {
  align-self: center;
  padding: 3px 7px;
  font-size: 10px;
  white-space: nowrap;
}

.status-badge--concept {
  background: #e8f1ff;
  color: var(--blue);
}

.status-badge--testing {
  background: #e6fbff;
  color: #047c91;
}

.product-link,
.live-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 28px;
  border-radius: var(--radius);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
}

.product-link {
  border: 1px solid color-mix(in srgb, var(--blue) 24%, var(--line));
  background: color-mix(in srgb, var(--blue) 6%, var(--surface));
  color: var(--blue);
}

.product-link:hover,
.product-link:focus-visible {
  border-color: var(--blue);
  background: color-mix(in srgb, var(--blue) 11%, var(--surface));
}

.live-product-link {
  grid-column: 2 / -1;
  border: 1px solid rgba(247, 251, 255, 0.24);
  background: rgba(247, 251, 255, 0.08);
  color: #d8f5ff;
}

.live-product-link:hover,
.live-product-link:focus-visible {
  border-color: rgba(64, 223, 211, 0.62);
  background: rgba(64, 223, 211, 0.14);
}

.launchpad-preview {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 420px;
  margin: 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(64, 223, 211, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(3, 11, 20, 0.96), rgba(3, 11, 20, 0.62)),
    url("./assets/products/snoaper-live-home.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  color: #f7fbff;
}

.launchpad-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(4, 15, 26, 0.96), transparent);
  pointer-events: none;
}

.launchpad-preview__mast,
.launchpad-preview__rail,
.launchpad-preview__principles {
  position: relative;
  z-index: 1;
}

.launchpad-preview__mast {
  max-width: 520px;
}

.launchpad-preview__mast span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.launchpad-preview__mast strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.95;
}

.launchpad-preview__mast p {
  max-width: 440px;
  margin-top: 12px;
  color: rgba(247, 251, 255, 0.82);
  font-size: 19px;
  line-height: 1.35;
}

.launchpad-preview__rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.launchpad-preview__rail span {
  min-height: 54px;
  padding: 14px;
  border: 1px solid rgba(64, 223, 211, 0.3);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(7, 24, 35, 0.8);
  font-size: 13px;
  font-weight: 900;
}

.launchpad-preview__principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 12px;
  border: 1px solid rgba(214, 225, 236, 0.16);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(214, 225, 236, 0.16);
  overflow: hidden;
}

.launchpad-preview__principles span {
  padding: 12px;
  background: rgba(6, 18, 28, 0.86);
  color: rgba(247, 251, 255, 0.86);
  font-size: 12px;
  font-weight: 850;
}

.live-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.live-product-card {
  min-height: 330px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--cyan) 26%, var(--line));
  border-radius: var(--radius);
  background: linear-gradient(180deg, #071522, #0b1a29);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.08);
  color: #f7fbff;
}

.live-product-card__visual {
  display: flex;
  min-height: 128px;
  align-items: flex-end;
  padding: 16px;
  background:
    radial-gradient(circle at 82% 18%, rgba(46, 179, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, rgba(25, 53, 80, 0.88), rgba(5, 14, 23, 0.94));
}

.live-product-card__visual span {
  max-width: 280px;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.06;
}

.live-product-card__body {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 18px;
}

.live-product-card h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 22px;
  line-height: 1.05;
}

.live-product-card p {
  margin: 0;
  color: rgba(247, 251, 255, 0.76);
  font-size: 13.5px;
  line-height: 1.45;
}

.live-product-card--nesty {
  border-color: rgba(255, 97, 178, 0.52);
}

.live-product-card--production {
  border-color: rgba(79, 210, 194, 0.62);
}

.live-product-card--production .live-product-card__visual {
  background:
    radial-gradient(circle at 80% 22%, rgba(79, 210, 194, 0.24), transparent 15rem),
    linear-gradient(135deg, #073b3e, #081523);
}

.live-product-card--nesty .live-product-card__visual {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 97, 178, 0.22), transparent 14rem),
    linear-gradient(135deg, #201430, #0b1b33);
}

.live-product-card--pulse {
  border-color: rgba(194, 215, 226, 0.5);
}

.live-product-card--sonpera,
.live-product-card--acc {
  border-color: rgba(47, 218, 178, 0.5);
}

.live-product-card--deckforge {
  border-color: rgba(255, 139, 36, 0.58);
}

.live-product-card--deckforge .live-product-card__visual {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 139, 36, 0.22), transparent 14rem),
    linear-gradient(135deg, #231a13, #0d1625);
}

.product-surface {
  display: grid;
  align-content: space-between;
  min-height: 126px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--cyan) 24%, var(--line));
  border-radius: calc(var(--radius) - 2px);
  background:
    radial-gradient(circle at 86% 18%, rgba(46, 179, 255, 0.15), transparent 12rem),
    linear-gradient(135deg, #071522, #0b1a29);
  color: #f7fbff;
}

.product-surface strong {
  max-width: 260px;
  color: #fff;
  font-size: 18px;
  line-height: 1.08;
}

.product-surface span {
  color: rgba(247, 251, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-surface--nesty {
  border-color: rgba(255, 97, 178, 0.52);
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 97, 178, 0.2), transparent 12rem),
    linear-gradient(135deg, #201430, #0b1b33);
}

.product-surface--production {
  border-color: rgba(79, 210, 194, 0.62);
  background:
    radial-gradient(circle at 82% 20%, rgba(79, 210, 194, 0.22), transparent 12rem),
    linear-gradient(135deg, #073b3e, #081523);
}

.product-surface--deckforge {
  border-color: rgba(255, 139, 36, 0.58);
  background:
    radial-gradient(circle at 84% 20%, rgba(255, 139, 36, 0.22), transparent 12rem),
    linear-gradient(135deg, #231a13, #0d1625);
}

.product-shot {
  width: 100%;
  aspect-ratio: 16 / 6.2;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: top left;
}

.product-card--row .product-shot {
  height: 100%;
  min-height: 122px;
  margin-top: 0;
  aspect-ratio: auto;
}

.product-points {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.35;
  list-style: none;
}

.product-grid--overview .product-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  line-height: 1.1;
}

.product-points li {
  position: relative;
  padding-left: 18px;
}

.product-grid--overview .product-points li {
  padding: 4px 7px;
  border: 1px solid color-mix(in srgb, var(--green) 22%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--green) 7%, var(--surface));
  color: color-mix(in srgb, var(--ink) 74%, var(--green));
  font-weight: 800;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 15%, transparent);
}

.product-grid--overview .product-points li::before {
  display: none;
}

.product-card--architecture {
  display: block;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
}

.product-card--architecture.product-card--learning {
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) 1fr;
  gap: 16px;
  min-height: auto;
}

.product-grid--overview .product-card--architecture.product-card--learning {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  box-shadow: none;
}

.product-card--learning p {
  margin-top: 0;
  line-height: 1.45;
}

.product-card--architecture h3 {
  margin-bottom: 12px;
}

.product-grid--overview .product-card--architecture h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.product-card--architecture ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.product-grid--overview .product-card--architecture ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 12px;
  font-size: 11px;
}

.product-card--architecture li {
  position: relative;
  padding-left: 18px;
}

.product-card--architecture li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.show-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  color: var(--muted);
  font-size: 11.5px;
}

.show-strip strong {
  margin-right: 2px;
  color: var(--ink);
  font-size: 14px;
}

.show-strip span {
  display: flex;
  gap: 7px;
  align-items: flex-start;
  line-height: 1.3;
}

.show-strip b {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 11px;
  font-weight: 950;
}

.person-gallery {
  display: block;
  margin-bottom: 20px;
}

.person-gallery figure {
  margin: 0;
}

.person-gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1500 / 650;
  object-fit: contain;
}

.person-copy {
  font-size: 14px;
  color: var(--ink);
}

.value-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 24px 0;
  text-align: center;
}

.value-row span {
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: var(--blue);
  font-size: 12px;
}

blockquote {
  margin: 0;
  padding: 28px 30px;
  border: 1px solid rgba(3, 199, 217, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 84%, #e6fbff), var(--surface));
  color: var(--ink);
}

blockquote .icon {
  width: 34px;
  height: 34px;
  color: #00a4b0;
}

blockquote p {
  margin: 8px 0 14px;
  color: var(--ink);
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
}

blockquote cite {
  color: #008c96;
  font-style: normal;
  font-weight: 850;
}

.impact-section,
.timeline-section,
.skills-section,
.contact-section,
.overview-actions {
  width: var(--wide);
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(32px, 3.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.impact-grid,
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.impact-grid article,
.skills-grid article,
.detail-timeline article,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.06);
}

.impact-grid article,
.skills-grid article {
  padding: 24px;
}

.impact-grid strong {
  display: block;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 36px;
  line-height: 1;
}

.impact-grid h3,
.skills-grid h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.detail-timeline {
  display: grid;
  gap: 12px;
}

.detail-timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 26px;
  padding: 22px;
}

.detail-timeline time {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.detail-timeline h3 {
  grid-column: 2;
  margin-bottom: 8px;
  font-size: 18px;
}

.detail-timeline p {
  grid-column: 2;
}

@media (max-width: 1700px) and (min-width: 1421px) {
  .product-grid,
  .live-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid--overview {
    grid-template-columns: 1fr;
  }

  .show-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .show-strip strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1120px) {
  .live-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launchpad-preview {
    min-height: 360px;
  }

  .launchpad-preview__rail,
  .launchpad-preview__principles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .live-product-grid {
    grid-template-columns: 1fr;
  }

  .live-product-card__body {
    grid-template-columns: 48px 1fr;
  }

  .live-product-card__body .status-badge {
    grid-column: 2;
    justify-self: start;
  }

  .launchpad-preview {
    min-height: auto;
    padding: 20px;
  }

  .launchpad-preview__rail,
  .launchpad-preview__principles {
    grid-template-columns: 1fr;
  }
}

.skills-grid {
  grid-template-columns: repeat(3, 1fr);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.55fr);
  gap: 36px;
  align-items: center;
}

.contact-section .eyebrow {
  color: var(--blue);
}

.contact-section h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 0.98;
}

.contact-card {
  display: grid;
  gap: 12px;
  padding: 26px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
}

.contact-card .icon {
  color: var(--blue);
}

.overview-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.overview-link-grid a {
  display: grid;
  gap: 14px;
  min-height: 172px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.06);
  color: var(--muted);
  font-size: 14px;
}

.overview-link-grid span {
  color: var(--blue);
  font-size: 22px;
  font-weight: 950;
}

.detail-main {
  width: var(--wide);
  margin: 0 auto;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
  gap: 42px;
  align-items: stretch;
  padding: 58px 0 42px;
}

.page-hero--career {
  grid-template-columns: minmax(0, 0.68fr) minmax(640px, 0.86fr);
  gap: 34px;
}

.page-hero--timeline {
  grid-template-columns: minmax(0, 0.72fr) minmax(600px, 0.82fr);
  gap: 34px;
}

.page-hero--skills {
  grid-template-columns: minmax(0, 0.72fr) minmax(600px, 0.82fr);
  align-items: stretch;
}

.page-hero--contact {
  align-items: stretch;
}

.page-hero__copy {
  display: grid;
  align-content: center;
  min-height: 360px;
  padding: clamp(28px, 4vw, 58px);
  border-radius: var(--radius);
  background: var(--dark);
  color: #f7fbff;
  box-shadow: var(--shadow-strong);
}

.page-hero__copy h1 {
  max-width: 900px;
  margin: 0 0 22px;
  font-size: clamp(42px, 5.4vw, 86px);
  line-height: 0.96;
  letter-spacing: 0;
}

.page-hero--career .page-hero__copy h1 {
  font-size: clamp(36px, 3.85vw, 68px);
}

.page-hero--timeline .page-hero__copy h1 {
  font-size: clamp(36px, 4vw, 70px);
}

.page-hero--skills .page-hero__copy h1 {
  font-size: clamp(38px, 4.6vw, 76px);
}

.page-hero__copy p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 18px;
}

.page-hero__media,
.page-card,
.role-deep-card,
.roadmap-card,
.skill-deep-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.page-hero__media {
  overflow: hidden;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.page-hero__media--contain img {
  padding: 18px;
  object-fit: contain;
  background: var(--surface-2);
}

.page-hero__media--screenshot img {
  object-position: left center;
}

.page-hero__media--team img {
  object-fit: contain;
  object-position: center 45%;
  background: var(--surface-2);
  min-height: 0;
}

.page-hero__media--team {
  align-self: center;
  aspect-ratio: 1.43;
}

.page-hero__media--career-sites {
  align-self: center;
  aspect-ratio: 16 / 9;
}

.page-hero__media--career-sites img {
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.page-hero__media--early-career img {
  object-position: center 48%;
}

.page-hero__media--wind img {
  object-position: center 45%;
}

.page-hero__media--skills-kayak,
.page-hero__media--skills-desk {
  justify-self: center;
  width: 100%;
  aspect-ratio: 1448 / 1086;
}

.page-hero__media--skills-desk,
.page-hero__media--contact-office {
  align-self: stretch;
  margin: 0;
}

.page-hero__media--skills-kayak img,
.page-hero__media--skills-desk img,
.page-hero__media--contact-office img {
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.page-hero__media--skills-desk {
  aspect-ratio: auto;
}

.page-section {
  padding: 54px 0;
  border-top: 1px solid var(--line);
}

.page-section__head {
  display: grid;
  grid-template-columns: minmax(160px, 0.24fr) 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.page-section__head p {
  margin-bottom: 0;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-section__head h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

.page-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.page-card {
  padding: 24px;
}

.page-card h3,
.role-deep-card h3,
.roadmap-card h3,
.skill-deep-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

.page-card p,
.role-deep-card p,
.roadmap-card p,
.skill-deep-card p,
.page-card li,
.role-deep-card li,
.skill-deep-card li {
  color: var(--muted);
}

.role-stack {
  display: grid;
  gap: 18px;
}

.role-deep-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 28px;
}

.role-meta {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.role-deep-card ul,
.skill-deep-card ul,
.roadmap-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.role-deep-card li + li,
.skill-deep-card li + li {
  margin-top: 8px;
}

.builder-transfer {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  align-items: start;
}

.builder-transfer img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.roadmap {
  position: relative;
  display: grid;
  gap: 16px;
}

.roadmap::before {
  content: "";
  position: absolute;
  left: 170px;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: linear-gradient(180deg, var(--blue), var(--cyan), var(--green));
}

.roadmap-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 34px;
  padding: 24px;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  left: 163px;
  top: 30px;
  width: 17px;
  height: 17px;
  border: 4px solid var(--surface);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.roadmap-card time {
  color: var(--blue);
  font-weight: 950;
}

.roadmap-card[data-life="true"]::before {
  background: var(--green);
  box-shadow: 0 0 0 1px var(--green);
}

.skill-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.skill-deep-card {
  padding: 26px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.skill-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--surface-2);
  color: var(--blue);
  font-size: 12px;
  font-weight: 820;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 28px;
}

.about-layout img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.about-hero .page-hero__copy {
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 179, 255, 0.22), transparent 24rem),
    linear-gradient(135deg, #06101c, #102338);
}

.about-hero__media img {
  object-position: center 42%;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-timeline article {
  position: relative;
  min-height: 238px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(15, 47, 82, 0.06);
}

.about-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--blue) 11%, transparent);
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
}

.about-timeline h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.12;
}

.about-timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.about-life-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: 22px;
  align-items: start;
}

.about-life-photo {
  height: clamp(240px, 24vw, 340px);
  min-height: 0;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
}

.about-life-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 4px);
}

.about-life-copy {
  display: grid;
  gap: 14px;
  align-content: stretch;
}

.about-life-copy .page-card {
  display: grid;
  align-content: center;
}

.about-interest-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.about-interest-list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(15, 47, 82, 0.05);
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.about-photo-grid figure {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow);
}

.about-photo-grid figure:first-child {
  grid-column: auto;
  min-height: 0;
}

.about-photo-grid figure:nth-child(5) {
  grid-column: auto;
}

.about-photo-grid img {
  width: 100%;
  height: clamp(155px, 13vw, 230px);
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--radius) - 4px);
  background: #071522;
}

.about-photo-grid figcaption {
  position: static;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(6, 16, 28, 0.82);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.43fr);
  gap: 18px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--surface-2);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.contact-form textarea {
  min-height: 164px;
  padding-top: 12px;
  resize: vertical;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  border-color: var(--blue);
  outline: 3px solid color-mix(in srgb, var(--blue) 22%, transparent);
  outline-offset: 1px;
}

.contact-form__message,
.contact-form__submit,
.contact-form__status {
  grid-column: 1 / -1;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__submit {
  min-height: 48px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.contact-form__status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.contact-form__status[data-state="success"] {
  color: var(--green);
}

.contact-form__status[data-state="error"] {
  color: #c42d2d;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(4, auto) 1fr;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 0 36px;
  background: var(--dark);
  color: rgba(247, 251, 255, 0.82);
  font-size: 13px;
}

.site-footer a,
.site-footer span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer .copyright {
  justify-content: flex-end;
  color: rgba(247, 251, 255, 0.58);
}

@media (max-width: 1420px) {
  .hero-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .hero-panel--life {
    grid-column: 1 / -1;
    min-height: clamp(700px, 68vw, 880px);
  }

  .hero-panel--life .panel-inner {
    max-width: 48%;
    padding-right: clamp(24px, 2.2vw, 42px);
  }

  .hero-panel--life .panel-copy {
    max-width: 520px;
  }

  .hero-collage {
    width: min(48%, 680px);
  }

  .domain-list {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .career-list section {
    grid-template-columns: 170px 1fr;
  }

  .about-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-principles {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  }
}

@media (max-width: 1120px) {
  .topbar {
    grid-template-columns: auto 1fr;
  }

  .topnav {
    display: none;
  }

  .top-actions {
    justify-content: flex-end;
  }

  .hero-dashboard {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-panel--life {
    min-height: auto;
  }

  .hero-panel--life .panel-inner {
    max-width: none;
    padding-right: 22px;
  }

  .hero-panel--life .panel-copy {
    max-width: 720px;
  }

  .hero-collage {
    position: relative;
    top: auto;
    right: auto;
    width: min(760px, calc(100% - 44px));
    margin: 0 22px 26px auto;
  }

  .domain-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 22px;
  }

  .domain-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .domain-list span {
    justify-content: flex-start;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .product-grid,
  .live-product-grid,
  .impact-grid,
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid--overview {
    grid-template-columns: 1fr;
  }

  .show-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .show-strip strong {
    grid-column: 1 / -1;
  }

  .section-heading,
  .contact-section,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .about-principles,
  .about-life-layout {
    grid-template-columns: 1fr;
  }

  .about-interest-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
  }

  .site-footer .copyright {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --wide: min(100vw - 28px, 1840px);
  }

  body {
    font-size: 15px;
  }

  .topbar {
    min-height: 62px;
    padding: 0 14px;
    gap: 12px;
  }

  .brand {
    font-size: 22px;
  }

  .theme-toggle {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }

  .theme-toggle span[data-theme-label],
  .download-button .button-text {
    display: none;
  }

  .download-button {
    width: 44px;
    padding: 0;
  }

  .panel-inner {
    padding: 26px 18px;
  }

  .hero-panel h1,
  .hero-panel h2 {
    font-size: 36px;
  }

  .metric-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-board article:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .metric-board article:nth-child(2n) {
    border-right: 0;
  }

  .metric-board article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .tech-row {
    grid-template-columns: repeat(2, auto);
  }

  .hero-collage {
    width: calc(100% - 28px);
    margin: 0 auto 24px;
  }

  .domain-list,
  .product-grid,
  .live-product-grid,
  .impact-grid,
  .skills-grid,
  .value-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    width: var(--wide);
    padding-top: 22px;
  }

  .career-list {
    padding-left: 22px;
  }

  .career-list::before {
    left: 6px;
  }

  .career-list section {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .career-list section::before {
    left: -23px;
  }

  .show-strip {
    grid-template-columns: 1fr;
  }

  .about-timeline,
  .about-photo-grid,
  .about-interest-list {
    grid-template-columns: 1fr;
  }

  .about-timeline article,
  .about-life-photo,
  .about-photo-grid figure,
  .about-photo-grid figure:first-child {
    min-height: auto;
  }

  .about-photo-grid figure:first-child,
  .about-photo-grid figure:nth-child(5) {
    grid-column: auto;
  }

  .about-life-photo,
  .about-photo-grid figure {
    aspect-ratio: auto;
  }

  .about-life-photo {
    height: clamp(220px, 62vw, 340px);
  }

  .about-photo-grid img {
    height: clamp(170px, 54vw, 260px);
  }

  .product-card--row,
  .product-card--architecture.product-card--learning {
    grid-template-columns: 1fr;
  }

  .product-grid--overview .product-head {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .product-grid--overview .status-badge {
    grid-column: 2;
    justify-self: start;
  }

  .product-card--row .product-shot {
    min-height: 150px;
  }

  .impact-section,
  .timeline-section,
  .skills-section,
  .contact-section,
  .overview-actions,
  .page-section {
    padding: 46px 0;
  }

  .overview-link-grid,
  .page-card-grid,
  .skill-matrix,
  .contact-page-grid,
  .contact-form-layout,
  .about-layout,
  .builder-transfer,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-section__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .role-deep-card,
  .roadmap-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .roadmap::before,
  .roadmap-card::before {
    display: none;
  }

  .detail-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .detail-timeline h3,
  .detail-timeline p {
    grid-column: auto;
  }

  .contact-section h2 {
    font-size: 40px;
  }
}

@media print {
  :root,
  :root[data-theme="dark"] {
    color-scheme: light;
    --bg: #fff;
    --surface: #fff;
    --surface-2: #fff;
    --ink: #111;
    --muted: #444;
    --line: #d5d5d5;
    --dark: #fff;
  }

  body {
    background: #fff;
    font-size: 10pt;
  }

  .topbar,
  .hero-collage,
  .person-gallery,
  .product-shot,
  .download-button,
  .theme-toggle {
    display: none !important;
  }

  .hero-dashboard,
  .dashboard-grid,
  .impact-grid,
  .skills-grid,
  .contact-section,
  .site-footer {
    display: block;
  }

  .hero-panel,
  .hero-panel--career,
  .hero-panel--builder,
  .hero-panel--life,
  .site-footer {
    background: #fff !important;
    color: #111 !important;
  }

  .panel-backdrop,
  .hero-panel::after {
    display: none !important;
  }

  .panel-inner,
  .impact-section,
  .timeline-section,
  .skills-section,
  .contact-section,
  .dashboard-grid {
    width: auto;
    margin: 0;
    padding: 10px 0;
  }

  .domain-strip {
    display: none;
  }

  .hero-panel h1,
  .hero-panel h2,
  .section-heading h2,
  .contact-section h2 {
    font-size: 20pt;
    line-height: 1.05;
  }

  .metric-board,
  .product-grid,
  .live-product-grid,
  .career-list,
  .detail-timeline {
    display: block;
    border: 0;
  }

  .metric-board article,
  .product-card,
  .live-product-card,
  .impact-grid article,
  .skills-grid article,
  .detail-timeline article,
  .contact-card {
    break-inside: avoid;
    display: block;
    box-shadow: none;
    border: 1px solid #ddd;
    margin: 0 0 8px;
    padding: 8px;
  }
}
