/* Job Search Central staging makeover: restrained product-led editorial theme. */

:root,
:root[data-theme="light"],
html[data-theme="light"],
body[data-theme="light"],
.theme-light {
  color-scheme: light;
  --ink: #111827;
  --muted: #566173;
  --quiet: #737d8d;
  --line: #d9dee7;
  --line-strong: #bfc7d2;
  --paper: #ffffff;
  --canvas: #f6f7f8;
  --surface-soft: #f0f2f5;
  --surface-tint: #edf3fb;
  --surface-teal: #e9f6f3;
  --brand: #1d5cc6;
  --brand-dark: #184da6;
  --teal: #087d70;
  --teal-dark: #06675d;
  --teal-deep: #0a5b53;
  --orange: #b45309;
  --orange-soft: #fff4e8;
  --danger: #b42318;
  --success: #067647;
  --header-bg: rgba(246, 247, 248, 0.94);
  --footer-bg: #111827;
  --shadow: 0 24px 54px rgba(17, 24, 39, 0.12);
  --shadow-soft: 0 8px 20px rgba(17, 24, 39, 0.06);
  --shadow-focus: 0 0 0 3px rgba(29, 92, 198, 0.18);
  --radius-sm: 6px;
  --radius-md: 9px;
  --radius-lg: 12px;
  --radius-pill: 9px;
}

:root[data-theme="dark"],
html[data-theme="dark"],
body[data-theme="dark"],
.theme-dark,
.dark {
  color-scheme: dark;
  --ink: #f3f4f6;
  --muted: #aab2bf;
  --quiet: #8792a1;
  --line: #303844;
  --line-strong: #46505e;
  --paper: #161b22;
  --canvas: #0e1117;
  --surface-soft: #1c222b;
  --surface-tint: #192334;
  --surface-teal: #122b29;
  --brand: #79a7ff;
  --brand-dark: #5f91ef;
  --teal: #54c3b3;
  --teal-dark: #3aa796;
  --teal-deep: #86ddd0;
  --orange: #f0a25c;
  --orange-soft: #322419;
  --danger: #ff8a80;
  --success: #63d79c;
  --header-bg: rgba(14, 17, 23, 0.94);
  --footer-bg: #090c11;
  --shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 8px 20px rgba(0, 0, 0, 0.16);
  --shadow-focus: 0 0 0 3px rgba(121, 167, 255, 0.2);
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Segoe UI Variable Text", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  display: none;
}

::selection {
  background: rgba(29, 92, 198, 0.18);
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  font-weight: 670;
  letter-spacing: -0.035em;
}

