:root {
  --paper: #f3ead6;
  --paper-2: #e8ddc5;
  --ink: #1a1711;
  --text-ink: #353534;
  --text-ink-rgb: 53, 53, 52;
  --button-ink: #353534;
  --button-ink-hover: #464640;
  --graphite: #2a2822;
  --gold: #f4b728;
  --gold-soft: #ffd76a;
  --white: #fffaf0;
  --muted: #6d6557;
  --line: rgba(26, 23, 17, 0.18);
  --line-strong: rgba(26, 23, 17, 0.34);
  --dark-line: rgba(255, 250, 240, 0.16);
  --dark-soft: rgba(255, 250, 240, 0.68);
  --max: 1160px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text-ink);
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  text-rendering: geometricPrecision;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(38px, 4.6vw, 60px) 0; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 12px 16px 0; }
.header-frame {
  width: min(1280px, 100%);
  min-height: 58px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(26,23,17,0.12);
  border-radius: 8px;
  background: rgba(243, 234, 214, 0.34);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}
.site-header.is-scrolled .header-frame,
.site-header.menu-active .header-frame {
  background: rgba(255,250,240,0.92);
  border-color: rgba(26, 23, 17, 0.28);
  box-shadow: 0 12px 34px rgba(26, 23, 17, 0.08);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 780;
  letter-spacing: -0.035em;
}
.brand { justify-self: start; }
.brand-seal {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 6px rgba(255,250,240,0.32);
  color: var(--text-ink);
  font-family: ui-serif, Georgia, serif;
  font-weight: 850;
}
.brand-seal span { transform: translateY(-1px); }

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.desktop-nav a, .header-link {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: rgba(var(--text-ink-rgb), 0.72);
  font-size: 14px;
  font-weight: 680;
}
.desktop-nav a:hover, .header-link:hover {
  color: var(--text-ink);
  border-color: var(--line);
  background: var(--white);
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 760;
  letter-spacing: -0.02em;
}
.button-dark {
  border-color: var(--button-ink);
  background: var(--button-ink);
  color: var(--white);
}
.button-dark:hover {
  border-color: var(--button-ink-hover);
  background: var(--button-ink-hover);
  color: var(--white);
}
.button-light { background: rgba(255,250,240,0.42); border: var(--gold); }
.button-light:hover { background: var(--white); }

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.menu-button span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease;
}
.site-header.menu-active .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.menu-active .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 8px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,250,240,0.96);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26,23,17,0.12);
}
.mobile-panel nav { display: grid; padding: 10px; }
.mobile-panel a {
  padding: 13px 14px;
  border-radius: 8px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 720;
}
.mobile-panel a:hover { background: var(--paper-2); }

