@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  ascent-override: 90.2%;
  descent-override: 22.43%;
  line-gap-override: 0%;
  size-adjust: 107.64%;
}

@font-face {
  font-family: "IBM Plex Mono Fallback";
  src: local("Menlo"), local("Consolas");
  ascent-override: 76.16%;
  descent-override: 20.43%;
  line-gap-override: 0%;
  size-adjust: 100.66%;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/inter/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono/ibm-plex-mono-400.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono/ibm-plex-mono-700.woff2") format("woff2");
}

:root {
  --bg: #f4f1ea;
  --paper: #fbfaf6;
  --ink: #171613;
  --muted: #6f6a62;
  --faint: rgba(18, 17, 15, 0.08);
  --accent: #d85f2b;
  --accent2: #2f5f7f;
  --accent3: #d8cfb8;
  --black: #12110f;
  --max: 1080px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --radius: 28px;
  --radius-sm: 20px;
  --header-offset: 88px;
  --section-space: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: var(--header-offset);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.5;
  letter-spacing: -0.003em;
}

body.error-page {
  padding-top: 0;
}

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

.wrap {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 18px 0;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-inline: 4px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  height: 34px;
  width: auto;
  flex: 0 0 auto;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.018em;
}

.brand-text > span {
  font-family: var(--mono);
  font-size: 0.60rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,253,248,0.78);
  backdrop-filter: blur(12px);
  color: var(--ink);
  border: 1px solid rgba(18,17,15,0.08);
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(18,17,15,0.08);
}

.topbar-cta:hover { transform: translateY(-2px); }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topbar-menu {
  position: relative;
  display: block;
}

.topbar-menu summary {
  list-style: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 28px rgba(18,17,15,0.18);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.topbar-menu summary::-webkit-details-marker {
  display: none;
}

.topbar-menu .icon {
  width: 18px;
  height: 14px;
  position: relative;
  display: block;
}

.topbar-menu .icon::before,
.topbar-menu .icon::after,
.topbar-menu .icon span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.topbar-menu .icon::before { top: 0; }
.topbar-menu .icon span { top: 6px; }
.topbar-menu .icon::after { top: 12px; }

.topbar-menu[open] .icon::before {
  top: 6px;
  transform: rotate(45deg);
}

.topbar-menu[open] .icon span {
  opacity: 0;
}

.topbar-menu[open] .icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

.menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(320px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,253,248,0.94);
  border: 1px solid rgba(18,17,15,0.08);
  box-shadow: 0 20px 44px rgba(18,17,15,0.16);
  backdrop-filter: blur(14px);
  transform-origin: top right;
  animation: menuIn 0.16s ease both;
}

@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.menu-panel a {
  display: block;
  padding: 13px 12px;
  border-radius: 14px;
  color: var(--ink);
  font-weight: 650;
}

.menu-panel a:hover {
  background: rgba(18,17,15,0.05);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 8px 0 var(--section-space);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
.hero-copy-col {
  max-width: 880px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,253,248,0.72);
  border: 1px solid rgba(18,17,15,0.08);
  box-shadow: 0 8px 24px rgba(18,17,15,0.06);
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
}

.kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(235,94,40,0.12);
}

a.kicker:hover {
  transform: translateY(-1px);
  color: var(--ink);
}

.kicker--avail::before {
  background: #28b463;
  box-shadow: 0 0 0 5px rgba(40,180,99,0.12);
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 12vw, 7.2rem);
  line-height: 0.93;
  letter-spacing: -0.063em;
  font-weight: 830;
  max-width: 920px;
  text-wrap: balance;
}

.ticker {
  display: inline-grid;
  position: relative;
  min-height: 1.08em;
  min-width: min(760px, 100%);
  color: var(--accent);
  vertical-align: bottom;
}

.ticker span {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(0.38em);
  animation: wordSwap 18s infinite cubic-bezier(.25,.9,.15,1);
  animation-fill-mode: both;
  will-change: transform, opacity;
}

