@import url("assets/fonts/fonts.css");
@import url("assets/tokens.css");
:root {
  --paper: var(--color-paper);
  --ink: var(--color-porch-dark);
  --yard: var(--color-night-yard);
  --grey: var(--color-panel-grey);
  --amber: var(--color-porch-amber);
  --rule: rgba(30, 27, 23, 0.24);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
button {
  font: inherit;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.04em;
}
h1 {
  font-size: clamp(3.5rem, 6.8vw, 7.5rem);
}
h2 {
  font-size: clamp(2.6rem, 4.3vw, 5rem);
}
h3 {
  font-size: 2rem;
}
p {
  font-size: 1rem;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}
.skip {
  position: absolute;
  left: -9999px;
  z-index: 20;
  background: var(--paper);
  padding: 12px;
}
.skip:focus {
  left: 12px;
  top: 12px;
}
.preview {
  background: var(--yard);
  color: var(--paper);
  text-align: left;
  font-size: var(--type-caption);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 8px 16px;
}
.preview span {
  margin: 0 10px;
}
.header {
  height: 88px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 clamp(22px, 4vw, 64px);
  position: relative;
  z-index: 10;
  background: var(--paper);
}
.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.logo span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo strong {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.logo small {
  font-size: var(--type-caption);
  letter-spacing: 0.3em;
  margin-top: 6px;
  font-weight: 600;
}
.header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.header nav a {
  text-decoration: none;
  font-size: 0.83rem;
}
.header nav a:hover,
.header nav a[aria-current] {
  text-decoration: underline;
  text-underline-offset: 7px;
}
.header-cta {
  border: 1px solid var(--ink);
  padding: 11px 15px;
  text-decoration: none;
  font-size: var(--type-caption);
  white-space: nowrap;
}
.header-cta span,
.button span,
.text-link span {
  margin-left: 22px;
}
.menu-toggle {
  display: none;
}
.eyebrow,
.card-index {
  font-size: var(--type-caption);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.eyebrow {
  margin-bottom: 24px;
}
.section {
  padding: 110px clamp(22px, 5vw, 80px);
}
.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 53% 47%;
  border-bottom: 1px solid var(--rule);
}
.hero-copy {
  padding: clamp(64px, 9vw, 132px) 8vw 65px clamp(22px, 6vw, 94px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  max-width: 840px;
  margin-bottom: 32px;
}
.hero h1 em {
  font-weight: 400;
}
.lead {
  font-size: 1.17rem;
  max-width: 530px;
  line-height: 1.5;
  color: #3c3832;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 215px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 17px 20px;
  font-size: 0.82rem;
  line-height: 1.2;
}
.button:hover {
  background: var(--yard);
}
.text-link {
  font-size: 0.82rem;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  white-space: nowrap;
}
.text-link:hover {
  border-bottom-width: 2px;
}
.micro {
  font-size: var(--type-caption);
  color: var(--grey);
  margin-top: auto;
  padding-top: 60px;
}
.hero-image {
  position: relative;
  background: #eef3eb;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.image-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--paper);
  font-size: var(--type-caption);
  letter-spacing: 0.16em;
  padding: 13px 22px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 50px;
}
.section-head h2 {
  max-width: 650px;
  margin-bottom: 0;
}
.section-head > p {
  max-width: 375px;
  color: #4d4841;
  margin-bottom: 6px;
}
.all-link {
  display: inline-block;
  margin-top: 36px;
}
.manifesto {
  background: var(--yard);
  color: var(--paper);
  padding: 80px clamp(22px, 6vw, 94px) 90px;
  position: relative;
  overflow: hidden;
}
.manifesto:after {
  content: "";
  position: absolute;
  width: 30%;
  height: 38%;
  background: var(--amber);
  transform: skewX(-22deg);
  top: 34%;
  right: -5%;
  opacity: 0.9;
  pointer-events: none;
}
.manifesto-top {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.manifesto-top span {
  font-size: var(--type-caption);
  letter-spacing: 0.13em;
}
.manifesto h2 {
  max-width: 930px;
  font-size: clamp(3.2rem, 6.4vw, 7rem);
  position: relative;
  z-index: 1;
  margin: 55px 0 80px;
}
.manifesto-bottom {
  border-top: 1px solid rgba(242, 237, 227, 0.3);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: end;
  position: relative;
  z-index: 1;
}
.manifesto-bottom p {
  max-width: 590px;
  font-size: 1.1rem;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: #e0d8c9;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.feature-grid > div {
  padding: 30px 34px 30px 0;
  border-right: 1px solid var(--rule);
  margin-right: 35px;
}
.feature-grid > div:last-child {
  border: 0;
}
.feature-grid span {
  font-size: var(--type-caption);
}
.feature-grid h3 {
  margin: 60px 0 14px;
}
.feature-grid p {
  max-width: 290px;
  color: #4d4841;
}
.closing {
  padding: 95px clamp(22px, 6vw, 94px);
  background: #e8e0d2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.closing h2 {
  max-width: 800px;
}
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 65px clamp(22px, 5vw, 80px) 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
}
.footer-brand {
  text-decoration: none;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}
.footer-brand small {
  display: block;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: var(--type-caption);
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.footer p {
  font-size: var(--type-caption);
  color: #c2bcb1;
  max-width: 320px;
  margin-top: 22px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 13px 45px;
  align-content: start;
  justify-content: end;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.8rem;
}
.copyright {
  grid-column: 1/-1;
  border-top: 1px solid rgba(242, 237, 227, 0.2);
  padding-top: 20px;
  max-width: none !important;
  margin: 0 !important;
}
.page-heading {
  padding: 90px clamp(22px, 6vw, 94px) 85px;
  border-bottom: 1px solid var(--rule);
}
.page-heading h1 {
  max-width: 1000px;
  margin: 0 0 28px;
}
.page-heading > p:last-child {
  max-width: 610px;
  font-size: 1.14rem;
}
.product-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 22px;
}
.product-card {
  text-decoration: none;
  display: block;
  min-width: 0;
}
.card-visual,
.pdp-art {
  position: relative;
  overflow: hidden;
  background: #d9d1c1;
  min-height: 360px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-visual strong,
.pdp-art strong {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  max-width: 65%;
  position: relative;
  z-index: 2;
}
.card-visual:before,
.pdp-art:before {
  content: "";
  position: absolute;
  width: 44%;
  height: 90%;
  right: -6%;
  top: 8%;
  background: var(--amber);
  transform: skewX(-22deg);
  z-index: 0;
}
.visual-skin {
  background: #ded2bd;
}
.visual-mobility {
  background: #cfd1c4;
}
.visual-dental {
  background: #e2d9c8;
}
.visual-daily {
  background: #d6c9b2;
}
.visual-calm {
  background: #cbcbbf;
}
.product-card:hover .card-visual {
  filter: brightness(0.96);
}
.card-meta {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  margin-top: 18px;
  padding-bottom: 9px;
  font-size: var(--type-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-card h3 {
  font-size: 2rem;
  margin: 16px 0 8px;
}
.product-card p {
  font-size: 0.82rem;
  color: #4b463e;
  max-width: 430px;
}
.card-link {
  font-size: var(--type-caption);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}
.card-link span {
  margin-left: 20px;
}
.status-note {
  background: var(--yard);
  color: var(--paper);
  padding: 80px clamp(22px, 6vw, 94px);
}
.status-note h2 {
  max-width: 760px;
}
.status-note p:not(.eyebrow) {
  max-width: 600px;
}
.status-note .text-link {
  display: inline-block;
  margin-top: 22px;
}
.breadcrumbs {
  padding: 20px clamp(22px, 5vw, 80px);
  font-size: var(--type-caption);
}
.breadcrumbs ol {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: var(--grey);
}
.breadcrumbs a {
  text-decoration: none;
}
.pdp-hero {
  display: grid;
  grid-template-columns: 51% 49%;
  min-height: 650px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pdp-art {
  min-height: 650px;
  padding: 45px clamp(22px, 5vw, 80px);
}
.pdp-art:before {
  width: 36%;
  height: 80%;
  top: 15%;
}
.pdp-art strong {
  font-size: clamp(4rem, 7vw, 8rem);
  max-width: 700px;
}
.pdp-art small {
  font-size: var(--type-caption);
  letter-spacing: 0.15em;
}
.pdp-copy {
  padding: 75px clamp(22px, 6vw, 94px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pdp-copy h1 {
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  margin-bottom: 12px;
}
.pdp-tag {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.7rem;
  margin-bottom: 28px;
}
.pdp-copy > p:not(.eyebrow):not(.pdp-tag) {
  max-width: 560px;
}
.status-box {
  margin: 30px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: var(--type-caption);
}
.status-box p {
  grid-column: 1/-1;
  margin: 0;
  color: var(--grey);
  font-size: var(--type-caption);
}
.proof-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}
.proof-section > div:first-child p:last-child {
  max-width: 450px;
}
.proof-table {
  border-top: 1px solid var(--rule);
}
.proof-table > div {
  display: grid;
  grid-template-columns: 40% 60%;
  border-bottom: 1px solid var(--rule);
  gap: 15px;
  padding: 17px 0;
}
.proof-table span {
  font-size: var(--type-caption);
  letter-spacing: 0.1em;
}
.proof-table strong {
  font-size: var(--type-caption);
  font-weight: 500;
}
.question-band {
  padding: 75px clamp(22px, 6vw, 94px);
  background: var(--yard);
  color: var(--paper);
}
.question-band h2 {
  max-width: 950px;
}
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.related .card-visual {
  min-height: 270px;
}
.related .card-visual strong {
  font-size: 2.6rem;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.inspection-card {
  background: var(--yard);
  color: var(--paper);
  padding: 30px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
}
.pool-art {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: auto 0;
  padding: 20px 0;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}
.pool-art:before {
  content: "";
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  right: 5%;
  background: var(--amber);
  transform: skewX(-22deg);
}
.pool-art span {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(242, 237, 227, 0.5);
  padding: 8px;
}
.inspection-card p {
  font-size: var(--type-caption);
}
.why-copy {
  align-self: center;
}
.why-copy p:not(.eyebrow) {
  max-width: 520px;
}
.why-copy .text-link {
  display: inline-block;
  margin-top: 25px;
}
.check-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--rule);
  margin-top: 60px;
}
.check-list > div {
  padding: 24px 24px 0 0;
  margin-right: 20px;
  border-right: 1px solid var(--rule);
}
.check-list > div:last-child {
  border: 0;
}
.check-list b {
  font-size: var(--type-caption);
  font-weight: 400;
}
.check-list h3 {
  margin: 55px 0 16px;
  font-size: 1.7rem;
}
.check-list p {
  font-size: var(--type-caption);
}
.faq-layout {
  display: grid;
  grid-template-columns: 30% 1fr;
}
.faq-layout details {
  border-top: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-layout details:last-child {
  border-bottom: 1px solid var(--rule);
}
.faq-layout summary {
  cursor: pointer;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-layout summary:after {
  content: "+";
  font-family: "IBM Plex Sans", sans-serif;
}
.faq-layout details[open] summary:after {
  content: "−";
}
.faq-layout details p {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: 0.86rem;
}
.terms-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px 8vw;
}
.terms-copy > div {
  border-top: 1px solid var(--rule);
  padding-top: 23px;
}
.terms-copy h2 {
  font-size: 2rem;
}
.terms-copy p {
  max-width: 520px;
}
.home-planned-grid,
.future-grid,
.launch-grid,
.roadmap-grid {
  display: grid;
  gap: 28px;
}
.home-planned-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.future-grid,
.roadmap-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.launch-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 760px;
}
.launch-grid .product-card {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  column-gap: 32px;
  align-items: start;
}
.product-card.status-launch-lead {
  border: 1px solid var(--ink);
  background: #f7f2e9;
  padding: 14px;
}
.product-card.status-planned {
  border-top: 3px solid rgba(30, 27, 23, 0.55);
  padding-top: 12px;
}
.launch-grid .card-visual {
  grid-row: 1 / span 5;
}
.range-stack {
  display: grid;
  gap: 100px;
}
.range-tier + .range-tier {
  border-top: 1px solid var(--rule);
  padding-top: 85px;
}
.roadmap-tier {
  background: #ebe5d9;
  margin: 0 calc(clamp(22px, 5vw, 80px) * -1) -110px;
  padding: 85px clamp(22px, 5vw, 80px) 110px;
}
.product-card.status-candidate .card-visual,
.product-card.status-exploratory .card-visual {
  filter: saturate(0.72);
}
.product-card.status-candidate,
.product-card.status-exploratory {
  border-top: 1px dashed var(--grey);
  padding-top: 12px;
}
.empty-state {
  border: 1px solid var(--rule);
  padding: 30px;
}
.interest-seam {
  padding: 80px clamp(22px, 6vw, 94px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  background: #e8e0d2;
}
.interest-seam h2 {
  max-width: 700px;
}
.interest-seam form {
  align-self: center;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}
.interest-seam label,
.interest-seam form p {
  grid-column: 1 / -1;
  font-size: var(--type-caption);
}
.interest-seam input,
.interest-seam button {
  min-height: 50px;
  border: 1px solid var(--ink);
  padding: 12px 14px;
}
.interest-seam button {
  background: var(--ink);
  color: var(--paper);
}
.interest-seam :disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.not-found {
  min-height: 55vh;
}
.menu-toggle {
  cursor: pointer;
}
@media (max-width: 1100px) {
  .header {
    gap: 22px;
  }
  .header nav {
    gap: 16px;
  }
  .header-cta {
    display: none;
  }
  .hero {
    min-height: 620px;
  }
  .hero-copy {
    padding-right: 40px;
  }
  .related-grid {
    gap: 14px;
  }
  .check-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (max-width: 760px) {
  .preview {
    font-size: var(--type-caption);
  }
  .header {
    height: 72px;
    padding: 0 20px;
  }
  .logo img {
    width: 34px;
    height: 34px;
  }
  .logo strong {
    font-size: 1.1rem;
  }
  .logo small {
    font-size: var(--type-caption);
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    border: 0;
    background: transparent;
    font-size: var(--type-caption);
    text-transform: uppercase;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
  }
  .header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 15px 20px 25px;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 15px 20px rgba(30, 27, 23, 0.1);
    flex-direction: column;
    align-items: stretch;
  }
  .header nav.open {
    display: flex;
  }
  .header nav a {
    padding: 12px 0;
    min-height: 44px;
  }
  .hero {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    padding: 66px 22px 42px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 5rem);
  }
  .lead {
    font-size: 1rem;
  }
  .micro {
    padding-top: 45px;
    margin-bottom: 0;
  }
  .hero-image {
    height: 390px;
  }
  .hero-image img {
    object-position: center;
  }
  .section {
    padding: 70px 22px;
  }
  .section-head {
    display: block;
    margin-bottom: 32px;
  }
  .section-head > p {
    margin-top: 24px;
  }
  .manifesto {
    padding: 65px 22px;
  }
  .manifesto-top span {
    display: none;
  }
  .manifesto h2 {
    font-size: clamp(3rem, 10vw, 5rem);
    margin: 40px 0 65px;
  }
  .manifesto:after {
    width: 58%;
    height: 43%;
    top: 50%;
    right: -20%;
  }
  .manifesto-bottom {
    display: block;
  }
  .manifesto-bottom p {
    font-size: 0.95rem;
  }
  .manifesto-bottom .button {
    margin-top: 20px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid > div {
    margin: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 20px 0;
  }
  .feature-grid h3 {
    margin: 22px 0 10px;
  }
  .closing {
    padding: 70px 22px;
  }
  .footer {
    padding: 55px 22px 25px;
    display: block;
  }
  .footer-links {
    justify-content: start;
    margin: 40px 0;
  }
  .footer .copyright {
    margin-top: 40px !important;
  }
  .page-heading {
    padding: 65px 22px;
  }
  .page-heading h1 {
    font-size: clamp(3.1rem, 11vw, 5rem);
  }
  .product-grid {
    gap: 35px 14px;
  }
  .card-visual {
    min-height: 260px;
    padding: 15px;
  }
  .card-visual strong {
    font-size: 2.2rem;
  }
  .card-meta span:last-child {
    display: none;
  }
  .product-card h3 {
    font-size: 1.5rem;
  }
  .product-card p {
    font-size: var(--type-caption);
  }
  .status-note {
    padding: 65px 22px;
  }
  .breadcrumbs {
    padding: 16px 22px;
  }
  .pdp-hero {
    display: block;
  }
  .pdp-art {
    min-height: 450px;
    padding: 25px;
  }
  .pdp-art strong {
    font-size: clamp(4rem, 15vw, 6rem);
  }
  .pdp-copy {
    padding: 60px 22px;
  }
  .pdp-copy h1 {
    font-size: 3.8rem;
  }
  .proof-section {
    display: block;
  }
  .proof-table {
    margin-top: 40px;
  }
  .question-band {
    padding: 65px 22px;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related .card-visual {
    min-height: 210px;
  }
  .related .card-visual strong {
    font-size: 2rem;
  }
  .why-grid {
    display: block;
  }
  .inspection-card {
    min-height: 430px;
  }
  .why-copy {
    padding-top: 55px;
  }
  .check-list {
    grid-template-columns: 1fr 1fr;
  }
  .check-list h3 {
    margin-top: 25px;
  }
  .faq-layout {
    display: block;
  }
  .faq-layout > p {
    margin-bottom: 30px;
  }
  .terms-copy {
    display: block;
  }
  .terms-copy > div {
    margin-bottom: 50px;
  }
  .home-planned-grid,
  .launch-grid,
  .interest-seam {
    grid-template-columns: 1fr;
  }
  .launch-grid .product-card {
    display: block;
  }
  .range-stack {
    gap: 70px;
  }
  .range-tier + .range-tier {
    padding-top: 65px;
  }
  .roadmap-tier {
    margin: 0 -22px -70px;
    padding: 65px 22px 70px;
  }
  .interest-seam {
    padding: 65px 22px;
  }
}
@media (max-width: 430px) {
  .product-grid,
  .related-grid,
  .future-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .product-card .card-visual {
    min-height: 330px;
  }
  .related .card-visual {
    min-height: 270px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
  .interest-seam form {
    grid-template-columns: 1fr;
  }
  .interest-seam label,
  .interest-seam form p {
    grid-column: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}

/* The current positioning uses amber as a restrained home/night cue. */
.card-visual:before,
.pdp-art:before {
  width: 30%;
  height: 35%;
  top: 40%;
  right: 0;
}
.pool-status {
  position: absolute;
  right: 5%;
  top: 52%;
  z-index: 3;
  max-width: 25%;
  font-size: var(--type-caption);
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--ink);
}
.pool-status b {
  font-weight: 700;
  font-size: var(--type-caption);
  letter-spacing: 0;
}
.manifesto-artifact {
  position: absolute;
  right: 3%;
  top: 60%;
  z-index: 2;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-size: var(--type-caption);
  letter-spacing: 0.08em;
  transform: rotate(-2deg);
}
.manifesto-artifact strong {
  font-size: var(--type-caption);
  letter-spacing: 0;
}
.pool-art:before {
  width: 30%;
  right: 5%;
}

/* Retire the inspection-beam geometry under the current positioning. */
.manifesto:after {
  width: min(37vw, 490px);
  height: min(37vw, 490px);
  top: 18%;
  right: -8%;
  background: none;
  border: 1px solid rgba(226, 164, 72, 0.65);
  border-radius: 50%;
  transform: none;
}
.manifesto-artifact {
  color: var(--amber);
  transform: none;
}
.pool-art:before {
  display: none;
}
.pool-art span:first-child {
  color: var(--amber);
}
@media (max-width: 760px) {
  .pool-status {
    right: 5%;
    max-width: 25%;
  }
  .manifesto-artifact {
    right: 2%;
    top: 65%;
  }
}

.footer :focus-visible,
.manifesto :focus-visible,
.status-note :focus-visible,
.question-band :focus-visible,
.inspection-card :focus-visible {
  outline-color: var(--paper);
}
/* One jar and field system holds five distinct family dog portraits together. */
.card-visual {
  display: block;
  padding: 0;
  aspect-ratio: 1 / 1.05;
  min-height: 0;
  background: var(--yard);
}
.card-visual::before { display: none; }
.card-visual img,
.pdp-gallery-main img,
.pdp-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concept-stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 11px 15px;
  color: var(--ink);
  background: var(--paper);
  font-size: var(--type-caption);
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.pdp-hero { min-height: 0; grid-template-columns: minmax(0, 54%) minmax(0, 46%); }
.pdp-gallery { min-width: 0; padding: 0 0 18px; background: var(--paper); }
.pdp-gallery-main { position: relative; aspect-ratio: 4 / 4.5; overflow: hidden; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 8px; }
.pdp-thumb { display: block; min-width: 0; text-align: left; padding: 0; border: 2px solid transparent; background: transparent; color: var(--ink); cursor: pointer; }
.pdp-thumb[aria-pressed="true"] { border-color: var(--ink); }
.pdp-thumb img { aspect-ratio: 1.3 / 1; height: auto; }
.pdp-gallery-main img[data-fit="contain"],
.pdp-thumb img { object-fit: contain; background: #eaf1eb; }
.pdp-thumb span { display: block; padding: 6px 8px; font-size: var(--type-caption); }
.photo-disclosure { padding: 4px 16px 0; margin: 0; font-size: var(--type-caption); color: var(--ink); }
.shop-image-note {
  max-width: 760px;
  margin: 0 0 -45px;
  color: var(--grey);
  font-size: var(--type-caption);
}
.related .card-visual { min-height: 0; }
@media (max-width: 760px) {
  .pdp-hero { grid-template-columns: 1fr; }
  .pdp-gallery-main { aspect-ratio: 4 / 4.3; }
  .product-card .card-visual,
  .related .card-visual { min-height: 0; }
}

/* Consent is a small piece of the field-guide system, not a modal takeover. */
.privacy-choice {
  position: fixed;
  z-index: 100;
  left: clamp(16px, 3vw, 42px);
  bottom: clamp(16px, 3vw, 42px);
  width: min(460px, calc(100vw - 32px));
  padding: 24px;
  border: 1px solid var(--ink);
  border-top: 7px solid var(--amber);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(24, 28, 24, .16);
}
.privacy-choice h2 {
  max-width: 15ch;
  margin: 8px 0 12px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: .98;
}
.privacy-choice > p:not(.eyebrow) {
  margin: 0;
  line-height: 1.5;
}
.privacy-choice-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.privacy-choice .button { border: 1px solid var(--ink); }
.privacy-choice-secondary,
.privacy-manage {
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.privacy-choice-secondary:focus-visible,
.privacy-manage:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
.privacy-manage {
  justify-self: start;
  color: var(--paper);
  font-size: var(--type-caption);
}
@media (max-width: 520px) {
  .privacy-choice { padding: 20px; box-shadow: 7px 7px 0 rgba(24, 28, 24, .16); }
  .privacy-choice-actions { align-items: stretch; flex-direction: column; }
  .privacy-choice-secondary { align-self: flex-start; }
}