.hero {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  padding: 88px 0 clamp(44px, 5vw, 54px);
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: min(26vw, 340px);
  line-height: .75;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: -0.16em;
  color: rgba(var(--text-ink-rgb), 0.042);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.eyebrow {
  margin: 0 0 12px;
  color: rgba(var(--text-ink-rgb), 0.58);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 auto;
  max-width: 860px;
  font-size: clamp(47px, 7vw, 90px);
  line-height: .88;
  letter-spacing: -0.075em;
  font-weight: 760;
}
.hero-copy {
  max-width: 680px;
  margin: 22px auto 0;
  color: rgba(26, 23, 17, 0.96);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 18px rgba(255, 250, 240, 0.72);
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero-metrics {
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 25px auto 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.hero-metric {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 12px;
  background: rgba(255, 250, 240, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.48);
  backdrop-filter: blur(12px);
}
.hero-metric strong {
  font-size: clamp(28px, 2.7vw, 40px);
  font-weight: 860;
  line-height: .9;
}
.hero-metric span {
  color: rgba(var(--text-ink-rgb), 0.70);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.15;
  text-transform: uppercase;
}
.hero-note {
  margin: 18px auto 0;
  color: rgba(var(--text-ink-rgb), 0.56);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
}

.electrum-strip { padding: 0 0 clamp(26px, 3.4vw, 42px); }
.electrum-strip-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 15px 18px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255, 250, 240, .32);
}
.electrum-strip-mark {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(26,23,17,.28);
  background: rgba(244,183,40,.14);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.electrum-strip p {
  margin: 0;
  color: rgba(var(--text-ink-rgb), .68);
  line-height: 1.38;
  letter-spacing: -.015em;
}
.electrum-strip a {
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.zec-statement {
  background: var(--gold);
  color: var(--text-ink);
}
.zec-statement-inner {
  min-height: 168px;
  display: grid;
  grid-template-columns: 98px 1.12fr .88fr;
  align-items: center;
  gap: 24px;
  padding: clamp(38px, 5vw, 66px) 0;
}
.statement-mark {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
}
.statement-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.zec-statement .eyebrow { color: rgba(var(--text-ink-rgb), .54); }
.zec-statement h2 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: .9;
  letter-spacing: -0.06em;
  font-weight: 760;
}
.zec-statement p:last-child {
  margin: 0;
  color: rgba(var(--text-ink-rgb), .68);
  line-height: 1.42;
  letter-spacing: -0.015em;
  font-size: 19px;
}

.release-clean { display: grid; gap: 18px; }
.release-copy { max-width: 720px; margin-inline: auto; text-align: center; }
.release-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 760;
}
.release-copy p:not(.eyebrow) {
  max-width: 580px;
  margin: 8px auto 0;
  color: rgba(var(--text-ink-rgb), .62);
  line-height: 1.42;
  font-size: 18px;
  letter-spacing: -.016em;
}
.release-panel {
  width: min(920px, 100%);
  justify-self: center;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: rgba(255,250,240,.34);
}
.release-row {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px minmax(120px, .9fr) minmax(110px, .55fr) minmax(132px, .55fr);
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-ink);
}
.release-row:last-of-type { border-bottom: 0; }
.os-mark {
  width: 44px;
  height: 44px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(26,23,17,.42);
  background: rgba(255,250,240,.52);
  color: var(--text-ink);
}
.os-win { grid-template-columns: repeat(2, 1fr); gap: 3px; padding: 7px; }
.os-win i { display: block; width: 100%; height: 100%; background: rgba(26,23,17,.78); }
.os-mac i:first-child {
  width: 13px;
  height: 16px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: translateX(-2px);
}
.os-mac i:last-child {
  position: absolute;
  right: 8px;
  top: 9px;
  width: 6px;
  height: 12px;
  border-left: 2px solid var(--ink);
  border-radius: 4px;
}
.os-linux::before {
  content: ">";
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 18px;
  font-weight: 800;
  transform: translateX(-1px);
}
.os-linux i {
  position: absolute;
  left: 15px;
  right: 8px;
  bottom: 9px;
  height: 2px;
  background: var(--ink);
}
.release-row strong {
  font-size: clamp(25px, 3vw, 38px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 760;
}
.release-row em {
  color: rgba(var(--text-ink-rgb), .62);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 760;
}
.release-row b {
  justify-self: end;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(26,23,17,.28);
  background: rgba(244,183,40,.14);
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 780;
}
.release-row:hover b { background: var(--gold); border-color: var(--ink); }
.release-utility {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 2px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.release-utility a {
  color: var(--text-ink);
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.release-utility a:hover { text-decoration-thickness: 2px; }

.section-wallet { padding-top: 0; }
.wallet-workbench { display: grid; gap: 18px; }
.workbench-head {
  max-width: 780px;
}
.workbench-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 760;
}
.workbench-board {
  display: grid;
  grid-template-columns: 1.05fr .95fr 1.15fr;
  grid-template-areas:
    "address zec history"
    "verify verify network";
  gap: 12px;
  min-height: 390px;
}
.workbench-panel {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  border: 1px solid var(--line-strong);
  background: rgba(255,250,240,.42);
}
.panel-address { grid-area: address; }
.panel-zec { grid-area: zec; background: rgba(255,250,240,.42); }
.panel-history { grid-area: history; }
.panel-network { grid-area: network; }
.panel-verify { grid-area: verify; min-height: 176px; }
.workbench-panel h3 {
  margin: 0 0 9px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: .9;
  letter-spacing: -.07em;
  font-weight: 760;
}
.workbench-panel p {
  max-width: 390px;
  margin: 0;
  color: rgba(var(--text-ink-rgb), .65);
  line-height: 1.38;
  letter-spacing: -.015em;
}
.panel-address h3::after {
  content: " t / z";
  color: rgba(var(--text-ink-rgb), .38);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .34em;
  letter-spacing: .02em;
}
.panel-network h3::after {
  content: " SPV";
  color: rgba(var(--text-ink-rgb), .38);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: .34em;
  letter-spacing: .02em;
}

.context-strip { padding: 0 0 clamp(34px, 4.2vw, 54px); }
.context-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.context-strip div:not(.container) {
  display: grid;
  gap: 5px;
}
.context-strip span {
  color: rgba(var(--text-ink-rgb), .54);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.context-strip strong {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: -.02em;
}
.section-resources {
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(96px, 11.5vw, 138px) 0;
}
.resource-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.resource-panel a {
  min-height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 18px;
  border: 1px solid rgba(255,250,240,.22);
  background: rgba(255,250,240,.08);
  color: var(--white);
  backdrop-filter: blur(2px);
}
.resource-panel a:hover { background: rgba(244,183,40,.16); border-color: rgba(244,183,40,.62); }
.resource-panel span {
  min-height: 36px;
  display: flex;
  align-items: flex-start;
  font-family: ui-sans-serif, system-ui, sans-serif;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.resource-panel strong {
  margin-top: auto;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 620;
}

.section-faq { background: var(--paper); color: var(--text-ink); }
.faq-simple { max-width: 980px; }
.faq-simple-head { max-width: 720px; margin: 0 auto 30px; text-align: center; }
.faq-simple-head h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: .95;
  letter-spacing: -0.06em;
  font-weight: 760;
}
.faq-simple-head p {
  margin: 0;
  color: rgba(var(--text-ink-rgb), 0.66);
  line-height: 1.45;
  letter-spacing: -0.016em;
}
.faq-simple-list details { border-bottom: 1px solid var(--line-strong); }
.faq-simple-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 22px 42px 22px 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  font-weight: 760;
  letter-spacing: -0.035em;
}
.faq-simple-list summary::-webkit-details-marker { display: none; }
.faq-simple-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 22px;
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.faq-simple-list details[open] summary::after { content: "−"; }
.faq-simple-list p {
  max-width: 720px;
  margin: -6px 0 22px;
  color: rgba(var(--text-ink-rgb), .66);
  line-height: 1.5;
  letter-spacing: -0.015em;
}

.site-footer-dark {
  padding: 54px 0 50px;
  background: var(--ink);
  color: var(--white);
}
.footer-dark-shell {
  display: grid;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.footer-dark-head {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto minmax(240px, 460px);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  border-bottom: 1px solid var(--dark-line);
}
.footer-dark-head .footer-brand {
  justify-self: start;
  color: var(--white);
  font-size: clamp(23px, 3vw, 36px);
}
.footer-dark-head .footer-brand .brand-seal { color: var(--text-ink); }
.footer-dark-head p {
  margin: 0;
  color: rgba(255,250,240,.62);
  text-align: right;
  line-height: 1.42;
  letter-spacing: -.015em;
}
.footer-nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--dark-line);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.footer-nav a {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(255,250,240,.72);
  font-size: 14px;
  font-weight: 720;
}
.footer-nav a + a { margin-left: 24px; }
.footer-nav a + a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(255,250,240,.34);
  border-radius: 50%;
  transform: translateY(-50%);
}
.footer-nav a:hover { color: var(--text-ink); background: var(--gold-soft); }
.footer-line {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  color: rgba(255,250,240,.52);
  border-top: 0;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
}
.footer-line > a {
  justify-self: start;
  color: var(--gold-soft);
  font-weight: 760;
}
.footer-line > span:nth-child(2) { justify-self: center; }
.footer-line > span:last-child { justify-self: end; }
.footer-line a { color: inherit; text-decoration: none; }
.footer-line a:hover { opacity: .68; }

.page-main { padding-top: 98px; }
.page-hero { padding: 54px 0 22px; }
.page-hero .container { max-width: 900px; }
.page-hero h1 { font-size: clamp(42px, 6vw, 76px); }
.page-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  padding: 24px 0 70px;
}
.side-nav {
  position: sticky;
  top: 94px;
  height: fit-content;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.42);
}
.side-nav a {
  padding: 10px;
  border-radius: 6px;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 720;
  color: rgba(var(--text-ink-rgb), .68);
}
.side-nav a:hover { background: var(--white); color: var(--text-ink); }
.content-stack { display: grid; gap: 12px; }
.content-card {
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.5);
}
.content-card h2 { margin-bottom: 12px; font-size: 28px; letter-spacing: -.045em; }
.content-card p, .content-card li { color: rgba(var(--text-ink-rgb), .66); line-height: 1.52; }
.content-card a { font-weight: 760; text-decoration: underline; text-underline-offset: 4px; }
.status-list { display: grid; gap: 8px; margin-top: 16px; }
.status-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(244,183,40,.12);
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.status-list span {
  color: rgba(var(--text-ink-rgb), .58);
  font-weight: 760;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

@media (max-width: 1040px) {
  .desktop-nav, .header-link { display: none; }
  .menu-button { display: inline-flex; }
  .header-frame { display: flex; justify-content: space-between; }
  .site-header.menu-active .mobile-panel { display: block; }
  .electrum-strip-inner, .zec-statement-inner, .context-strip-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .workbench-board {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "address zec"
      "history network"
      "verify verify";
  }
  .resource-panel { grid-template-columns: repeat(2, 1fr); }
  .footer-dark-head { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-dark-head p { text-align: center; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .site-header { padding: 10px 10px 0; }
  .hero { min-height: 560px; padding: 104px 0 54px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-metrics { width: min(100%, 440px); }
  .hero-metric {
    min-height: 78px;
    padding: 12px 8px;
  }
  .hero-metric span { font-size: 11px; }
  .zec-statement-inner { gap: 16px; }
  .statement-mark { width: 64px; height: 64px; }
  .release-row {
    grid-template-columns: 44px 1fr;
    gap: 8px 12px;
    align-content: center;
    min-height: 126px;
  }
  .release-row em,
  .release-row b {
    grid-column: 2;
    justify-self: start;
  }
  .workbench-board {
    grid-template-columns: 1fr;
    grid-template-areas:
      "address"
      "zec"
      "history"
      "network"
      "verify";
    min-height: 0;
  }
  .workbench-panel, .panel-verify { min-height: 154px; }
  .resource-panel { grid-template-columns: 1fr; }
  .resource-panel a { min-height: 160px; }
  .footer-nav a + a { margin-left: 20px; }
  .footer-nav a + a::before { left: -13px; }
  .footer-line {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-line > a,
  .footer-line > span:nth-child(2),
  .footer-line > span:last-child {
    justify-self: center;
  }
  .page-shell { grid-template-columns: 1fr; }
  .side-nav { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .hero-actions { display: grid; }
  .hero-metrics { gap: 6px; }
  .hero-metric {
    min-height: 74px;
    padding: 10px 6px;
  }
  .hero-metric strong { font-size: 25px; }
  .button { width: 100%; }
  .side-nav { grid-template-columns: 1fr; }
}


.header-frame {
  min-height: 64px;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  border-radius: 14px 14px 8px 8px;
  border-color: rgba(26,23,17,.18);
  background:
    linear-gradient(90deg, rgba(244,183,40,.16), transparent 34%, transparent 66%, rgba(244,183,40,.10)),
    rgba(243, 234, 214, .50);
}

.site-header.is-scrolled .header-frame,
.site-header.menu-active .header-frame {
  background:
    linear-gradient(90deg, rgba(244,183,40,.10), transparent 34%, transparent 66%, rgba(244,183,40,.08)),
    rgba(255,250,240,.94);
}

.brand-full {
  width: fit-content;
  max-width: 190px;
  min-height: 42px;
}

.brand-full img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  position: relative;
  min-height: 42px;
  padding: 0 12px;
  border-left: 1px solid rgba(26,23,17,.18);
  border-right: 1px solid rgba(26,23,17,.18);
}

.desktop-nav::before,
.desktop-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(26,23,17,.35);
  border-radius: 999px;
  transform: translateY(-50%);
}

.desktop-nav::before { left: -4px; background: var(--paper); }
.desktop-nav::after { right: -4px; background: var(--paper); }

.site-header.is-scrolled .desktop-nav::before,
.site-header.is-scrolled .desktop-nav::after {
  background: var(--white);
}

.release-panel.release-board {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-self: center;
  border: 0;
  background: transparent;
}

.release-board .release-row {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  justify-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(26,23,17,.28);
  background:
    linear-gradient(180deg, rgba(244,183,40,.18), transparent 45%),
    rgba(255,250,240,.36);
  color: var(--text-ink);
}

.release-board .release-row:hover {
  background:
    linear-gradient(180deg, rgba(244,183,40,.30), transparent 50%),
    rgba(255,250,240,.52);
}

.release-board .os-mark {
  margin-bottom: auto;
}

.release-board .release-row strong {
  font-size: clamp(30px, 4vw, 44px);
}

.release-board .release-row em {
  font-size: 14px;
}

.release-board .release-row b {
  justify-self: stretch;
  justify-content: center;
  width: 100%;
  margin-top: 6px;
}

.context-item {
  display: grid !important;
  grid-template-columns: 32px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 10px;
  align-items: center;
}

.context-item img {
  grid-row: 1 / span 2;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.context-item span,
.context-item strong {
  grid-column: 2;
}

.closing-panel {
  padding-top: clamp(26px, 3.2vw, 42px);
  padding-bottom: clamp(34px, 4.5vw, 56px);
  background: var(--paper);
}

.closing-panel-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.closing-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 760;
}

.site-footer-dark {
  padding: 0;
  background: var(--ink);
}

.footer-final {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-areas:
    "brand nav"
    "brand line";
  gap: 0;
  min-height: 260px;
  border: 0;
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.footer-brand-panel {
  grid-area: brand;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 28px 28px 24px 0;
  border-right: 1px solid var(--dark-line);
}

.footer-brand-full {
  width: fit-content;
  max-width: 240px;
}

.footer-brand-full img {
  width: min(240px, 52vw);
  height: auto;
  object-fit: contain;
  filter: brightness(1.2);
}

.footer-brand-panel p {
  max-width: 320px;
  margin: 0;
  color: rgba(255,250,240,.62);
  line-height: 1.42;
  letter-spacing: -.015em;
}

.footer-final .footer-nav {
  grid-area: nav;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 28px 0 24px 28px;
  border-bottom: 0;
}

.footer-final .footer-nav a {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: rgba(255,250,240,.72);
  font-size: 15px;
  font-weight: 720;
}

.footer-final .footer-nav a + a {
  margin-left: 0;
}

.footer-final .footer-nav a + a::before {
  content: none;
}

.footer-final .footer-nav a:hover {
  color: var(--gold-soft);
  background: transparent;
}

.footer-final .footer-line {
  grid-area: line;
  min-height: auto;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  gap: 8px;
  padding: 0 0 24px 28px;
  border-top: 0;
  color: rgba(255,250,240,.52);
  text-align: right;
}

.footer-final .footer-line > a,
.footer-final .footer-line > span:nth-child(2),
.footer-final .footer-line > span:last-child {
  justify-self: end;
}

.footer-final .footer-line > a {
  color: var(--gold-soft);
}

@media (max-width: 1040px) {
  .release-panel.release-board {
    grid-template-columns: 1fr;
  }

  .release-board .release-row {
    min-height: 156px;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    align-content: center;
    justify-items: start;
  }

  .release-board .os-mark {
    margin-bottom: 0;
  }

  .release-board .release-row b {
    justify-self: end;
    width: auto;
    margin-top: 0;
  }

  .context-strip-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
  }

  .footer-final {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "line";
  }

  .footer-brand-panel {
    padding: 26px 0 22px;
    border-right: 0;
    border-bottom: 1px solid var(--dark-line);
    align-items: center;
    text-align: center;
  }

  .footer-final .footer-nav {
    justify-content: center;
    padding: 22px 0;
  }

  .footer-final .footer-line {
    justify-items: center;
    text-align: center;
    padding: 0 0 22px;
  }

  .footer-final .footer-line > a,
  .footer-final .footer-line > span:nth-child(2),
  .footer-final .footer-line > span:last-child {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .brand-full {
    max-width: 150px;
  }

  .release-board .release-row {
    grid-template-columns: 1fr;
    min-height: 168px;
  }

  .release-board .release-row b {
    justify-self: stretch;
    width: 100%;
  }

  .closing-panel-inner {
    grid-template-columns: 1fr;
  }

  .closing-panel-inner .button {
    width: fit-content;
  }
}


.brand-text {
  gap: 10px;
}

.brand-slot {
  width: 34px;
  height: 34px;
  display: block;
  border: 1px dashed rgba(26,23,17,.30);
  border-radius: 8px;
  background: rgba(255,250,240,.44);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 780;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.brand-copy small {
  color: rgba(var(--text-ink-rgb), .58);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.header-frame {
  min-height: 62px;
  padding: 8px 12px;
  border: 1px solid rgba(26,23,17,.10);
  border-radius: 16px;
  background: rgba(243,234,214,.22);
  box-shadow: none;
}

.site-header.is-scrolled .header-frame,
.site-header.menu-active .header-frame {
  background: rgba(255,250,240,.86);
  border-color: rgba(26,23,17,.16);
  box-shadow: 0 10px 30px rgba(26,23,17,.06);
}

.desktop-nav {
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,250,240,.40);
}

.desktop-nav::before,
.desktop-nav::after { content: none !important; }

.desktop-nav a,
.header-link {
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 0;
}

.desktop-nav a:hover,
.header-link:hover {
  border-color: transparent;
  background: rgba(255,250,240,.88);
}

.release-panel.release-board {
  gap: 14px;
}

.release-board .release-row {
  border: 0;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(26,23,17,.06);
}

.release-board .release-row:hover {
  background: var(--white);
  box-shadow: 0 16px 32px rgba(26,23,17,.08);
}

.release-board .os-mark {
  border-radius: 10px;
  border-color: rgba(26,23,17,.24);
  background: rgba(244,183,40,.14);
}

.release-board .release-row b {
  border-radius: 999px;
  background: rgba(244,183,40,.16);
}

.release-utility {
  gap: 10px;
  margin-top: 2px;
}

.release-utility a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,250,240,.48);
  text-decoration: none;
}

.release-utility a:hover {
  background: var(--white);
  text-decoration: none;
}

.context-item {
  grid-template-columns: 24px 1fr;
}

.context-item img {
  width: 20px;
  height: 20px;
}

.section-resources {
  position: relative;
  background-image:
    linear-gradient(rgba(26,23,17,.56), rgba(26,23,17,.56)),
    var(--resources-image) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-resources::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,23,17,.18), transparent 42%, rgba(26,23,17,.18));
  pointer-events: none;
}

.section-resources .resource-panel {
  position: relative;
  z-index: 1;
}

.resource-panel a {
  background: rgba(255,250,240,.09);
  backdrop-filter: blur(5px);
}

.section-interface {
  padding-top: clamp(34px, 4.2vw, 56px);
}

.interface-stack {
  display: grid;
  gap: 40px;
}

.interface-row {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 20px;
  align-items: center;
}

.interface-row-alt {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, .78fr);
}

.interface-copy h2,
.interface-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 760;
}