.ticker span:nth-child(2) { animation-delay: 3s; }
.ticker span:nth-child(3) { animation-delay: 6s; }
.ticker span:nth-child(4) { animation-delay: 9s; }
.ticker span:nth-child(5) { animation-delay: 12s; }
.ticker span:nth-child(6) { animation-delay: 15s; }

@keyframes wordSwap {
  0% { opacity: 0; transform: translateY(0.38em); }
  5% { opacity: 1; transform: translateY(0); }
  11.67% { opacity: 1; transform: translateY(0); }
  16.67% { opacity: 0; transform: translateY(-0.38em); }
  100% { opacity: 0; transform: translateY(-0.38em); }
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  max-width: 360px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 760;
  transition: transform 0.18s ease, opacity 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 14px 30px rgba(18,17,15,0.14);
}

.btn-secondary {
  background: rgba(255,253,248,0.72);
  color: var(--ink);
  border: 1px solid rgba(18,17,15,0.08);
}

.hero-notes {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 10px;
  max-width: 390px;
}

.note-card {
  position: relative;
  width: 100%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,253,248,0.92);
  box-shadow: 0 10px 28px rgba(18,17,15,0.06);
  border: 1px solid rgba(18,17,15,0.07);
  backdrop-filter: blur(8px);
}

.note-card small {
  display: block;
  margin-bottom: 10px;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.note-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.12;
  letter-spacing: -0.016em;
}

.note-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}


.profile-card {
  overflow: hidden;
  padding: 0;
  background: var(--paper);
}

.profile-card img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.profile-card-content {
  padding: 16px 18px 18px;
}

.profile-card-content small {
  margin-bottom: 8px;
}

.profile-card-content strong {
  font-size: 1.05rem;
}

.note-a { transform: rotate(-0.8deg); }
.note-b { transform: rotate(0.8deg); margin-left: clamp(10px, 5vw, 42px); }
.note-c { transform: rotate(-0.4deg); margin-left: clamp(4px, 2vw, 18px); }

.engagement-map .intro-row {
  margin-bottom: 4px;
}

.engagement-map {
  display: grid;
  gap: 22px;
}

.engagement-path {
  display: grid;
  gap: 18px;
}

.path-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.path-step {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.path-step-marker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.path-step-index {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.path-step-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
}

.path-step-card {
  height: 100%;
  border-radius: 22px;
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  gap: 14px;
  align-content: start;
}

.path-step--entry .path-step-card {
  background: var(--ink);
  color: var(--paper);
}

.path-step--mid .path-step-card,
.path-step--partner .path-step-card {
  background: rgba(251,250,246, 0.78);
  color: var(--ink);
  border: 1px solid rgba(23, 22, 19, 0.055);
}

.path-step-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3.8vw, 2.15rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  font-weight: 800;
  text-wrap: balance;
}

.path-step-card > p {
  margin: 0;
  max-width: 38ch;
  line-height: 1.55;
}

.path-step--entry .path-step-card > p {
  color: rgba(251, 250, 246, 0.72);
}

.path-step--mid .path-step-card > p,
.path-step--partner .path-step-card > p {
  color: var(--muted);
}

.path-step-scope {
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 16px;
  display: grid;
  gap: 6px;
}

.path-step--entry .path-step-scope {
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.1);
}

.path-step--mid .path-step-scope,
.path-step--partner .path-step-scope {
  background: rgba(216, 95, 43, 0.06);
  border: 1px solid rgba(216, 95, 43, 0.12);
}

.path-step-scope strong {
  font-size: 0.96rem;
  line-height: 1.22;
  letter-spacing: -0.012em;
}

.path-step-scope p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.path-step--entry .path-step-scope p {
  color: rgba(251, 250, 246, 0.62);
}

.path-step--mid .path-step-scope p,
.path-step--partner .path-step-scope p {
  color: var(--muted);
}

.section {
  scroll-margin-top: calc(var(--header-offset) + 12px);
  padding-block: var(--section-space);
}

.intro-row {
  max-width: 800px;
  margin-bottom: 26px;
}