a {
  text-underline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px max(24px, calc((100vw - 1180px) / 2));
  background: var(--header-bg);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.brand,
.site-header .brand {
  display: inline-flex;
  grid-column: auto;
  flex: 0 1 auto;
  align-items: center;
  justify-self: auto;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong,
.brand-copy-gradient strong {
  background: none;
  color: var(--ink);
  font-size: 17px;
  font-weight: 680;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand small,
.brand-copy-gradient small {
  margin-top: 3px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-transform: none;
}

.top-nav {
  display: flex;
  grid-column: auto;
  min-width: 0;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  justify-self: auto;
  gap: 4px;
}

.top-nav a,
.account-chip {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav a[aria-current="page"] {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transform: none;
}

.account-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-theme-toggle {
  position: relative;
  display: inline-grid;
  width: 92px;
  min-height: 36px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px;
  background: var(--paper);
  color: var(--muted);
  box-shadow: none;
  cursor: pointer;
}

.site-theme-toggle span,
.site-theme-toggle strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.site-theme-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 5px;
  background: var(--brand-dark);
  box-shadow: none;
  transition: transform 0.16s ease;
}

[data-theme="dark"] .site-theme-toggle::before {
  transform: translateX(100%);
}

[data-theme="light"] .site-theme-toggle span,
[data-theme="dark"] .site-theme-toggle strong {
  color: #ffffff;
}

.site-theme-toggle:hover,
.site-theme-toggle:focus-visible {
  border-color: var(--brand);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.button,
.header-subscribe,
.header-home {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 17px;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.button.primary {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #ffffff;
  box-shadow: none;
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  outline: none;
  box-shadow: var(--shadow-focus);
  transform: none;
}

.button.secondary,
[data-theme="dark"] .button.secondary {
  border-color: var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--brand);
  outline: none;
  box-shadow: var(--shadow-focus);
  transform: none;
}

.header-download {
  min-height: 38px;
  margin-left: 6px;
  padding-inline: 14px;
}

main {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 24px 96px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: clamp(64px, 8vw, 104px) 0 72px;
  background: transparent;
  box-shadow: none;
  isolation: auto;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-copy {
  position: static;
  z-index: auto;
  max-width: 590px;
  padding: 0;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

[data-theme="dark"] .eyebrow {
  color: var(--brand);
}

.hero-copy h1,
h1 {
  max-width: 12ch;
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(46px, 5.6vw, 72px);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy p,
.hero-deck {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--quiet);
  font-size: 13px;
  list-style: none;
}

.hero-facts li {
  position: relative;
  padding-left: 14px;
}

.hero-facts li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  transform: translateY(-50%);
}

.hero-visual,
.evidence-visual {
  margin: 0;
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-visual img,
.evidence-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 11px 14px;
  color: var(--quiet);
  font-size: 12px;
}

.hero-visual figcaption a {
  color: var(--brand);
  font-weight: 650;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  min-width: 0;
  padding: 22px 24px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.proof-strip div:first-child {
  border-left: 0;
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 680;
}

.proof-strip span {
  color: var(--quiet);
  font-size: 13px;
}

.section,
.split-section {
  margin-top: 104px;
}

#features {
  scroll-margin-top: 96px;
}

#evidence-title {
  white-space: nowrap;
}

.section-intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px 72px;
  align-items: end;
  margin-bottom: 44px;
}

.section-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.section-intro h2,
.download-heading h2,
.evidence-copy h2,
.community-copy h2,
.samples-hero h1,
.legal-document h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.03;
}

.section-intro > p:last-child,
.download-heading > div > p:last-child,
.evidence-copy > p,
.community-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.workflow-list {
  border-bottom: 1px solid var(--line);
}

.workflow-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.92fr) minmax(290px, 0.72fr);
  gap: 26px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.workflow-number {
  color: var(--quiet);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.workflow-item h3 {
  margin: -4px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.workflow-item p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow-item ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.75;
}

.workflow-item li::marker {
  color: var(--teal);
}

.evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: clamp(42px, 6vw, 78px);
  align-items: center;
}

.evidence-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.evidence-copy h2 {
  margin-bottom: 22px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  color: var(--brand);
  font-weight: 650;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.download-section {
  position: relative;
  margin-inline: 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  box-shadow: none;
}

.download-section::before {
  display: none;
}

.download-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  margin-bottom: 30px;
}

.download-heading h2 {
  max-width: 18ch;
  margin-bottom: 15px;
  font-size: clamp(34px, 4vw, 48px);
}

.security-notices {
  display: block;
  margin: 0;
}

.security-review {
  display: grid;
  gap: 2px;
  width: auto;
  margin: 0;
  border: 1px solid rgba(8, 125, 112, 0.35);
  border-radius: 8px;
  padding: 11px 13px;
  background: var(--surface-teal);
  white-space: normal;
}

.security-review strong {
  color: var(--teal-deep);
  font-size: 13px;
}

.security-review a {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 600;
}

.download-options,
.download-picker {
  display: grid;
  gap: 12px;
}

.download-picker {
  grid-template-columns: minmax(170px, 0.7fr) minmax(220px, 1fr) auto;
  align-items: end;
  margin-bottom: 0;
}

.download-field {
  display: grid;
  gap: 7px;
}

.download-field span {
  color: var(--quiet);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.download-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  padding: 0 12px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-weight: 600;
}

.download-select:hover,
.download-select:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.download-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.download-selected,
.download-option {
  display: grid;
  min-height: 92px;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
  background: var(--surface-soft);
  color: var(--ink);
  box-shadow: none;
}

.download-selected.is-empty {
  grid-template-columns: 1fr;
}

.download-option-icon {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  box-shadow: none;
}

.download-option-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-selected strong,
.download-selected small,
.download-filename,
.download-version,
.download-size,
.download-hash {
  display: block;
}

.download-selected small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.download-filename,
.download-version,
.download-size,
.download-hash {
  color: var(--quiet);
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.download-hash {
  color: var(--teal-deep);
  overflow-wrap: anywhere;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.community-copy h2 {
  margin-bottom: 20px;
}

.community-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.community-links a {
  display: grid;
  gap: 2px;
  border-top: 1px solid var(--line);
  padding: 14px 0;
  color: var(--ink);
  text-decoration: none;
}

.community-links a:hover strong,
.community-links a:focus-visible strong {
  color: var(--brand);
}

.community-links span {
  color: var(--quiet);
  font-size: 13px;
}

.donation-panel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  background: var(--paper);
}

.donation-panel h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.donation-panel > p {
  margin: 0;
  color: var(--muted);
}

.donation-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.donation-row {
  display: grid;
  min-height: 68px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.donation-row:hover,
.donation-row:focus-visible {
  border-color: var(--line);
  color: var(--brand);
  outline: none;
  box-shadow: none;
  transform: none;
}

.donation-label {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.donation-row strong,
.donation-row small {
  display: block;
}

.donation-row small {
  margin-top: 1px;
  color: var(--quiet);
  font-size: 12px;
}

.fine-print {
  margin-top: 13px !important;
  color: var(--quiet) !important;
  font-size: 11px;
}

.site-footer {
  width: min(1180px, calc(100% - 48px));
  row-gap: 9px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  background: transparent;
  color: var(--muted);
}

.footer-row {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: grid;
  gap: 4px;
  justify-self: start;
  justify-items: start;
  text-align: left;
}

.footer-brand-link {
  font-size: 12px;
}

.footer-brand span,
.footer-copyright {
  color: var(--quiet);
  font-size: 13px;
}

.footer-copyright {
  display: block;
  width: 100%;
  margin-top: 8px;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-self: end;
  justify-content: flex-end;
  gap: 8px 14px;
  font-size: 12px;
}

.site-footer a,
.footer-email {
  color: var(--muted);
}

.site-footer .footer-brand-link {
  color: var(--ink);
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--brand);
}

.footer-social-link {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  align-items: center;
  justify-content: center;
}

.footer-social-icon {
  display: block;
  width: 20px;
  height: 20px;
}

.footer-social-icon-discord {
  color: #5865f2;
}

.footer-social-icon-linkedin {
  color: #0a66c2;
}

.crypto-dialog {
  width: min(620px, calc(100vw - 32px));
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 22px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.crypto-dialog::backdrop {
  background: rgba(9, 12, 17, 0.58);
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--ink);
  box-shadow: none;
}

/* Shared secondary pages retain their document layouts with the new shell. */
.header-home,
.header-subscribe {
  grid-column: auto;
  justify-self: auto;
  min-height: 36px;
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.header-home {
  display: none;
}

.site-header .top-nav > a[href="/#download"] {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #ffffff;
}

.site-header .top-nav > a[href="/#download"]:hover,
.site-header .top-nav > a[href="/#download"]:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.samples-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  min-height: 0;
  margin: 70px 0 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.samples-hero .section-head {
  max-width: 760px;
  margin: 0;
}

.samples-hero .section-head p {
  max-width: 66ch;
  margin: 20px 0 0;
  color: var(--muted);
}

.samples-workspace {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: var(--paper);
  box-shadow: none;
}

.samples-toolbar {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.sample-tab,
.sample-step,
.samples-picker select {
  border-radius: 7px;
  box-shadow: none;
}

.sample-tab.is-active {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #ffffff;
}

.legal-section {
  margin-top: 70px;
}

.legal-document {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: clamp(28px, 5vw, 58px);
  background: var(--paper);
  box-shadow: none;
}

.legal-document h1 {
  margin-bottom: 10px;
}

.legal-document h2 {
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

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

  .nav-link {
    display: none !important;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-copy h1 {
    max-width: 13ch;
  }

  .hero-visual {
    width: 100%;
  }

  .section-intro,
  .download-heading,
  .evidence-section,
  .community-section {
    grid-template-columns: 1fr;
  }

  .section-intro > p:last-child,
  .evidence-copy {
    max-width: 720px;
  }

  .workflow-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .workflow-item ul {
    grid-column: 2;
  }

  .download-heading .security-notices {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: sticky;
    min-height: 62px;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 9px 14px;
  }

  .brand-copy small,
  .site-theme-toggle,
  .account-nav {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .top-nav {
    margin-left: auto;
  }

  .header-download {
    min-height: 38px;
    margin-left: 0;
  }

  main {
    padding-inline: 16px;
    padding-bottom: 72px;
  }

  .hero {
    gap: 36px;
    padding: 56px 0 48px;
  }

  .hero-copy h1,
  h1 {
    max-width: 14ch;
    font-size: clamp(42px, 13vw, 56px);
  }

  .hero-deck,
  .hero-copy p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-visual figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip div,
  .proof-strip div:first-child {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 16px 12px;
  }

  .proof-strip div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .section,
  .split-section {
    margin-top: 76px;
  }

  .section-intro {
    gap: 22px;
    margin-bottom: 32px;
  }

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

  .section-intro h2,
  .download-heading h2,
  .evidence-copy h2,
  .community-copy h2,
  .samples-hero h1,
  .legal-document h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .workflow-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .workflow-item ul {
    grid-column: auto;
    margin-top: 4px;
  }

  .download-section {
    padding: 24px 18px;
  }

  .download-picker {
    grid-template-columns: 1fr;
  }

  .download-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

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

  .community-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: calc(100% - 32px);
  }

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .samples-hero {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .samples-actions .button {
    width: 100%;
  }

  .samples-workspace {
    padding: 14px;
  }

  .legal-section {
    margin-top: 54px;
  }

  .legal-document {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