.interface-copy p {
  max-width: 420px;
  margin: 0;
  color: rgba(var(--text-ink-rgb), .66);
  line-height: 1.45;
  letter-spacing: -.018em;
}

.interface-shot {
  margin: 0;
}

.interface-shot img {
  width: 89%;
  border-radius: 16px;
}

.site-footer-dark {
  padding: 44px 0 52px;
  background: #16120f;
  color: var(--white);
}

.footer-minimal {
  display: grid;
  gap: 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
}

.footer-id {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-logo-slot {
  width: 44px;
  height: 44px;
  display: block;
  border: 1px dashed rgba(255,250,240,.28);
  border-radius: 12px;
  background: rgba(255,250,240,.04);
}

.footer-id-copy {
  display: grid;
  gap: 3px;
}

.footer-id-copy strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 780;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.footer-id-copy small {
  color: rgba(255,250,240,.50);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-summary {
  max-width: 420px;
  margin: 0;
  justify-self: end;
  color: rgba(255,250,240,.64);
  line-height: 1.42;
  letter-spacing: -.015em;
  text-align: right;
}

.footer-grid-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, max-content));
  justify-content: space-between;
  gap: 16px 42px;
}

.footer-grid-nav a {
  color: rgba(255,250,240,.78);
  font-size: 15px;
  font-weight: 720;
}