.intro-row h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.026em;
  font-weight: 790;
  text-wrap: balance;
}

.intro-row p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-panel {
  background: rgba(251,250,246,0.76);
  border: 1px solid rgba(23,22,19,0.06);
  border-radius: 22px;
  overflow: hidden;
}

.faq-panel summary {
  cursor: pointer;
  list-style: none;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 16px;
  align-items: center;
  font-weight: 760;
  letter-spacing: -0.016em;
}

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

.faq-panel summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(23,22,19,0.07);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 1rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.faq-panel[open] summary::after {
  content: "−";
  background: rgba(216,95,43,0.16);
  color: var(--ink);
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.98rem;
}
.work-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
}

.work-board-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.work-board-card {
  position: relative;
  background: rgba(251,250,246,0.76);
  border: 1px solid rgba(23,22,19,0.06);
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
}

.work-board-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent);
  opacity: 0.9;
}

.work-board-card small {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.work-board-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.016em;
}

.work-board-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.workflow-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(23,22,19,0.045);
  border: 1px solid rgba(23,22,19,0.05);
}
.workflow-tool {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  background: rgba(251,250,246,0.72);
  border-radius: 18px;
  padding: 16px;
}

.workflow-tool span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}


.workflow-strip-clean {
  padding: 18px;
  gap: 12px;
}

.workflow-strip-clean .workflow-tool {
  min-height: 176px;
  align-content: space-between;
}

.workflow-tool h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  line-height: 1.12;
  letter-spacing: -0.016em;
}

.workflow-strip-clean .workflow-tool span {
  margin-bottom: 28px;
}

.workflow-tool p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.work-note {
  margin-top: 18px;
  color: var(--muted);
  max-width: 720px;
  font-size: 0.82rem;
  line-height: 1.5;
  opacity: 0.8;
}

.work-note::before {
  content: "*";
  margin-right: 6px;
  color: var(--accent);
}
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.stack-list {
  display: grid;
  gap: 12px;
}

.section--stack .intro-row h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
}

.section--stack .intro-row p { margin-top: 14px; }

.stack-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,253,248,0.68);
}

.stack-item small {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.stack-item h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  letter-spacing: -0.016em;
}

.stack-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.stack-note {
  margin-top: 18px;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  opacity: 0.82;
}

.contact-recommendation {
  max-width: 300px;
  margin-top: auto;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,253,248,0.08);
  border: 1px solid rgba(255,253,248,0.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
  display: grid;
  gap: 10px;
  transform: rotate(-0.8deg);
}

.contact-recommendation-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,253,248,0.46);
}

.contact-recommendation blockquote {
  margin: 0;
  color: rgba(255,253,248,0.78);
  font-size: 0.84rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.contact-recommendation footer {
  display: grid;
  gap: 2px;
}

.contact-recommendation strong {
  color: var(--paper);
  font-size: 0.88rem;
  letter-spacing: -0.012em;
}

.contact-recommendation footer span {
  color: rgba(255,253,248,0.48);
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.footer-zone {
  scroll-margin-top: calc(var(--header-offset) + 12px);
  margin-top: var(--section-space);
  background: var(--black);
  color: var(--paper);
  display: grid;
  position: relative;
  overflow: hidden;
}

.footer-brand-mark {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(50vw, 439px);
  height: auto;
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  padding: clamp(70px, 10vw, 120px) 0 0;
  display: grid;
  gap: clamp(54px, 9vw, 92px);
  position: relative;
  z-index: 1;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.contact-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.contact-lead h2 {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 8vw, 6rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
  text-wrap: balance;
}

.contact-lead p {
  margin: 0;
  max-width: 640px;
  color: rgba(255,253,248,0.74);
  position: relative;
  z-index: 1;
  font-size: 1.02rem;
  line-height: 1.55;
}

.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  margin-bottom: 28px;
  max-width: 360px;
  position: relative;
  z-index: 1;
}

.contact-box .btn-primary {
  background: var(--accent);
  color: var(--paper);
  display: inline-flex;
  width: fit-content;
  min-height: 52px;
  padding-inline: 22px;
  box-shadow: 0 16px 40px rgba(216,95,43,0.32);
}

.contact-box .btn-primary:hover {
  box-shadow: 0 20px 48px rgba(216,95,43,0.4);
}

.contact-box .btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255,253,248,0.22);
  display: inline-flex;
  width: fit-content;
}

