:root {
  color-scheme: light;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --ink: #1d2422;
  --muted: #65706b;
  --line: #d8d4cc;
  --forest: #31584a;
  --copper: #a8663f;
  --mist: #e7ece7;
  --shadow: 0 18px 55px rgba(29, 36, 34, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px clamp(20px, 4vw, 64px);
  background: rgba(247, 244, 239, 0.86);
  border-bottom: 1px solid rgba(216, 212, 204, 0.72);
  backdrop-filter: blur(18px);
}

.site-header:not(.dashboard-header) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.site-header:not(.dashboard-header) .brand-cluster {
  justify-self: start;
}

.site-header:not(.dashboard-header) > .nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.site-header-actions {
  grid-column: 3;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  min-width: 0;
}

.site-header:not(.dashboard-header) > .site-language {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.brand-cluster,
.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand-cluster {
  gap: clamp(18px, 3vw, 42px);
  min-width: 0;
}

.brand {
  gap: 10px;
  min-width: 0;
  font-size: clamp(0.9rem, 1.5vw, 1.18rem);
  font-weight: 680;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--forest);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.brand-icon rect {
  fill: rgba(49, 88, 74, 0.1);
}

.arc-logo {
  display: block;
  width: 49px;
  height: 49px;
  flex: 0 0 auto;
}

.nav {
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.9rem;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--ink);
}

.site-language {
  margin-left: 4px;
}

.site-language select {
  min-height: 28px;
  appearance: none;
  border: 0;
  border-radius: 0;
  padding: 2px 0;
  background: transparent;
  color: var(--forest);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 720;
  cursor: pointer;
}

.site-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-content: center;
  gap: 5px;
  border: 1px solid rgba(49, 88, 74, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--forest);
  cursor: pointer;
}

.site-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-nav-toggle:focus-visible {
  outline: 3px solid rgba(49, 88, 74, 0.28);
  outline-offset: 3px;
}

.account-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  box-shadow: none;
  cursor: pointer;
}

.site-header > .account-chip {
  margin-left: auto;
}

.account-chip.is-avatar-only .account-copy {
  display: none;
}

.account-chip:hover {
  color: var(--forest);
  background: transparent;
}

.account-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  margin-left: 0;
  border: 1px solid rgba(49, 88, 74, 0.2);
  border-radius: 50%;
  background: var(--forest);
  color: #ffffff;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.account-logout:hover {
  border-color: rgba(168, 102, 63, 0.36);
  background: #ffffff;
  color: var(--forest);
}

.account-logout svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.account-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #78977f;
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 780;
}

.account-avatar.has-image {
  color: transparent;
}

.account-copy {
  display: grid;
  min-width: 0;
  line-height: 1.12;
}

.account-copy strong,
.account-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-copy strong {
  max-width: 250px;
  font-size: 0.92rem;
  font-weight: 780;
}

.account-copy small {
  max-width: 250px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 560;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: 118px clamp(20px, 5vw, 72px) 64px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(247, 244, 239, 0.92) 0%, rgba(247, 244, 239, 0.58) 42%, rgba(247, 244, 239, 0) 74%),
    var(--paper);
}

.subpage-hero,
.subpage-section {
  padding-top: 132px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
  padding: 0 14px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 720;
}

h3 {
  font-size: 1.08rem;
  font-weight: 720;
}

.hero-copy {
  max-width: 660px;
  margin: 26px 0 0;
  color: #3f4944;
  font-size: clamp(1.05rem, 1.55vw, 1.28rem);
}

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

.render-panel {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: clamp(520px, 68vw, 760px);
}

.hero-render {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  margin: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-render img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 680;
  transition:
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button.primary:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.46);
}

.button.secondary:hover {
  background: #ffffff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 760;
}

.hero-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-top: 28px;
}

.hero-links .text-link {
  margin-top: 0;
}

