:root {
  --blue: #0039e8;
  --electric: #164fff;
  --ink: #090909;
  --paper: #fdfdfd;
  --mist: #f1f2f4;
  --line: #d9dce2;
  --muted: #5e626c;
  --max: 1240px;
}

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

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

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 4%, rgba(0, 57, 232, 0.055), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(217, 220, 226, 0.85);
  background: rgba(253, 253, 253, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand .brand-mark { width: 31px; height: 31px; }
.brand .brand-wordmark { width: 142px; height: auto; }

nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: #373a42;
  font-size: 0.9rem;
  font-weight: 650;
}

nav a, .text-link, .card-link, .site-footer a {
  transition: color 160ms ease, opacity 160ms ease;
}

nav a:hover, nav a:focus-visible, .text-link:hover, .text-link:focus-visible {
  color: var(--blue);
}

.intro {
  display: block;
  padding-block: clamp(48px, 6vw, 84px) clamp(42px, 5vw, 64px);
}

.intro-copy { max-width: 1120px; }

.intro-installer-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.intro-installer-link span {
  transition: transform 160ms ease;
}

.intro-installer-link:hover span,
.intro-installer-link:focus-visible span {
  transform: translateX(4px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow img {
  width: 20px;
  height: 20px;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7.2vw, 7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 720;
}

.intro h1 {
  max-width: 1120px;
  text-wrap: balance;
}

.lede {
  max-width: 900px;
  margin-bottom: 0;
  color: #3f4249;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.shelf-section { padding-bottom: clamp(72px, 10vw, 128px); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading .eyebrow { margin-bottom: 8px; }

.section-heading h2, .page-header h1, .content-intro h2, .free-callout h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.text-link, .card-link {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 750;
}

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

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 14px 14px 24px;
  overflow: hidden;
  border: 1px solid rgba(222, 225, 232, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 18px 50px rgba(0, 20, 80, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04), 0 30px 76px rgba(0, 20, 80, 0.13);
}

.product-visual {
  position: relative;
  height: clamp(230px, 27vw, 340px);
  display: grid;
  place-items: center;
  padding: clamp(26px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 21px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(239, 241, 246, 0.92)),
    #f4f5f7;
  box-shadow: inset 0 1px 0 white;
}

.product-visual::before {
  position: absolute;
  width: 65%;
  height: 65%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 79, 255, 0.09), transparent 68%);
  content: "";
}

.product-visual::after {
  position: absolute;
  inset: auto 12% 9% 12%;
  height: 14%;
  border-radius: 50%;
  background: rgba(5, 10, 22, 0.16);
  filter: blur(22px);
  content: "";
}

.product-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 20px 35px rgba(0, 0, 0, 0.21);
  transition: transform 260ms ease;
}

.product-visual picture {
  position: absolute;
  z-index: 1;
  inset: clamp(26px, 4vw, 52px);
  display: grid;
  width: auto;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 10px;
  place-items: center;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.14), 0 20px 35px rgba(0, 0, 0, 0.21);
}

.product-visual picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-card:hover .product-visual img { transform: scale(1.018); }

.synth-visual-stack {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  height: 100%;
}

.synth-visual-stack img {
  position: absolute;
  width: 72%;
  max-height: 72%;
  object-fit: contain;
}

.synth-visual-stack img:nth-child(1) {
  top: 2%;
  left: 0;
  transform: rotate(-4deg);
}

.synth-visual-stack img:nth-child(2) {
  top: 14%;
  right: 0;
  transform: rotate(4deg);
}

.synth-visual-stack img:nth-child(3) {
  right: 13%;
  bottom: 0;
  transform: rotate(-1deg);
}

.product-card:hover .synth-visual-stack img:nth-child(1) { transform: rotate(-4deg) translateY(-3px); }
.product-card:hover .synth-visual-stack img:nth-child(2) { transform: rotate(4deg) translateY(-3px); }
.product-card:hover .synth-visual-stack img:nth-child(3) { transform: rotate(-1deg) translateY(-3px); }