.contact-box .btn-secondary:hover {
  background: rgba(255,253,248,0.06);
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-self: start;
  width: 100%;
  position: relative;
  z-index: 1;
}

.contact-channels {
  display: grid;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact-channel:hover {
  transform: translateY(-2px);
}

.contact-channel--primary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255,253,248,0.9);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}

.contact-channel--primary:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.34);
}

.contact-channel--secondary {
  background: rgba(255,253,248,0.08);
  border: 1px solid rgba(255,253,248,0.24);
}

.contact-channel--secondary:hover {
  background: rgba(255,253,248,0.12);
  border-color: rgba(255,253,248,0.34);
}

.contact-channel-main {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-channel-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.contact-channel--primary .contact-channel-label {
  color: var(--muted);
}

.contact-channel--secondary .contact-channel-label {
  color: rgba(255,253,248,0.52);
}

.contact-channel strong {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  letter-spacing: -0.012em;
  line-height: 1.2;
  word-break: break-word;
}

.contact-channel--primary strong {
  color: var(--ink);
}

.contact-channel--secondary strong {
  color: var(--paper);
}

.contact-channel-go {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-channel--primary .contact-channel-go {
  background: var(--ink);
  color: var(--paper);
}

.contact-channel--secondary .contact-channel-go {
  background: rgba(255,253,248,0.12);
  color: var(--paper);
  border: 1px solid rgba(255,253,248,0.16);
}

.contact-prompt {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,253,248,0.035);
  border: 1px solid rgba(255,253,248,0.08);
  display: grid;
  gap: 10px;
}

.contact-prompt-label {
  display: block;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,253,248,0.46);
}

.contact-prompt ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.contact-prompt li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,253,248,0.72);
  font-size: 0.94rem;
  line-height: 1.4;
}

.contact-prompt li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(216,95,43,0.12);
}

.contact-meta {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.contact-list {
  display: grid;
  gap: 20px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  color: rgba(255,253,248,0.74);
}

.contact-row span:first-child {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255,253,248,0.46);
}

.contact-row strong,
.contact-row a {
  color: var(--paper);
  font-size: 0.98rem;
}

.footer-lastline {
  padding-top: 24px;
  padding-bottom: 16px;
  color: rgba(255,253,248,0.48);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  position: relative;
  z-index: 1;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .ticker span {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .ticker span:first-child {
    opacity: 1;
  }
}


@media (min-width: 760px) {
  :root {
    --section-space: 96px;
  }

  .path-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
    position: relative;
    padding-top: 30px;
  }

  .path-steps::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 17px;
    right: calc((100% - 75px) / 3);
    height: 1px;
    background: linear-gradient(
      90deg,
      var(--ink) 0%,
      rgba(216, 95, 43, 0.55) 52%,
      rgba(23, 22, 19, 0.18) 100%
    );
  }

  .path-step {
    grid-template-rows: auto 1fr;
  }

  .path-step-marker {
    position: relative;
    padding-left: 2px;
  }

  .path-step-marker::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(216, 95, 43, 0.12);
  }

  .path-step--entry .path-step-marker::before {
    background: var(--ink);
    box-shadow: 0 0 0 6px rgba(23, 22, 19, 0.08);
  }

.wrap { width: min(var(--max), calc(100% - 44px)); }

  .hero { padding: 12px 0 var(--section-space); }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: end;
  }

  .hero-actions {
    grid-template-columns: auto auto;
    max-width: none;
    justify-content: start;
  }

  .hero-notes {
    max-width: 380px;
  }

  .note-card {
    width: 100%;
  }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.faq-panel {
  background: rgba(251,250,246,0.76);
  border: 1px solid rgba(23,22,19,0.06);
  border-radius: 22px;
  overflow: hidden;
}