.text-link.newsletter-open {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.newsletter-dialog {
  width: min(calc(100vw - 40px), 560px);
  padding: clamp(26px, 4vw, 42px);
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 72px rgba(22, 31, 27, 0.24);
}

.newsletter-dialog::backdrop {
  background: rgba(23, 32, 29, 0.38);
}

.newsletter-close-form {
  position: absolute;
  top: 14px;
  right: 14px;
  margin: 0;
}

.newsletter-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.newsletter-dialog-copy h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
}

.newsletter-dialog-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.newsletter-disclaimer {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.newsletter-form {
  width: min(100%, 520px);
  margin-top: 28px;
}

.newsletter-form label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--forest);
  font-weight: 760;
}

.newsletter-row {
  display: flex;
  gap: 10px;
}

.newsletter-row input {
  min-width: 0;
  flex: 1;
  height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

.newsletter-row input:focus {
  outline: 2px solid rgba(51, 92, 72, 0.25);
  border-color: var(--forest);
}

.newsletter-row button {
  height: 46px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: #ffffff;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
}

.newsletter-row button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.newsletter-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 46px;
}

.section-button {
  padding: 0 26px;
}

.section,
.section-band {
  padding: clamp(74px, 10vw, 136px) clamp(20px, 4vw, 64px);
}

.section.subpage-section {
  padding-top: clamp(132px, 14vw, 168px);
}

.section-band {
  background: var(--surface);
}

.subpage-hero.section-band {
  padding-top: 132px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid,
.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.intro-grid p:not(.eyebrow),
.readiness-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading.compact {
  max-width: 650px;
}

.bub-hero-art {
  margin: 0;
  overflow: hidden;
  background: #e4d5b6;
}

.bub-hero-art img {
  display: block;
  width: 100%;
  height: auto;
}

.bub-intro-side > p {
  margin: 0;
}

.bub-hero.section-band {
  background: #e4d5b6;
}

.launch-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.launch-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(42px, 8vw, 112px);
  align-items: center;
}

.launch-art {
  margin: 0;
  overflow: hidden;
  background: #f3eadc;
  box-shadow: 0 18px 55px rgba(29, 36, 34, 0.1);
}

.launch-art img {
  display: block;
  width: 100%;
  height: auto;
}

.launch-copy {
  max-width: 570px;
}

.launch-copy h2 {
  max-width: 560px;
}

.launch-copy > p:not(.eyebrow) {
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.component {
  min-height: 220px;
  padding: 28px;
  background: var(--paper);
}

.component-index {
  display: block;
  margin-bottom: 52px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 760;
}

.component p,
.timeline p {
  margin: 12px 0 0;
  color: var(--muted);
}

.readiness {
  background: var(--mist);
}

.readiness-copy p {
  margin-top: 24px;
}

.status-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 70px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.86);
}

.status-row span {
  color: var(--muted);
}

.status-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.foundation {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0)),
    var(--paper);
}

.foundation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.foundation-copy {
  max-width: 760px;
}

.foundation-copy p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.foundation-copy .example-note {
  max-width: 640px;
  margin-top: 42px;
  padding-left: 18px;
  border-left: 3px solid rgba(168, 102, 63, 0.62);
  color: #4f5b55;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.foundation-visual {
  display: grid;
  gap: 18px;
}

.mcu-viewer {
  width: 100%;
  min-height: clamp(300px, 38vw, 460px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.24) 58%),
    #ece8df;
  box-shadow: var(--shadow);
}