.chef-console-product {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 10px;
  border: 1px solid #77756f;
  border-radius: 13px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.3), transparent 18% 78%, rgba(255,255,255,0.13)),
    linear-gradient(135deg, #cbc8be, #77746f 48%, #aaa69e);
  color: #24211e;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
  transform: rotate(-1deg);
}

.chef-product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 5px 8px 10px;
  font-family: "Oswald", sans-serif;
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chef-product-top small {
  font-size: 0.42em;
  letter-spacing: 0.16em;
}

.chef-product-screen {
  min-height: 172px;
  padding: clamp(17px, 3vw, 30px);
  border: 2px solid #282a2a;
  border-radius: 7px;
  background:
    linear-gradient(rgba(92, 103, 104, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 103, 104, 0.11) 1px, transparent 1px),
    #0b1112;
  background-size: 16px 16px;
  box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.84);
}

.chef-product-status {
  color: #b9ff57;
  font-family: "Oswald", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.chef-product-screen > p {
  margin: 19px 0;
  color: #edf8e6;
  font-family: "Oswald", sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.55rem);
  line-height: 1.34;
}

.chef-product-screen > div {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.chef-product-screen > div span {
  padding: 6px 8px;
  border: 1px solid #4e5959;
  border-radius: 4px;
  color: #b7c2bf;
  font-family: "Oswald", sans-serif;
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chef-product-screen > div span:first-child {
  border-color: #9f7910;
  background: rgba(255, 198, 26, 0.1);
  color: #ffc61a;
}

.chef-product-foot {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 9px 4px 1px;
  font-family: "Oswald", sans-serif;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.product-number {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #8a8e97;
  backdrop-filter: blur(12px);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.72rem;
}

.product-main { min-width: 0; padding: 28px 14px 0; }

.product-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.product-title-row h3 {
  margin-bottom: 16px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.035em;
}

.product-title-row span {
  flex: 0 1 190px;
  text-align: right;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-main p {
  max-width: 34ch;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.5;
}

.card-link { align-self: flex-start; margin: auto 14px 0; }
.card-link:hover, .card-link:focus-visible { opacity: 0.65; }
.card-link-muted { color: #8a8e97; }

.free-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(72px, 10vw, 120px);
  padding: clamp(38px, 6vw, 70px);
  background: linear-gradient(125deg, #002cc2, var(--electric) 70%, #3168ff);
  color: white;
  box-shadow: 0 30px 80px rgba(0, 57, 232, 0.18);
}

.free-callout .eyebrow { color: white; opacity: 0.72; }
.free-callout p:not(.eyebrow) { max-width: 600px; margin: 22px 0 0; line-height: 1.6; opacity: 0.84; }

.maker-note {
  display: grid;
  grid-template-columns: minmax(0, 190px) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  margin-bottom: clamp(72px, 10vw, 120px);
  padding-top: clamp(48px, 7vw, 84px);
  border-top: 1px solid var(--ink);
}

.maker-note h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.6vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.maker-note p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-width: 218px;
  padding: 16px 18px;
  border: 1px solid currentColor;
  font-size: 0.9rem;
  font-weight: 750;
}

.button-light { background: white; color: var(--blue); }

.page-header {
  padding-block: clamp(64px, 9vw, 120px) clamp(42px, 6vw, 72px);
  border-bottom: 1px solid var(--ink);
}

.page-header .eyebrow { margin-bottom: 14px; }
.page-header h1 { max-width: 960px; }
.page-header p:last-child { max-width: 720px; margin: 26px 0 0; color: var(--muted); font-size: 1.12rem; line-height: 1.6; }

.directory-grid {
  padding-bottom: clamp(72px, 10vw, 120px);
}

.directory-row {
  display: grid;
  grid-template-columns: 48px minmax(260px, 1.3fr) minmax(180px, 0.7fr) auto;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.directory-row:first-child { border-top-color: var(--ink); }
.directory-number { color: #9397a0; font-family: "SFMono-Regular", Consolas, monospace; font-size: 0.75rem; }
.directory-row h2 { margin-bottom: 8px; font-size: clamp(1.5rem, 3vw, 2.25rem); letter-spacing: -0.035em; }
.directory-row p, .directory-row > span:not(.directory-number) { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.55; }
.directory-row > span:not(.directory-number) { color: var(--blue); font-weight: 750; text-transform: uppercase; }

.content-section { padding-block: clamp(58px, 8vw, 100px); }
.content-intro { max-width: 760px; margin-bottom: 58px; }
.content-intro p { color: var(--muted); line-height: 1.65; }
.content-intro.spaced { margin-top: 72px; }
.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.content-grid.compact-top { margin-top: 28px; }

.installer-section {
  display: grid;
  gap: 28px;
}

.installer-download-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border: 2px solid var(--blue);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 20%, rgba(22, 79, 255, 0.15), transparent 18rem),
    white;
  box-shadow: 0 24px 70px rgba(0, 57, 232, 0.11);
}

.installer-download-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -0.045em;
}

.installer-download-card > div > p:last-child {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.installer-download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 250px;
  white-space: nowrap;
}

.installer-unavailable {
  max-width: 360px;
  margin: 0;
}

.installer-facts .eyebrow {
  margin-bottom: 10px;
}

.info-card {
  padding: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(0, 20, 80, 0.035);
}

.info-card h2, .info-card h3 { margin-bottom: 14px; font-size: 1.35rem; letter-spacing: -0.025em; }
.info-card p, .info-card li { color: var(--muted); line-height: 1.65; }
.info-card .text-link { display: inline-block; margin-top: 12px; }

.product-roles {
  border-top: 1px solid var(--ink);
}

.product-roles article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding: clamp(30px, 5vw, 54px) 0;
  border-bottom: 1px solid var(--line);
}

.product-roles article > span {
  color: #9397a0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.75rem;
}

.product-roles .eyebrow { margin-bottom: 8px; }
.product-roles h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 3.4rem); letter-spacing: -0.045em; }
.product-roles p:not(.eyebrow) { max-width: 680px; color: var(--muted); line-height: 1.65; }