.faq-panel summary {
  cursor: pointer;
  list-style: none;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 32px;
  gap: 16px;
  align-items: center;
  font-weight: 760;
  letter-spacing: -0.016em;
}

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

.faq-panel summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(23,22,19,0.07);
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 1rem;
  transition: transform 0.18s ease, background 0.18s ease;
}

.faq-panel[open] summary::after {
  content: "−";
  background: rgba(216,95,43,0.16);
  color: var(--ink);
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.98rem;
}
.work-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 980px;
}

.work-board-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.work-board-card {
  position: relative;
  background: rgba(251,250,246,0.76);
  border: 1px solid rgba(23,22,19,0.06);
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
}

.work-board-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--accent);
  opacity: 0.9;
}

.work-board-card small {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.work-board-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.12;
  letter-spacing: -0.016em;
}

.work-board-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.workflow-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(23,22,19,0.045);
  border: 1px solid rgba(23,22,19,0.05);
}
.workflow-tool {
  min-height: 112px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  background: rgba(251,250,246,0.72);
  border-radius: 18px;
  padding: 16px;
}

.workflow-tool span {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}


.workflow-strip-clean {
  padding: 18px;
  gap: 12px;
}

.workflow-strip-clean .workflow-tool {
  min-height: 176px;
  align-content: space-between;
}

.workflow-tool h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  line-height: 1.12;
  letter-spacing: -0.016em;
}

.workflow-strip-clean .workflow-tool span {
  margin-bottom: 28px;
}

.workflow-tool p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.work-note {
  margin-top: 18px;
  max-width: 720px;
  font-size: 0.82rem;
}
.split {
    grid-template-columns: 0.88fr 1.12fr;
    gap: 30px;
  }

  #faq .intro-row {
    margin-bottom: 0;
  }

  .stack-item {
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 20px;
  }

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

  .contact-box {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: stretch;
  }

  .contact-actions {
    grid-template-columns: auto auto;
    max-width: none;
    justify-content: start;
  }

  .contact-row {
    grid-template-columns: 104px 1fr;
    gap: 12px;
  }
}