.footer-grid-nav a:hover {
  color: var(--gold-soft);
}

.footer-bottomline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(255,250,240,.48);
  font-size: 13px;
}

.footer-bottomline a {
  color: var(--gold-soft);
}

.footer-bottomline a:hover,
.footer-bottomline span:hover {
  opacity: .72;
}

.closing-panel-inner {
  border-top: 0;
}

@media (max-width: 1040px) {
  .header-frame {
    display: flex;
    justify-content: space-between;
  }

  .interface-row,
  .interface-row-alt,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-summary {
    justify-self: start;
    text-align: left;
  }

  .footer-grid-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 22px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-inline: 10px;
  }

  .brand-slot {
    width: 30px;
    height: 30px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .interface-shot {
    padding: 10px;
    border-radius: 18px;
  }

  .footer-grid-nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottomline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-grid-nav {
    grid-template-columns: 1fr;
  }
}


.brand-copy strong span {
  color: var(--gold);
}

.release-panel.release-board {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  justify-self: center;
  border: 0;
  background: transparent;
}

.release-board .release-row {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: end;
  justify-items: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(26, 23, 17, 0.28);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(244, 183, 40, 0.18), transparent 45%),
    rgba(255, 250, 240, 0.36);
  box-shadow: none;
  color: var(--text-ink);
}