.legal-copy { max-width: 820px; }
.legal-copy h2 { margin: 2.2em 0 0.55em; font-size: 1.45rem; }
.legal-copy p, .legal-copy li { color: #40434b; line-height: 1.72; }
.legal-copy a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.product-breadcrumb {
  display: flex;
  gap: 10px;
  padding-top: 34px;
  color: var(--muted);
  font-size: 0.8rem;
}

.product-breadcrumb a { color: var(--blue); }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 92px);
}

.product-detail-copy .eyebrow { margin-bottom: 16px; }

.product-detail-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.product-detail-title h1 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.3rem);
}

.product-detail-title > span {
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-role {
  margin: 24px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 650;
  line-height: 1.4;
}

.product-detail-summary {
  max-width: 62ch;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.product-facts {
  margin: 36px 0 0;
  border-top: 1px solid var(--ink);
}

.product-facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.product-facts dt {
  color: #8a8e97;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-facts dd {
  margin: 0;
  font-size: 0.88rem;
}

.family-note {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--blue);
  background: #f1f4ff;
}

.family-note .eyebrow { margin-bottom: 8px; }
.family-note p:last-child { margin: 0; color: #404968; line-height: 1.55; }

.handover-link,
.support-route {
  display: table;
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 750;
}

.support-route {
  margin-top: 12px;
  color: var(--muted);
}

.product-detail-visual {
  display: grid;
  min-height: 520px;
  place-items: center;
  padding: clamp(34px, 5vw, 72px);
  border: 1px solid #e1e4ea;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0,57,232,0.09), transparent 42%),
    linear-gradient(145deg, #fff, #f0f2f6);
  box-shadow: 0 28px 80px rgba(0, 20, 80, 0.1);
}

.product-detail-visual > img,
.product-detail-visual > picture > img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 10px;
  box-shadow: 0 22px 48px rgba(0,0,0,0.24);
}

.product-detail-visual > picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.synth-visual-stack-large {
  width: min(100%, 720px);
  min-height: 430px;
}

.synth-visual-stack-large img {
  max-height: 67%;
}

.companion-feature {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, 0.8fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
  padding-block: clamp(58px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.companion-feature h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.companion-feature > div:last-child > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}

.companion-feature .text-link {
  display: inline-block;
  margin-top: 8px;
}

.chef-console-product-large {
  max-width: 640px;
  padding: 15px;
  border-radius: 18px;
}

.chef-console-product-large .chef-product-screen {
  min-height: 300px;
  padding: clamp(30px, 4vw, 52px);
  background-size: 22px 22px;
}

.chef-console-product-large .chef-product-screen > p {
  margin: 34px 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.product-next {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 26px 78px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.notice {
  margin-bottom: 32px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue);
  background: #f1f4ff;
  color: #303b66;
  line-height: 1.6;
}

.site-footer { padding-block: 58px; background: var(--ink); color: white; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: clamp(34px, 6vw, 90px); }
.footer-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-lockup .footer-mark { width: 38px; height: 38px; }
.footer-lockup .footer-wordmark { width: 140px; height: auto; }
.footer-brand p { max-width: 330px; margin: 24px 0 0; color: #aeb0b5; font-size: 0.8rem; line-height: 1.65; }
.footer-label { margin-bottom: 18px; color: #787b83; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.site-footer a, .site-footer div > p:not(.footer-label) { display: block; margin: 0 0 10px; color: #d7d8da; font-size: 0.78rem; line-height: 1.5; }
.site-footer a:hover, .site-footer a:focus-visible { color: white; }

:focus-visible { outline: 3px solid #ffcf40; outline-offset: 3px; }

@media (max-width: 1060px) {
  .intro {
    padding-block: 48px 54px;
  }

  .intro-copy,
  .intro h1,
  .lede {
    max-width: none;
  }

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

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

  .product-detail-visual {
    grid-row: 1;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .installer-download-card {
    grid-template-columns: 1fr;
  }

  .installer-download-button {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .product-grid, .content-grid { grid-template-columns: 1fr; }
  .product-visual { height: clamp(260px, 60vw, 420px); }
  .free-callout { grid-template-columns: 1fr; }
  .maker-note { grid-template-columns: 1fr; }
  .directory-row { grid-template-columns: 42px 1fr; }
  .directory-row > span:not(.directory-number), .directory-row .text-link { grid-column: 2; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { min-height: 70px; gap: 14px; }
  .brand { gap: 8px; }
  .brand .brand-mark { width: 27px; height: 27px; }
  .brand .brand-wordmark { width: 96px; }
  nav { gap: 12px; font-size: 0.72rem; }
  nav a:nth-child(3), nav a:nth-child(4) { display: none; }
  h1 { font-size: clamp(3.4rem, 18vw, 5.4rem); }
  .section-heading { align-items: start; }
  .product-card { border-radius: 24px; }
  .product-visual { height: 230px; padding: 28px 22px; border-radius: 16px; }
  .product-visual picture { inset: 28px 22px; }
  .product-title-row { display: block; }
  .product-title-row span { display: block; margin-bottom: 14px; text-align: left; }
  .free-callout { margin-inline: 0; width: 100%; }
  .directory-row { grid-template-columns: 1fr; gap: 10px; }
  .directory-row > span:not(.directory-number), .directory-row .text-link { grid-column: auto; }
  .product-roles article { grid-template-columns: 42px 1fr; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .product-detail {
    padding-top: 36px;
  }

  .product-detail-title {
    display: block;
  }

  .product-detail-title > span {
    display: block;
    margin-top: 12px;
  }

  .product-detail-visual {
    min-height: 310px;
    padding: 26px 18px;
    border-radius: 24px;
  }

  .chef-console-product-large .chef-product-screen {
    min-height: 220px;
    padding: 24px 18px;
  }

  .product-next {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Interactive portfolio vending machine */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.vending-stage {
  width: min(calc(100% - 48px), 1460px);
  min-width: 0;
  display: grid;
  grid-template-columns: 180px minmax(600px, 1fr) 250px;
  gap: 18px;
  align-items: start;
  padding-bottom: clamp(72px, 9vw, 116px);
}

.vending-stage > * {
  min-width: 0;
}

.vending-filters,
.vending-inspector {
  position: sticky;
  top: 22px;
  padding: 18px;
  border: 1px solid rgba(217, 220, 226, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(0, 25, 90, 0.06);
}

.vending-panel-label,
.vending-jump > p {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vending-filter-list {
  display: grid;
  gap: 6px;
}

.vending-filter-list button,
.vending-jump button {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #2e3138;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 650;
  text-align: left;
}

.vending-filter-list button {
  padding: 0 12px;
}

.vending-filter-list button:hover,
.vending-filter-list button:focus-visible,
.vending-filter-list button.is-active {
  border-color: rgba(0, 57, 232, 0.12);
  background: #eef3ff;
  color: var(--blue);
}

.vending-ecosystem-link {
  display: grid;
  gap: 9px;
  margin-top: 20px;
  padding: 16px 14px;
  border-top: 1px solid var(--line);
  color: var(--blue);
}

.vending-ecosystem-link span,
.vending-ecosystem-link strong {
  font-size: 0.78rem;
}

.vending-ecosystem-link small {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
}

.vending-machine {
  position: relative;
  overflow: hidden;
  border: 1px solid #001b79;
  border-radius: 26px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.24), transparent 12% 86%, rgba(0, 0, 0, 0.18)),
    var(--blue);
  box-shadow:
    inset 0 0 0 3px rgba(255, 255, 255, 0.13),
    0 26px 64px rgba(0, 26, 100, 0.2);
}

.vending-machine-top {
  position: relative;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 13px 13px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px 15px 5px 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 45%),
    #07112e;
  box-shadow: inset 0 -8px 18px rgba(0, 0, 0, 0.34);
}

.vending-machine-top img {
  width: 132px;
  filter: drop-shadow(0 0 8px rgba(70, 124, 255, 0.34));
}

.vending-status-light {
  position: absolute;
  right: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #67a2ff;
  box-shadow: 0 0 0 3px rgba(103, 162, 255, 0.12), 0 0 10px #67a2ff;
}

.vending-glass {
  position: relative;
  margin: 0 13px;
  padding: 18px 17px 14px;
  overflow: hidden;
  border: 2px solid #101a2b;
  border-radius: 5px 5px 14px 14px;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, 0.17), transparent 8% 90%, rgba(19, 34, 72, 0.08)),
    #f7f4ed;
  box-shadow:
    inset 18px 0 28px rgba(45, 55, 77, 0.08),
    inset -18px 0 28px rgba(45, 55, 77, 0.08),
    inset 0 16px 30px rgba(255, 255, 255, 0.92);
}

.vending-glass::after {
  position: absolute;
  inset: 0 auto 0 4%;
  width: 15%;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.22), transparent);
  content: "";
}

.vending-shelf {
  position: relative;
  z-index: 1;
  margin-bottom: 7px;
}

.vending-shelf[hidden],
.vend-slot[hidden] {
  display: none !important;
}

.vending-shelf h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--blue);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.vending-shelf h3::before,
.vending-shelf h3::after {
  flex: 1;
  height: 1px;
  background: rgba(0, 57, 232, 0.38);
  content: "";
}

.vending-slots {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.vending-slots.is-single-visible .vend-slot:not([hidden]) {
  grid-column: 1 / -1;
  width: calc(50% - 4px);
  justify-self: center;
}

.vending-slots-single .vend-slot {
  grid-column: 1 / -1;
  width: calc(50% - 4px);
  justify-self: center;
}

.vend-slot {
  position: relative;
  min-width: 0;
  min-height: 176px;
  display: grid;
  place-items: center;
  padding: 14px 8px 42px;
  border-radius: 13px 13px 2px 2px;
  transition: background 160ms ease, box-shadow 160ms ease;
}

.vend-slot:hover,
.vend-slot:focus-visible,
.vend-slot.is-selected {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(0, 57, 232, 0.1);
}

.vend-product-icon {
  position: relative;
  z-index: 2;
  width: 112px;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 3px 5px rgba(0, 0, 0, 0.16),
    0 18px 28px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, opacity 180ms ease;
}

.vend-slot:hover .vend-product-icon,
.vend-slot:focus-visible .vend-product-icon {
  transform: translateY(-3px);
}

.vend-pusher {
  position: absolute;
  z-index: 3;
  bottom: 34px;
  left: 50%;
  width: 66px;
  height: 34px;
  border: 4px solid #9b9d9c;
  border-bottom-color: #4d5151;
  border-radius: 50% 50% 42% 42%;
  box-shadow:
    inset 0 0 0 1px #e3e4e1,
    0 4px 4px rgba(0, 0, 0, 0.17);
  transform: translateX(-50%);
  transform-origin: 50% 100%;
}

.vend-slot-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 6px;
  border: 1px solid #c6c4be;
  background: linear-gradient(#fff, #e5e3dd);
  box-shadow: 0 4px 7px rgba(25, 28, 36, 0.12);
  color: #15171b;
  font-family: "Oswald", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vend-slot-label b {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--blue);
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.61rem;
  letter-spacing: 0;
}

.vending-tray {
  position: relative;
  height: 106px;
  display: grid;
  place-items: center;
  gap: 0;
  margin: 13px;
  overflow: hidden;
  border: 2px solid #05080d;
  border-radius: 8px 8px 16px 16px;
  background:
    linear-gradient(180deg, #030408 0 30%, #17191e 31% 70%, #05060a 71%),
    #05060a;
  box-shadow:
    inset 0 8px 24px #000,
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  color: #8f929a;
  font-family: "Oswald", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: box-shadow 180ms ease, color 180ms ease;
}

.vending-tray::before {
  position: absolute;
  inset: 35px 9% 13px;
  border: 1px solid #363a43;
  border-radius: 3px;
  content: "";
}

.vending-tray-arrows {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  color: #777b84;
  font-size: 1.8rem;
  line-height: 0.6;
}

.vending-tray > span:last-child { position: relative; z-index: 1; }

.vending-tray.is-awaiting,
.vending-tray.is-loaded {
  color: #d8e3ff;
  box-shadow: inset 0 8px 24px #000, inset 0 0 26px rgba(0, 57, 232, 0.5);
}

.vending-inspector-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
}

.vending-inspector-icon {
  display: grid;
  min-height: 78px;
  place-items: center;
}

.vending-inspector-icon .vend-product-icon {
  width: 74px;
  border-radius: 25%;
  transform: none;
}

.vending-inspector-name {
  display: flex;
  gap: 8px;
  margin: 0 0 5px;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.vending-inspector-name span {
  color: var(--blue);
  font-weight: 800;
}

.vending-inspector-card p:not(.vending-inspector-name) {
  margin: 0 0 9px;
  color: var(--muted);
  font-size: 0.73rem;
}

.vending-inspector-status {
  display: inline-block;
  padding: 4px 7px;
  border-radius: 6px;
  background: #edf2ff;
  color: var(--blue);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vending-view-button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 11px;
  background: var(--blue);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.vending-jump {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.vending-jump > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.vending-jump button {
  min-width: 0;
  min-height: 38px;
  padding: 0;
  border-color: var(--line);
  text-align: center;
}

.vending-jump button.is-active,
.vending-jump button:hover,
.vending-jump button:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.vending-inspector-help {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  line-height: 1.45;
}

.vend-flight {
  position: fixed !important;
  z-index: 1000 !important;
  margin: 0 !important;
  pointer-events: none;
  will-change: transform;
}

.vend-slot.is-releasing .vend-product-icon {
  opacity: 0.12;
  transform: translateY(10px) scale(0.96);
}

.vend-slot.is-releasing .vend-pusher {
  animation: vend-pusher-release 440ms cubic-bezier(.3,.8,.2,1);
}

@keyframes vend-pusher-release {
  0% { transform: translateX(-50%) rotateX(0deg); }
  48% { transform: translateX(-50%) rotateX(62deg) scaleY(0.75); }
  100% { transform: translateX(-50%) rotateX(0deg); }
}

@media (max-width: 1120px) {
  .vending-stage {
    grid-template-columns: 1fr;
    max-width: 780px;
  }

  .vending-filters {
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .vending-panel-label,
  .vending-ecosystem-link {
    display: none;
  }

  .vending-filter-list {
    width: 100%;
    min-width: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .vending-filter-list::-webkit-scrollbar { display: none; }

  .vending-filter-list button {
    flex: 0 0 auto;
    padding-inline: 16px;
    border-color: var(--line);
    background: white;
  }

  .vending-inspector { display: none; }
}

@media (max-width: 640px) {
  .intro {
    padding-block: 28px 24px;
  }

  .intro h1 {
    max-width: none;
    margin: 0;
    font-size: clamp(2.2rem, 10vw, 2.75rem);
    line-height: 0.98;
    white-space: nowrap;
  }

  .vending-stage {
    width: min(calc(100% - 20px), 520px);
    gap: 12px;
  }

  .vending-filter-list button {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .vending-machine {
    border-radius: 19px;
  }

  .vending-machine-top {
    height: 52px;
    margin: 9px 9px 0;
    border-radius: 11px 11px 4px 4px;
  }

  .vending-machine-top img { width: 112px; }
  .vending-status-light { right: 12px; }

  .vending-glass {
    margin: 0 9px;
    padding: 14px 9px 10px;
    border-radius: 4px 4px 10px 10px;
  }

  .vending-shelf h3 {
    gap: 8px;
    font-size: 0.61rem;
  }

  .vending-slots { gap: 4px; }

  .vend-slot {
    min-height: 146px;
    padding: 11px 3px 36px;
  }

  .vend-product-icon { width: 88px; }

  .vend-pusher {
    bottom: 29px;
    width: 54px;
    height: 28px;
    border-width: 3px;
  }

  .vend-slot-label {
    min-height: 31px;
    gap: 5px;
    padding-inline: 3px;
    font-size: 0.57rem;
  }

  .vend-slot-label b {
    padding: 2px 4px;
    font-size: 0.52rem;
  }

  .vending-tray {
    height: 92px;
    margin: 9px;
  }

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

@media (prefers-reduced-motion: reduce) {
  .vend-slot.is-releasing .vend-pusher { animation: none; }
}

.account-section {
  min-height: 44vh;
}

.account-card {
  max-width: 720px;
}

.account-login form {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.account-login label {
  font-weight: 800;
}

.account-login input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font: inherit;
}

.account-button {
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.account-button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.account-fineprint,
.account-entitlement span {
  color: var(--muted);
}

.account-grid {
  margin-bottom: 24px;
}

.account-entitlement {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  border-top: 1px solid var(--line);
}

.account-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 14px;
  border-top: 1px solid var(--line);
}

.account-download span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.account-download small,
.account-download code {
  overflow-wrap: anywhere;
  color: var(--muted);
}

@media (max-width: 640px) {
  .account-download {
    align-items: stretch;
    flex-direction: column;
  }
}

.account-error {
  border-color: #b42318;
  color: #7a271a;
}

.request-section {
  min-height: 52vh;
}

.request-progress {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  font-weight: 800;
}

.bird-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.bird-card {
  display: grid;
  gap: 8px;
  min-height: 130px;
  padding: 18px 10px;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: white;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.bird-card[aria-pressed="true"] {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 57, 232, 0.14);
}

.request-accessible {
  margin-left: 14px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.turnstile-stage {
  min-height: 66px;
  margin-block: 20px;
}

.request-email {
  max-width: 680px;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: white;
}

.request-email form {
  display: grid;
  gap: 14px;
}

.request-email input[type="email"] {
  min-height: 52px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  font: inherit;
}

.request-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.request-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
}

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

  .request-progress {
    flex-direction: column;
  }
}