.foundation-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.foundation-stack article {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.foundation-stack p {
  margin: 10px 0 0;
  color: var(--muted);
}

.gateway {
  background: #eef2ed;
}

.gateway-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.gateway-copy {
  display: grid;
  gap: 22px;
}

.gateway-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.gateway-amethyst {
  margin: clamp(18px, 3vw, 34px) 0 0;
  overflow: hidden;
  background: #eef2ed;
}

.gateway-amethyst img {
  display: block;
  width: 100%;
  height: auto;
}

.shop {
  background: #f5f7f1;
}

.storefront-hero {
  background: var(--surface);
}

.storefront-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.82fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.storefront-hero-copy {
  display: grid;
  gap: 22px;
}

.storefront-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.shop-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.45fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.shop-heading p[data-shopify-status] {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.shop-product {
  display: grid;
  grid-template-rows: minmax(240px, 0.76fr) 1fr;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(29, 36, 34, 0.09);
}

.shop-product-media {
  display: grid;
  place-items: center;
  min-height: 240px;
  margin: 0;
  background: var(--mist);
}

.shop-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 300px;
  object-fit: contain;
  padding: 28px;
}

.shop-product-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
}

.shop-product-body p {
  margin: 12px 0 0;
  color: var(--muted);
}

.shop-product-purchase {
  display: grid;
  gap: 14px;
}

.shop-product-purchase span {
  color: var(--forest);
  font-size: 1.08rem;
  font-weight: 760;
}

.shop-holding {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 150px clamp(20px, 5vw, 72px) 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(111, 143, 124, 0.16), transparent 32%),
    linear-gradient(135deg, #fffaf3 0%, #f4eadc 52%, #eaf1ec 100%);
}

.shop-holding-card {
  width: min(920px, 100%);
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid rgba(49, 88, 74, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.shop-holding-card h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.shop-holding-card p:not(.eyebrow) {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.shop-holding-card .hero-actions {
  margin-top: 34px;
}

.button:disabled {
  cursor: not-allowed;
  border-color: var(--line);
  background: var(--line);
  color: var(--muted);
}

.storefront-hero {
  background: var(--surface);
}

.storefront-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.storefront-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.storefront-hero-media {
  min-height: clamp(420px, 48vw, 620px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.storefront-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 58% 50%;
}

.commerce-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0)),
    var(--paper);
}

.commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.commerce-copy {
  position: sticky;
  top: 112px;
}

.commerce-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
}

.commerce-status {
  max-width: 560px;
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 3px solid var(--forest);
  background: rgba(255, 255, 255, 0.7);
  color: #4f5b55;
  font-weight: 650;
}

.purchase-module {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.purchase-media {
  display: grid;
  place-items: center;
  min-height: clamp(300px, 34vw, 420px);
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.42) 54%),
    var(--mist);
}

.purchase-media img {
  display: block;
  width: min(72%, 360px);
  max-height: 360px;
  object-fit: contain;
}

.purchase-body {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 34px);
}

.purchase-kicker {
  margin: 0 0 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-body h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.purchase-body p:not(.purchase-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}

.purchase-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.purchase-meta div {
  min-height: 86px;
  padding: 16px;
  background: #fbfaf7;
}

.purchase-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.purchase-meta dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 760;
}

.variant-control {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 680;
}

.variant-control[hidden] {
  display: none;
}

.variant-control select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  padding: 0 12px;
}

.quantity-control {
  display: grid;
  grid-template-columns: 46px 68px 46px;
  width: max-content;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
}

.quantity-control button,
.quantity-control input {
  min-height: 46px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  text-align: center;
}

.quantity-control button:last-child {
  border-right: 0;
}

.quantity-control input {
  appearance: textfield;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  appearance: none;
}

.purchase-button {
  width: 100%;
}

.purchase-assurances {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  list-style: none;
}

.purchase-assurances li {
  padding-left: 16px;
  border-left: 2px solid rgba(49, 88, 74, 0.4);
}

.product-detail {
  background: #eef2ed;
}

.detail-grid,
.trust-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.detail-grid article,
.trust-list article {
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.82);
}

.detail-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 760;
}

.detail-grid p,
.trust-list p,
.investor-panel p {
  margin: 12px 0 0;
  color: var(--muted);
}

.trust-section {
  background: var(--paper);
}