@media (min-width: 980px) {
  .workflow-strip-clean {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-notes {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 72px;
    --section-space: 44px;
  }

  .topbar {
    padding: 14px 0;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    height: 28px;
  }

  .brand-text strong {
    font-size: 0.88rem;
  }

  .brand-text > span {
    font-size: 0.46rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 720px) {
  .btn,
  .contact-box .btn-primary,
  .contact-box .btn-secondary {
    min-height: 0;
    min-width: 28px;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.224px;
    width: fit-content;
  }

  .topbar-cta {
    white-space: nowrap;
  }

  .topbar-menu summary {
    width: 36px;
    height: 36px;
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    max-width: none;
  }

  .menu-panel a {
    min-height: 0;
    padding: 8px 15px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.224px;
  }

  .contact-channel-go {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .hero-notes {
    max-width: none;
    width: 100%;
    margin-inline: 0;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-notes .note-card {
    width: 87%;
  }

  .note-card:not(.profile-card) {
    padding: 14px;
    border-radius: 18px;
  }

  .note-card:not(.profile-card) small {
    margin-bottom: 6px;
    font-size: 0.65rem;
  }

  .note-card:not(.profile-card) strong {
    margin-bottom: 4px;
    font-size: 0.95rem;
  }

  .note-card:not(.profile-card) p {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .profile-card {
    padding: 0;
    border-radius: 22px;
  }

  .profile-card img {
    width: 100%;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  .profile-card-content {
    padding: 16px 18px 18px;
  }

  .profile-card-content small {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .profile-card-content strong {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  .profile-card-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .note-a {
    transform: rotate(-0.8deg);
  }

  .note-b {
    transform: rotate(0.8deg);
  }

  .note-c {
    transform: rotate(-0.4deg);
  }

  .workflow-strip.workflow-strip-clean {
    width: 87%;
    padding: 12px;
    gap: 8px;
    border-radius: 18px;
  }

  .workflow-strip-clean .workflow-tool {
    min-height: 0;
    padding: 14px;
    gap: 10px;
    border-radius: 16px;
    align-content: start;
  }

  .workflow-strip-clean .workflow-tool span {
    margin-bottom: 0;
    font-size: 0.65rem;
    padding: 5px 9px;
  }

  .workflow-tool h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .workflow-tool p {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .path-steps {
    gap: 18px;
  }

  .path-step {
    width: 87%;
    gap: 8px;
  }

  .path-step-card {
    padding: 14px;
    gap: 10px;
    border-radius: 18px;
  }

  .path-step-card h3 {
    font-size: 0.95rem;
    line-height: 1.2;
  }

  .path-step-card > p {
    font-size: 0.875rem;
    line-height: 1.45;
    max-width: none;
  }

  .path-step-scope {
    margin-top: 0;
    padding: 12px 14px;
    border-radius: 14px;
    gap: 4px;
  }

  .path-step-scope strong {
    font-size: 0.875rem;
  }

  .path-step-scope p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .path-step-index,
  .path-step-label {
    font-size: 0.65rem;
  }

  .stack-list {
    gap: 10px;
  }

  .stack-item {
    width: 87%;
    padding: 14px;
    gap: 6px;
    border-radius: 18px;
  }

  .stack-item small {
    font-size: 0.65rem;
  }

  .stack-item h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    line-height: 1.2;
  }

  .stack-item p {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .work-note {
    width: 87%;
    margin: 14px 0 0;
    font-size: 0.8rem;
  }

  .contact-list {
    gap: 14px;
  }

  .contact-row strong,
  .contact-row a {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .contact-recommendation {
    width: 87%;
    max-width: none;
    margin-top: 0;
    padding: 14px;
    border-radius: 16px;
    transform: rotate(-0.6deg);
  }

  .contact-recommendation blockquote {
    font-size: 0.8rem;
    line-height: 1.42;
  }
}

.error-page {
  min-height: 100vh;
  padding: 0;
  display: grid;
  place-items: center;
}

.error-shell {
  width: min(560px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(28px, 6vw, 44px);
  padding: 24px 0;
}

.error-brand {
  justify-content: center;
}

.error-brand .brand-text {
  text-align: left;
}

.error-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
}

.error-code {
  margin: 0;
  font-size: clamp(5rem, 24vw, 11rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 830;
  color: var(--ink);
}

.error-title {
  margin: clamp(14px, 3vw, 20px) 0 0;
  font-size: clamp(1.45rem, 4.5vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 760;
  text-wrap: balance;
}

.error-copy {
  margin: clamp(14px, 3vw, 18px) auto 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: clamp(0.98rem, 2.4vw, 1.14rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.error-actions {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: clamp(22px, 4vw, 32px);
}

.error-actions .btn {
  width: min(100%, 300px);
  min-height: 54px;
  padding-inline: 24px;
  font-size: 1.02rem;
}

@media (max-width: 720px) {
  .error-shell {
    width: min(100%, calc(100% - 32px));
    gap: 24px;
    padding: 20px 0;
  }

  .error-brand {
    flex-direction: column;
    gap: 10px;
  }

  .error-brand .brand-text {
    text-align: center;
    justify-items: center;
  }

  .error-brand .brand-mark {
    height: 30px;
  }

  .error-brand .brand-text strong {
    font-size: 0.92rem;
  }

  .error-brand .brand-text > span {
    font-size: 0.52rem;
    letter-spacing: 0.11em;
  }

  .error-code {
    font-size: clamp(4.25rem, 30vw, 7.5rem);
  }

  .error-title {
    font-size: clamp(1.25rem, 6.5vw, 1.75rem);
  }

  .error-copy {
    max-width: 28ch;
    font-size: 0.95rem;
  }

  .error-actions {
    margin-top: 20px;
  }

  .error-actions .btn {
    width: 100%;
    min-height: 50px;
    font-size: 0.98rem;
  }
}