.release-board .release-row:hover {
  background:
    linear-gradient(180deg, rgba(244, 183, 40, 0.30), transparent 50%),
    rgba(255, 250, 240, 0.52);
  box-shadow: none;
}

.release-board .os-mark {
  margin-bottom: auto;
  border-radius: 0;
  border-color: rgba(26, 23, 17, 0.42);
  background: rgba(255, 250, 240, 0.52);
}

.release-board .release-row strong {
  font-size: clamp(30px, 4vw, 45px);
}

.release-board .release-row b {
  justify-self: stretch;
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  border-radius: 0;
  background: rgba(244, 183, 40, 0.14);
}

.release-board .release-row:hover b {
  background: var(--gold);
}

.release-utility a {
  border-radius: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.release-utility a:hover {
  background: transparent;
  text-decoration-thickness: 2px;
}

.interface-cta-band {
  margin-top: 60px;
  background: var(--gold);
}

.interface-cta {
  max-width: 760px;
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: clamp(42px, 5.6vw, 72px) 0;
  text-align: center;
}

.interface-cta h3 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .9;
  letter-spacing: -.075em;
  font-weight: 760;
}

.interface-cta p {
  max-width: 560px;
  margin: 0;
  color: rgba(var(--text-ink-rgb), 0.66);
  line-height: 1.45;
  letter-spacing: -.018em;
}