.trust-grid,
.investor-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

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

.trust-list article {
  min-height: 180px;
}

.investor-section {
  background: var(--surface);
}

.investor-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 12px 36px rgba(29, 36, 34, 0.08);
}

.investor-panel p {
  margin-top: 0;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}

.readiness-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.readiness-metrics div {
  min-height: 92px;
  padding: 16px;
  background: var(--surface);
}

.readiness-metrics strong,
.readiness-metrics span {
  display: block;
}

.readiness-metrics strong {
  color: var(--forest);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.readiness-metrics span {
  margin-top: 8px;
  font-weight: 760;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.timeline article {
  min-height: 240px;
  padding-top: 24px;
  border-top: 1px solid var(--ink);
}

.timeline .blog-entry {
  min-height: 0;
}

.blog-entry figure {
  width: 100%;
  aspect-ratio: 1.28;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
}

.blog-entry img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-entry h3 {
  margin-top: 0;
}

.blog-section {
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(54px, 7vw, 88px);
}

.blog-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: stretch;
}

.blog-feature.is-reversed {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.blog-copy h2 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.3vw, 3.9rem);
  line-height: 1;
  letter-spacing: 0;
}

.blog-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.blog-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 18px;
}

.blog-visual {
  width: 100%;
  height: clamp(260px, 30vw, 390px);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.blog-visual.raw-edge {
  align-self: stretch;
  height: auto;
  min-height: clamp(520px, 58vw, 720px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.blog-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-visual.bench img {
  object-position: 50% 44%;
}

.blog-visual.bench {
  height: clamp(520px, 58vw, 720px);
}

.blog-visual.raw-edge.bench {
  height: auto;
}

.blog-visual.raw-edge img {
  height: 100%;
  object-fit: contain;
}

.blog-visual.raw-right img {
  object-position: right center;
}

.blog-visual.raw-left img {
  object-position: left center;
}

.blog-visual.raw-left {
  align-self: center;
  min-height: 0;
  aspect-ratio: 1878 / 1896;
}

.blog-visual.floating {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(300px, 34vw, 440px);
  padding: clamp(18px, 4vw, 52px);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.blog-visual.contain {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 52px);
}

.blog-visual.raw-edge.contain {
  padding: 0;
}

.blog-visual.contain img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.blog-visual.raw-edge.contain img {
  height: 100%;
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  font-weight: 760;
}

.footer {
  padding: 32px clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.about-page {
  min-height: 100vh;
}

.about-hero {
  padding: 150px clamp(20px, 4vw, 64px) 88px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.about-intro {
  max-width: 750px;
}

.about-intro h1 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(3rem, 6.5vw, 6.8rem);
  font-weight: 620;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.about-intro p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-intro .about-lead {
  color: var(--ink);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.about-intro .button {
  margin-top: 18px;
}

.founder-portrait {
  margin: 0;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.founder-portrait figcaption {
  display: grid;
  gap: 2px;
  padding: 20px 22px;
  color: #ffffff;
}

.founder-portrait strong {
  font-size: 1rem;
}

.founder-portrait span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.about-crane {
  padding: clamp(28px, 5vw, 72px) clamp(20px, 4vw, 64px);
}

.about-crane-art {
  margin: 0 auto;
  overflow: hidden;
  background: #eee7d7;
  box-shadow: var(--shadow);
}

.about-crane-art img {
  display: block;
  width: 100%;
  max-height: min(78vw, 940px);
  object-fit: cover;
}

@media (max-width: 860px) {
  .about-hero {
    padding: 122px 20px 64px;
  }

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

  .founder-portrait {
    width: min(100%, 560px);
  }

  .about-crane {
    padding: 20px;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.is-hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.dashboard-page {
  min-height: 100vh;
  background: #f3eadc;
}

.dashboard-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  background: rgba(243, 234, 220, 0.88);
}

.dashboard-header .brand-cluster {
  justify-self: start;
}

.dashboard-header > .nav {
  grid-column: 2;
  justify-self: center;
}

.dashboard-page:not(.dashboard-signed-in) .dashboard-nav {
  display: none;
}

.dashboard-page:not(.dashboard-signed-in) .site-nav-toggle {
  display: none;
}

.dashboard-header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
  min-width: 0;
}

.dashboard-header-actions .account-logout {
  margin-left: 0;
}

.dashboard-nav {
  margin-left: 0;
}

.dashboard-header > .account-logout,
.dashboard-header > .site-language {
  justify-self: end;
}

.dashboard-return {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(49, 88, 74, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: var(--forest);
}

.dashboard-return:hover {
  border-color: rgba(49, 88, 74, 0.42);
  background: rgba(255, 255, 255, 0.82);
}

.dashboard-return svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 146px clamp(18px, 4vw, 54px) 56px;
}

.dashboard-login {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  min-height: calc(100vh - 180px);
}

.dashboard-login-canvas {
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.dashboard-zen-art {
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 680px;
  margin: 0;
}

.dashboard-zen-art img {
  display: block;
  width: min(100%, 760px);
  height: 100%;
  max-height: 820px;
  object-fit: contain;
}

.dashboard-access {
  display: grid;
  gap: 34px;
  align-content: center;
}

.dashboard-access .access-form {
  background: rgba(255, 252, 247, 0.76);
  backdrop-filter: blur(12px);
}

.dashboard-login h1,
.dashboard-topline h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.dashboard-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: #3f4944;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
}

.access-form,
.dashboard-panel,
.device-card {
  border: 1px solid rgba(122, 134, 128, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 38px rgba(29, 36, 34, 0.08);
}

.access-form {
  padding: 24px;
}

.access-form label,
.account-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
  text-transform: uppercase;
}

.auth-mode-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 18px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f1eb;
}

.auth-mode {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
  cursor: pointer;
}

.auth-mode.is-active {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(29, 36, 34, 0.08);
}

.access-form > input,
.account-form input,
.account-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  margin: 0 0 16px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

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

.avatar-upload-field {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}

.avatar-upload-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.account-form .avatar-upload-field label,
.avatar-upload-field .form-note {
  margin-bottom: 0;
}

.avatar-upload-row input[type="file"] {
  margin-bottom: 0;
  padding: 9px 10px;
}

.avatar-upload-row .button {
  min-height: 46px;
  white-space: nowrap;
}

.access-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.access-row input {
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

.auth-action-row {
  margin-top: 4px;
}

.form-note,
.empty-state {
  margin: 14px 0 0;
  color: var(--muted);
}

.dashboard-topline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.dashboard-session {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.dashboard-session .account-chip {
  margin-left: 0;
  background: transparent;
}

.dashboard-session .account-logout {
  min-height: 38px;
  height: 38px;
  margin-left: 0;
  background: var(--forest);
}

.account-panel {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 98px clamp(16px, 4vw, 48px) 32px;
  overflow: auto;
  background: rgba(29, 36, 34, 0.38);
  backdrop-filter: blur(10px);
}

.account-panel-card {
  width: min(1120px, 100%);
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(122, 134, 128, 0.32);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: var(--shadow);
}

.account-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.account-summary {
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.account-avatar-large {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--forest);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 780;
}

.account-avatar-large.has-image {
  color: transparent;
}

.account-summary strong {
  font-size: 1.2rem;
}

.account-summary span:not(.status-pill),
.account-summary p {
  margin: 0;
  color: var(--muted);
}

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

.account-form fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.account-form fieldset:first-child {
  grid-row: span 2;
}

.account-form legend {
  padding: 0 6px;
  font-weight: 760;
}

.account-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-two-col label {
  margin-bottom: 0;
}

.account-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.stack-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(122, 134, 128, 0.28);
  border-radius: 8px;
  background: rgba(122, 134, 128, 0.28);
}

.stack-strip article {
  min-height: 104px;
  padding: 18px;
  background: #ffffff;
}

.crash-report-bar {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(122, 134, 128, 0.28);
  border-radius: 8px;
  background: rgba(122, 134, 128, 0.28);
}

.crash-report-bar > div,
.crash-report-bar dl {
  margin: 0;
  padding: 16px 18px;
  background: #ffffff;
}

.crash-report-bar span,
.crash-report-bar dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.crash-report-bar strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.crash-report-bar dl {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px 12px;
  align-items: center;
}

.crash-report-bar dd {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: #3f4944;
  font-size: 0.88rem;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stack-strip span,
.metric-grid span,
.command-row small,
.device-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  text-transform: uppercase;
}

.stack-strip strong,
.metric-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 3fr);
  gap: 18px;
  margin-top: 18px;
}

.dashboard-panel {
  min-height: 280px;
  padding: clamp(20px, 3vw, 28px);
}

.primary-panel {
  grid-row: span 1;
}

.panel-heading,
.device-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.panel-heading h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

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

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(49, 88, 74, 0.22);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(231, 236, 231, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.status-pill.positive {
  color: #255a4b;
  background: #dfece5;
}

.device-list,
.command-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.device-card {
  padding: 18px;
  box-shadow: none;
}

.device-card h3 {
  font-size: 1.18rem;
}

.device-meta,
.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.device-meta article,
.metric-grid article {
  min-height: 96px;
  padding: 14px;
  background: #fbfaf7;
}

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

.device-meta article:first-child {
  grid-column: 1 / -1;
}

.device-meta strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
}

.device-meta small {
  display: block;
  margin-top: 8px;
  color: #3f4944;
  font-size: 0.9rem;
  line-height: 1.25;
}

.metric-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.metric-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.chart-panel {
  grid-column: 1;
  grid-row: span 4;
  min-height: 680px;
  color: #f1f5f3;
  border-color: rgba(118, 164, 138, 0.42);
  background:
    linear-gradient(180deg, rgba(43, 83, 66, 0.98), rgba(31, 62, 51, 0.98)),
    #254b3d;
}

.chart-panel .eyebrow,
.chart-panel .chart-axis-caption {
  color: #becac5;
}

.chart-panel h2,
.chart-panel .panel-heading h2 {
  color: #f5fbf8;
}

.chart-panel .status-pill {
  color: #e3f4ed;
  border-color: rgba(200, 232, 213, 0.34);
  background: rgba(69, 126, 96, 0.52);
}

.chart-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.chart-toggle-group {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.chart-toggle-row {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  gap: 10px 28px;
}

.chart-toggle-row-special {
  gap: 10px 22px;
  opacity: 0.86;
}

.chart-window-group {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(237, 247, 244, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.chart-window-button {
  min-height: 28px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: #d9e4df;
  background: transparent;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 780;
  cursor: pointer;
}

.chart-window-button.is-active {
  color: #24302b;
  background: #e6eee9;
}

.chart-footer-controls {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}

.chart-footer-controls .chart-window-group {
  order: 1;
  margin-left: auto;
}

.chart-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #eef4f1;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 760;
  cursor: pointer;
}

.chart-toggle:has(input:checked) {
  color: #ffffff;
}

.chart-toggle input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: var(--metric-color);
}

.chart-diagnostic {
  color: #cfdbd6;
  font-size: 0.8rem;
  font-weight: 720;
}

.chart-wrap {
  margin-top: 22px;
  overflow: hidden;
  padding: 22px 0 24px;
  border: 1px solid rgba(200, 232, 213, 0.22);
  border-radius: 8px;
  background: #46514c;
}

.chart-scroll {
  overflow-x: hidden;
  overflow-y: hidden;
}

.chart-scroll:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.7);
  outline-offset: -2px;
}

.telemetry-chart {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
}

.chart-grid-line {
  stroke: rgba(237, 247, 244, 0.16);
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.08));
}

.chart-line-hover-target {
  fill: none;
  stroke: transparent;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 18;
  cursor: crosshair;
  pointer-events: stroke;
}

.chart-point {
  stroke: #46514c;
  stroke-width: 1.5;
}

.chart-hover {
  pointer-events: none;
}

.chart-hover-guide {
  stroke: rgba(237, 247, 244, 0.34);
  stroke-dasharray: 4 5;
  stroke-width: 1;
}

.chart-hover-dot {
  stroke: #f8fbf9;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.32));
}

.chart-hover-bubble {
  fill: rgba(24, 31, 29, 0.92);
  stroke: rgba(237, 247, 244, 0.22);
  stroke-width: 1;
}

.chart-hover-label {
  fill: #f8fbf9;
  font-size: 12px;
  font-weight: 760;
}

.chart-axis-tick {
  stroke: rgba(237, 247, 244, 0.32);
  stroke-width: 1;
}

.chart-axis-line {
  opacity: 0.72;
  stroke-width: 1;
}

.chart-axis-label,
.chart-axis-caption {
  fill: #d0ddd8;
  font-size: 12px;
  font-weight: 720;
}

.chart-axis-caption {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chart-empty {
  fill: #d0ddd8;
  font-size: 16px;
  font-weight: 680;
}

.chart-legend {
  display: flex;
  flex: 1 1 100%;
  flex-wrap: wrap;
  order: 2;
  gap: 6px;
  min-width: 0;
  margin-top: 0;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 8px;
  border: 1px solid rgba(237, 247, 244, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #eef4f1;
  font-size: 0.78rem;
  font-weight: 720;
  white-space: nowrap;
}

.chart-legend span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--legend-color);
}

.reset-history {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(237, 247, 244, 0.18);
}

.reset-history-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.reset-history h3 {
  color: #f5fbf8;
  font-size: 1rem;
}

.reset-history-heading span {
  color: #cfdbd6;
  font-size: 0.78rem;
  font-weight: 720;
}

.reset-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.reset-row {
  min-height: 48px;
  border: 1px solid rgba(237, 247, 244, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.reset-row summary {
  display: grid;
  grid-template-columns: 26px minmax(110px, 0.7fr) minmax(140px, 0.9fr) minmax(150px, 0.85fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  cursor: pointer;
  list-style: none;
}

.reset-row summary::-webkit-details-marker {
  display: none;
}

.reset-disclosure::before {
  content: "+";
  color: #d7e2dd;
  font-size: 0.95rem;
  font-weight: 800;
}

.reset-row[open] .reset-disclosure::before {
  content: "-";
}

.reset-row strong,
.reset-row span,
.reset-row small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reset-device {
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.reset-row strong {
  color: #ffffff;
  font-size: 0.88rem;
}

.reset-row span,
.reset-row small {
  color: #d7e2dd;
  font-size: 0.78rem;
}

.reset-row-details {
  display: none;
  grid-template-columns: minmax(90px, 0.28fr) minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  padding: 0 12px 14px;
  color: #d7e2dd;
  font-size: 0.78rem;
}

.reset-row[open] .reset-row-details {
  display: grid;
}

.reset-row-details dt {
  color: #aebfb7;
  font-weight: 800;
  text-transform: uppercase;
}

.reset-row-details dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.reset-row-note {
  display: none;
  margin: 0;
  padding: 0 12px 14px calc(26px + 24px);
  color: #c5d4ce;
  font-size: 0.78rem;
  font-style: italic;
}

.reset-row[open] .reset-row-note {
  display: block;
}

.node-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.node-strip span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #3f4944;
  background: #ffffff;
  font-size: 0.82rem;
}

.probe-selector {
  display: grid;
  width: 100%;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.probe-selector select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #3f4944;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 680;
  text-transform: none;
}

.command-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.command-row span {
  color: var(--muted);
}

.proof-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 20px;
  color: #3f4944;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
  }

  .site-header:not(.dashboard-header) {
    display: flex;
  }

  .site-nav-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-header > .nav {
    position: absolute;
    top: 100%;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(49, 88, 74, 0.2);
    border-radius: 12px;
    background: rgba(250, 247, 241, 0.98);
    box-shadow: 0 18px 48px rgba(29, 36, 34, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-header > .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 8px;
    color: var(--ink);
  }

  .site-header > .nav a:hover,
  .site-header > .nav a:focus-visible {
    background: rgba(49, 88, 74, 0.09);
  }

  .site-header.site-nav-open > .nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.site-nav-open .site-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.site-nav-open .site-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.site-nav-open .site-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .brand-cluster {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 14px;
  }

  .account-chip {
    margin-left: 0;
    min-height: 40px;
    padding: 5px;
  }

  .account-chip .account-copy {
    display: none;
  }

  .hero {
    min-height: 94svh;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 128px 20px 52px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .render-panel {
    min-height: auto;
  }

  .hero-render {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .intro-grid,
  .readiness-grid,
  .launch-section-grid,
  .foundation-grid,
  .gateway-grid,
  .dashboard-login,
  .dashboard-grid,
  .storefront-hero-grid,
  .commerce-grid,
  .trust-grid,
  .investor-grid,
  .shop-heading,
  .shop-grid,
  .component-grid,
  .detail-grid,
  .trust-list,
  .blog-feature,
  .blog-feature.is-reversed,
  .timeline {
    grid-template-columns: 1fr;
  }

  .blog-feature.is-reversed .blog-copy {
    order: 1;
  }

  .blog-feature.is-reversed .blog-visual {
    order: 2;
  }

  .blog-visual {
    height: 280px;
  }

  .blog-visual.bench {
    height: min(620px, 118vw);
  }

  .blog-visual.raw-edge {
    min-height: min(620px, 118vw);
  }

  .blog-visual.floating {
    height: 300px;
  }

  .dashboard-shell {
    padding-top: 112px;
  }

  .dashboard-login-canvas {
    gap: 34px;
  }

  .dashboard-zen-art {
    min-height: auto;
  }

  .dashboard-zen-art img {
    width: min(100%, 620px);
    height: auto;
    max-height: none;
  }

  .dashboard-access {
    gap: 26px;
  }

  .dashboard-topline,
  .dashboard-session {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-layout,
  .account-form {
    grid-template-columns: 1fr;
  }

  .account-form fieldset:first-child {
    grid-row: auto;
  }

  .account-actions {
    grid-column: auto;
  }

  .stack-strip,
  .device-meta,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .storefront-hero-media {
    min-height: 360px;
  }

  .commerce-copy {
    position: static;
  }

  .detail-grid article,
  .trust-list article {
    min-height: 190px;
  }

  .detail-grid span {
    margin-bottom: 34px;
  }

  .component {
    min-height: 190px;
  }

  .component-index {
    margin-bottom: 36px;
  }

  .launch-art {
    width: min(100%, 620px);
  }

  .launch-copy {
    max-width: 680px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 22px 16px;
  }

  .footer-inner {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand span:last-child {
    overflow: hidden;
    max-width: 32vw;
    text-overflow: ellipsis;
  }

  .account-copy {
    display: none;
  }

  .account-chip {
    min-height: 40px;
    padding: 5px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row button {
    width: 100%;
  }

  .access-row,
  .command-row {
    grid-template-columns: 1fr;
  }

  .account-two-col {
    grid-template-columns: 1fr;
  }

  .status-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    min-height: 84px;
    padding: 14px 18px;
  }

  .purchase-meta,
  .readiness-metrics {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    width: 100%;
    grid-template-columns: 1fr 1.35fr 1fr;
  }
}