.download-now-button {
  gap: 8px;
  margin-top: 4px;
  box-shadow: 0 10px 22px rgba(53, 53, 52, 0.14);
}

.download-now-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(53, 53, 52, 0.18);
}

.download-now-button svg {
  flex: none;
}

.section-faq {
  padding-block: clamp(30px, 3.8vw, 52px);
}

.faq-simple-head {
  display: none !important;
}

@media (max-width: 1040px) {
  .release-panel.release-board {
    grid-template-columns: 1fr;
  }

  .release-board .release-row {
    min-height: 156px;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    align-content: center;
    justify-items: start;
  }

  .release-board .os-mark {
    margin-bottom: 0;
  }

  .release-board .release-row b {
    justify-self: end;
    width: auto;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .release-board .release-row {
    grid-template-columns: 1fr;
    min-height: 168px;
  }

  .release-board .release-row b {
    justify-self: stretch;
    width: 100%;
  }
}


.brand-wordmark {
  gap: 10px;
}

.brand-icon-slot,
.footer-icon-slot {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 4px;
}

.brand-word {
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.brand-word strong,
.footer-brand strong {
  color: var(--gold);
  font-weight: 820;
}

.header-frame {
  border-radius: 6px;
  background: rgba(243, 234, 214, 0.36);
}

.site-header.is-scrolled .header-frame,
.site-header.menu-active .header-frame {
  background: rgba(255, 250, 240, 0.90);
}

.desktop-nav {
  gap: 10px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.desktop-nav a,
.header-link {
  min-height: 34px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(var(--text-ink-rgb), 0.68);
  border: 0;
  transition: color 140ms ease, opacity 140ms ease;
}

.desktop-nav a:hover,
.header-link:hover {
  color: var(--gold-soft);
  background: transparent;
  opacity: 0.74;
}

.header-actions .button-dark,
.button {
  border-radius: 4px;
}

.menu-button {
  border-radius: 4px;
}

.interface-shot img[src$=".webp"] {
  min-height: 300px;
  object-fit: cover;
}

.interface-shot img[src$=".webp"]::before {
  content: "";
}

.site-footer-dark {
  padding: 52px 0;
  background: #16120f;
  color: var(--white);
}

.footer-compact {
  display: grid;
  gap: 22px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.footer-compact-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-compact .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 17px;
  font-weight: 780;
  letter-spacing: -0.035em;
}


.footer-support {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.footer-support:hover {
  opacity: 0.72;
}

.footer-compact-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  max-width: 760px;
}

.footer-compact-nav a {
  color: rgba(255, 250, 240, 0.72);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
  transition: color 140ms ease, opacity 140ms ease;
}

.footer-compact-nav a:hover {
  color: var(--gold-soft);
  opacity: 0.82;
}

.footer-compact-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: rgba(255, 250, 240, 0.46);
  font-size: 12.5px;
}

.footer-compact-bottom span:first-child {
  justify-self: start;
}

.footer-compact-bottom span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-compact-bottom span:last-child {
  justify-self: end;
  text-align: right;
}

.footer-compact-bottom a {
  color: rgba(255, 250, 240, 0.68);
  text-decoration: none;
}

.footer-compact-bottom a:hover {
  color: var(--gold-soft);
}

.footer-minimal,
.footer-top,
.footer-grid-nav,
.footer-bottomline {
  all: unset;
}

@media (max-width: 1040px) {
  .footer-compact-head {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-compact-nav {
    justify-content: center;
    margin-inline: auto;
  }

  .footer-compact-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-compact-bottom span:first-child,
  .footer-compact-bottom span:nth-child(2),
  .footer-compact-bottom span:last-child {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .brand-icon-slot {
    width: 32px;
    height: 32px;
  }

  .brand-word {
    font-size: 14px;
  }

  .footer-compact-nav {
    gap: 10px 16px;
  }
}


.header-frame {
  min-height: 60px;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  padding: 8px 12px;
  border: 1px solid rgba(26, 23, 17, 0.16);
  border-radius: 0;
  background: rgba(243, 234, 214, 0.44);
  box-shadow: none !important;
}

.site-header.is-scrolled .header-frame,
.site-header.menu-active .header-frame {
  background: rgba(255, 250, 240, 0.90);
  border-color: rgba(26, 23, 17, 0.20);
  box-shadow: none !important;
}

.brand-lockup {
  display: inline-grid;
  grid-template-columns: 34px auto;
  grid-template-rows: auto auto;
  column-gap: 10px;
  row-gap: 1px;
  align-items: center;
  width: fit-content;
}

.brand-lockup .brand-icon-slot {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  border-radius: 0;
}

.brand-name {
  grid-column: 2;
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand-name strong {
  color: var(--gold);
  font-weight: 850;
}

.brand-meta {
  grid-column: 2;
  color: rgba(var(--text-ink-rgb), 0.52);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 9px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.desktop-nav {
  gap: 14px;
  padding: 0;
  background: transparent;
}

.desktop-nav a,
.header-link {
  min-height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(var(--text-ink-rgb), 0.66);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: -.01em;
}

.desktop-nav a:hover,
.header-link:hover {
  color: var(--gold-soft);
  background: transparent;
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.header-actions {
  gap: 12px;
}

.header-actions .button-dark {
  min-height: 36px;
  border-radius: 0;
  box-shadow: none;
}

.section-interface {
  padding-top: clamp(44px, 5.5vw, 76px);
  padding-bottom: 0;
}

.section-interface .interface-copy p,
.section-interface .interface-cta p {
  color: rgba(var(--text-ink-rgb), 0.70);
}

.section-interface .button-dark {
  border-radius: 0;
}

.closing-panel {
  background: var(--paper);
}

.closing-panel-inner {
  min-height: 150px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.closing-panel h2 {
  max-width: 780px;
}

.site-footer-dark {
  padding: 54px 0 52px;
  background: #16120f;
  color: var(--white);
}

.footer-refined {
  display: grid;
  gap: 24px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.footer-refined-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-refined .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 17px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.footer-refined .footer-brand strong {
  color: var(--gold);
}

.footer-refined .footer-icon-slot {
  width: 38px;
  height: 38px;
  border-radius: 0;
}

.brand-icon-slot img,
.footer-icon-slot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-support {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.footer-support:hover {
  opacity: .74;
}

.footer-refined-nav {
  justify-self: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 820px;
  text-align: center;
}

.footer-refined-nav a {
  color: rgba(255, 250, 240, 0.72);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.footer-refined-nav a:hover {
  color: var(--gold-soft);
}

.footer-info {
  justify-self: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 820px;
}

.footer-info a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.58);
  font-size: 12px;
  font-weight: 680;
  text-decoration: none;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.footer-info a:hover {
  border-color: rgba(255, 215, 106, 0.42);
  background: rgba(255, 250, 240, 0.05);
  color: var(--gold-soft);
}

.footer-refined-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: rgba(255, 250, 240, 0.46);
  font-size: 12.5px;
}

.footer-refined-bottom span:first-child {
  justify-self: start;
}

.footer-refined-bottom span:nth-child(2) {
  justify-self: center;
  text-align: center;
}

.footer-refined-bottom span:last-child {
  justify-self: end;
  text-align: right;
}

.footer-refined-bottom a {
  color: rgba(255, 250, 240, 0.68);
  text-decoration: none;
}

.footer-refined-bottom a:hover {
  color: var(--gold-soft);
}

.footer-compact,
.footer-compact-head,
.footer-compact-nav,
.footer-compact-bottom {
  all: unset;
}

@media (max-width: 1040px) {
  .header-frame {
    display: flex;
    justify-content: space-between;
  }

  .footer-refined-head {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .footer-refined-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-refined-bottom span:first-child,
  .footer-refined-bottom span:nth-child(2),
  .footer-refined-bottom span:last-child {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .brand-lockup {
    grid-template-columns: 32px auto;
  }

  .brand-lockup .brand-icon-slot {
    width: 32px;
    height: 32px;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-meta {
    font-size: 8.5px;
  }

  .footer-info a {
    width: 100%;
    justify-content: center;
  }
}

.os-win {
  --os-icon: url("assets/windows.webp");
}

.os-mac {
  --os-icon: url("assets/apple.webp");
}

.os-linux {
  --os-icon: url("assets/linux.webp");
}

.release-board .os-mark {
  width: 76px;
  height: 76px;
  display: block;
  padding: 0;
  margin-bottom: auto;
  border: 0;
  border-radius: 0;
  background: var(--os-icon) center / contain no-repeat;
  box-shadow: none;
  color: transparent;
}

.release-board .os-mark::before {
  content: none;
  display: none;
}

.release-board .os-mark i {
  display: none;
}

@media (max-width: 1040px) {
  .release-board .release-row {
    grid-template-columns: 64px 1fr auto;
  }

  .release-board .os-mark {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
  }
}

@media (max-width: 760px) {
  .release-board .release-row {
    grid-template-columns: 1fr;
  }

  .release-board .os-mark {
    width: 64px;
    height: 64px;
  }
}

.site-header {
  padding: 0 16px;
  background: transparent;
  transition: background 160ms ease, border-color 160ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 250, 240, 0.92);
  border-bottom-color: rgba(26, 23, 17, 0.12);
  backdrop-filter: blur(16px);
}

.header-frame {
  min-height: 52px;
  padding: 6px 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.site-header.is-scrolled .header-frame,
.site-header.menu-active .header-frame {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

.header-brand {
  gap: 8px;
}

.header-brand .brand-icon {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: contain;
}

.header-brand .brand-name {
  color: var(--text-ink);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.header-brand .brand-name strong {
  color: var(--gold);
  font-weight: 850;
}

.desktop-nav {
  gap: 15px;
  padding: 0;
  background: transparent !important;
  border: 0;
}

.desktop-nav a,
.nav-trigger,
.header-link {
  min-height: 30px;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(var(--text-ink-rgb), 0.55);
  font-size: 13px;
  font-weight: 600;
  transition: color 140ms ease, opacity 140ms ease;
}

.desktop-nav a:hover,
.nav-trigger:hover,
.header-link:hover {
  color: var(--gold);
  background: transparent !important;
  text-decoration: none;
  opacity: 1;
}

.header-actions {
  gap: 12px;
}

.header-actions .button-dark {
  min-height: 34px;
  padding-inline: 14px;
  border-radius: 4px;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--text-ink);
}

.header-actions .button-dark:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--text-ink);
}

.menu-button {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(255, 250, 240, 0.48);
}

.release-row .os-art,
.os-art {
  width: 55px;
  height: 55px;
  display: block;
  object-fit: contain;
  border: 0 !important;
  background: transparent !important;
  padding: 0 !important;
}

.os-art i,
.os-art::before,
.os-art::after {
  content: none !important;
  display: none !important;
}

.release-row {
  grid-template-columns: 56px minmax(120px, .9fr) minmax(110px, .55fr) minmax(132px, .55fr);
}

.release-row b {
  border-radius: 4px;
}

.release-panel .release-row:hover .os-art {
  transform: translateY(-1px);
}

@media (max-width: 1040px) {
  .header-frame {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 0 10px;
  }

  .header-brand .brand-name {
    font-size: 14px;
  }

  .header-brand .brand-icon {
    width: 30px;
    height: 30px;
  }

  .release-row {
    grid-template-columns: 46px 1fr;
  }
}

.hero-scene {
  --hero-image: url("assets/hero-large.webp");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--paper);
  background-image:
    linear-gradient(180deg, rgba(243, 234, 214, 0.70) 0%, rgba(243, 234, 214, 0.48) 68%, rgba(243, 234, 214, 0.56) 100%),
    var(--hero-image);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 250, 240, 0.34), transparent 48%),
    linear-gradient(90deg, rgba(26, 23, 17, 0.10), transparent 22%, transparent 78%, rgba(26, 23, 17, 0.08));
  pointer-events: none;
  opacity: 0;
}

.hero-scene > .hero,
.hero-scene > .electrum-strip {
  position: relative;
  z-index: 1;
}

.hero {
  background: transparent;
}

.electrum-strip {
  padding-bottom: clamp(30px, 3.8vw, 48px);
  background: transparent;
}

.electrum-strip-inner {
  background: rgba(255, 250, 240, 0.26);
  backdrop-filter: blur(10px);
}

.site-header:not(.is-scrolled):not(.menu-active) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-footer-dark {
  background-color: #16120f;
  background-image:
    linear-gradient(180deg, rgba(22, 18, 15, 0.78), rgba(22, 18, 15, 0.88)),
    url("assets/footer-large.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-actions .button-dark {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--text-ink);
}

.hero-actions .button-dark:hover {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  color: var(--text-ink);
}

.electrum-strip-inner {
  border-color: rgba(26, 23, 17, 0.24);
  background: rgba(255, 250, 240, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.34);
}

.electrum-strip-mark {
  border-color: rgba(26, 23, 17, 0.30);
  background: rgba(244, 183, 40, 0.26);
  color: var(--text-ink);
}

.electrum-strip p {
  color: rgba(var(--text-ink-rgb), 0.74);
}

.electrum-strip a {
  color: var(--text-ink);
  text-decoration-color: rgba(26, 23, 17, 0.34);
  text-decoration-thickness: 1px;
}

.electrum-strip a:hover {
  color: var(--text-ink);
  text-decoration-color: var(--ink);
}

.page-lead {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(var(--text-ink-rgb), 0.72);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.page-lead code,
.content-card code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: .92em;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.page-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
  color: rgba(var(--text-ink-rgb), 0.68);
  font-size: 12px;
  font-weight: 760;
}

.release-row small {
  color: rgba(var(--text-ink-rgb), 0.52);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  overflow-wrap: anywhere;
}

.release-matrix {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.release-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.46);
}

.release-detail-card h3 {
  margin: 5px 0 7px;
  color: var(--text-ink);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.release-detail-card p {
  margin: 0;
}

.release-platform {
  color: rgba(var(--text-ink-rgb), 0.56);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.checksum-table {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checksum-row {
  display: grid;
  grid-template-columns: minmax(120px, .7fr) 70px minmax(0, 2fr);
  gap: 10px 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.42);
}

.checksum-row strong {
  grid-row: span 2;
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 820;
}

.checksum-row span {
  color: rgba(var(--text-ink-rgb), 0.54);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.checksum-row code,
.command-box code {
  color: rgba(var(--text-ink-rgb), 0.82);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  line-height: 1.48;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.command-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.command-grid h3,
.mini-grid h3 {
  margin: 0 0 8px;
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: -0.02em;
}

.command-box {
  margin: 0;
  padding: 15px;
  border: 1px solid rgba(26, 23, 17, 0.16);
  background: rgba(255, 250, 240, 0.62);
  white-space: pre-wrap;
  overflow-x: auto;
}

.notice-box {
  margin: 16px 0;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(244, 183, 40, 0.13);
}

.notice-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--text-ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-weight: 820;
}

.notice-box p:last-child,
.mini-grid article p:last-child {
  margin-bottom: 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mini-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.38);
}

.policy-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy-list li::marker {
  color: var(--gold);
}

@media (max-width: 1040px) {
  .release-board .release-row small {
    grid-column: 2 / -1;
  }

  .release-detail-card,
  .checksum-row {
    grid-template-columns: 1fr;
  }

  .checksum-row strong {
    grid-row: auto;
  }

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

@media (max-width: 760px) {
  .page-meta,
  .inline-actions {
    display: grid;
  }

  .release-board .release-row small {
    grid-column: 1;
  }

  .release-detail-card .button,
  .inline-actions .button {
    width: 100%;
  }
}
