:root {
  --cloud: #f2f4f1;
  --surface: #fcfdfb;
  --forest: #132f29;
  --forest-2: #1b4038;
  --ink: #1b2926;
  --muted: #596864;
  --quiet: #77847f;
  --line: #d5ddd8;
  --line-strong: #abbab4;
  --jade: #176b5e;
  --jade-dark: #0f554b;
  --brass: #9a7b46;
  --brass-soft: #f2eadb;
  --mist: #dfe9e5;
  --mist-light: #ebf1ee;
  --orange: #e88435;
  --orange-soft: #fff4e9;
  --red: #bc3e35;
  --red-soft: #fff1ef;
  --green: #16705d;
  --green-soft: #edf8f4;
  --content: min(1180px, calc(100vw - 56px));
  --font: "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --text-readable: .875rem;
  --text-supporting: .9375rem;
  --shadow-small: 0 14px 40px rgba(19, 47, 41, .07);
  --shadow-large: 0 35px 90px rgba(19, 47, 41, .11);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #f1a35d;
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--forest);
  color: white;
  font-size: .84rem;
  font-weight: 750;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(171, 186, 180, .62);
  background: rgba(252, 253, 251, .94);
  backdrop-filter: blur(20px);
}

.header-inner {
  width: var(--content);
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.015em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
  overflow: hidden;
  border-radius: 9px;
  background: var(--forest);
}

.brand-mark i {
  position: absolute;
  left: 8px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #b7e2a1;
}

.brand-mark i:nth-child(1) { top: 8px; }
.brand-mark i:nth-child(2) { top: 14px; width: 10px; }
.brand-mark i:nth-child(3) { top: 20px; }

.desktop-nav { display: flex; align-items: center; gap: 22px; }
.desktop-nav a { position: relative; padding: 10px 0; border-radius: 0; color: var(--muted); font-size: .84rem; font-weight: 620; text-decoration: none; }
.desktop-nav a:hover { color: var(--forest); }
.desktop-nav a[aria-current="page"] { background: transparent; color: var(--forest); }
.desktop-nav a[aria-current="page"]::after { content: ""; position: absolute; right: 0; bottom: 3px; left: 0; height: 1px; background: var(--brass); }

.header-actions { justify-self: end; display: flex; align-items: center; gap: 16px; }
.system-state { display: inline-flex; align-items: center; color: var(--muted); font-size: .76rem; white-space: nowrap; }
.system-state i, .connection-pill i { width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: #38a47d; box-shadow: 0 0 0 4px rgba(56, 164, 125, .12); }
.header-cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 3px; background: var(--forest); color: white; font-size: .82rem; font-weight: 700; text-decoration: none; }
.header-cta:hover { background: var(--jade-dark); }

.menu-button { min-width: 86px; height: 42px; padding: 0 12px; display: none; align-items: center; justify-content: space-between; gap: 11px; border: 1px solid var(--line-strong); border-radius: 3px; background: #f8f9f7; color: var(--forest); cursor: pointer; }
.menu-button:hover, .menu-button[aria-expanded="true"] { border-color: var(--forest); background: var(--forest); color: white; }
.menu-label { font-size: .875rem; font-weight: 680; }
.menu-glyph { position: relative; width: 17px; height: 13px; flex: 0 0 auto; }
.menu-glyph i { position: absolute; right: 0; width: 17px; height: 1px; background: currentColor; transition: top .18s ease, transform .18s ease; }
.menu-glyph i:first-child { top: 3px; }
.menu-glyph i:last-child { top: 9px; width: 12px; }
.menu-button[aria-expanded="true"] .menu-glyph i:first-child { top: 6px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] .menu-glyph i:last-child { top: 6px; width: 17px; transform: rotate(-45deg); }
.mobile-nav { display: none; }

.hero {
  width: var(--content);
  min-height: 650px;
  margin: 0 auto;
  padding: 78px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, .72fr);
  align-items: center;
  gap: clamp(54px, 7vw, 90px);
}

.availability-line { display: inline-flex; align-items: center; margin-bottom: 25px; color: var(--brass); font-size: .84rem; font-weight: 700; }
.availability-line i { width: 28px; height: 1px; margin-right: 12px; background: var(--brass); }
h1, h2, h3 { margin-top: 0; color: var(--forest); font-family: var(--display); letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 28px; font-size: clamp(3.3rem, 5.25vw, 5rem); font-weight: 600; line-height: .98; }
.hero-lede { max-width: 650px; margin: 0 0 33px; color: var(--muted); font-size: 1.03rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 11px; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .84rem;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.button-primary { border-color: var(--forest); background: var(--forest); color: white; box-shadow: 0 10px 24px rgba(19,47,41,.13); }
.button-primary:hover { background: var(--jade-dark); }
.button-secondary { border-color: var(--line-strong); background: rgba(252,253,251,.65); color: var(--forest); }
.button-secondary:hover { border-color: var(--forest); color: var(--forest); }
.button:disabled { background: #aab5b1; color: #eef1f0; cursor: not-allowed; }

.assurance-list { margin: 30px 0 0; padding: 22px 0 0; display: flex; flex-wrap: wrap; gap: 10px 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: .73rem; list-style: none; }
.assurance-list li::before { content: ""; width: 5px; height: 5px; margin: 0 9px 2px 0; display: inline-block; border-radius: 50%; background: var(--brass); }

.service-index { overflow: hidden; border: 1px solid var(--forest); border-radius: 4px; background: var(--forest); box-shadow: var(--shadow-large); color: white; }
.service-index-heading { padding: 24px 26px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.14); }
.service-index-heading span { display: block; color: #9fb2ac; font-size: .75rem; }
.service-index-heading strong { display: block; margin-top: 4px; color: white; font-size: .92rem; }
.connection-pill { flex: 0 0 auto; padding: 7px 10px; display: inline-flex !important; align-items: center; border: 1px solid rgba(183,226,161,.25); border-radius: 99px; background: rgba(183,226,161,.08); color: #c9e8ba !important; font-size: .74rem !important; font-weight: 700; }
.offer-summary { padding: 30px 26px 27px; display: grid; grid-template-columns: 1fr auto; align-items: end; border-bottom: 1px solid rgba(255,255,255,.14); }
.offer-summary span, .offer-summary small { color: #9fb2ac; font-size: var(--text-readable); }
.offer-summary strong { grid-row: 1 / 3; grid-column: 2; color: #f0dec0; font-family: var(--display); font-size: 2.65rem; font-weight: 600; line-height: 1; }
.offer-summary small { margin-top: 4px; }
.service-index nav { display: grid; }
.service-index nav a { min-height: 82px; padding: 15px 26px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.11); text-decoration: none; transition: background .18s ease; }
.service-index nav a:last-child { border-bottom: 0; }
.service-index nav a:hover { background: rgba(255,255,255,.06); }
.service-index nav strong, .service-index nav small { display: block; }
.service-index nav strong { color: white; font-size: .92rem; }
.service-index nav small { max-width: 330px; margin-top: 5px; color: #9fb2ac; font-size: .78rem; line-height: 1.5; }
.service-index nav a > i { width: 9px; height: 9px; border-top: 1px solid #c7ad7e; border-right: 1px solid #c7ad7e; transform: rotate(45deg); transition: transform .18s ease; }
.service-index nav a:hover > i { transform: translateX(3px) rotate(45deg); }

.boundary-section { padding: 88px max(28px, calc((100vw - 1180px) / 2)) 94px; background: var(--forest); color: white; }
.boundary-heading, .process-heading { margin-bottom: 45px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 410px); align-items: end; gap: 55px; }
.boundary-heading > p, .process-heading > p { grid-column: 1 / -1; margin: 0 0 -38px; color: #d4bd93; font-size: .76rem; font-weight: 700; }
.boundary-heading h2, .process-heading h2 { margin: 0; font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 600; line-height: 1.06; }
.boundary-heading h2 { color: white; }
.boundary-heading > span { color: #b5c5c1; font-size: .9rem; line-height: 1.7; }
.boundary-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.boundary-grid article { padding: 36px 36px 38px 0; }
.boundary-grid article + article { padding-left: 36px; border-left: 1px solid rgba(255,255,255,.18); }
.boundary-grid span { display: block; margin-bottom: 22px; color: #d4bd93; font-size: .7rem; font-weight: 700; }
.boundary-grid strong { display: block; margin-bottom: 12px; color: white; font-family: var(--display); font-size: 1.22rem; font-weight: 600; line-height: 1.25; }
.boundary-grid p { max-width: 330px; margin: 0; color: #b7c5c1; font-size: .8rem; line-height: 1.72; }

.process-section { width: var(--content); margin: 0 auto; padding: 88px 0 96px; }
.process-heading h2 { margin: 0; font-size: clamp(2.5rem, 4.5vw, 4.2rem); line-height: 1; }
.process-heading > p { color: var(--jade); }
.process-heading > span { color: var(--muted); font-size: .9rem; line-height: 1.7; }
.process-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); list-style: none; }
.process-list li { min-height: 180px; padding: 29px 34px 20px 0; display: grid; grid-template-columns: 34px 1fr; align-content: start; gap: 16px; border-bottom: 1px solid var(--line); }
.process-list li + li { padding-left: 34px; border-left: 1px solid var(--line); }
.process-list > li > span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--mist); color: var(--jade); font-size: .74rem; font-weight: 750; }
.process-list strong { display: block; margin: 2px 0 9px; color: var(--forest); font-family: var(--display); font-size: 1.12rem; font-weight: 600; }
.process-list p { margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }

/* Purchase */
body[data-active-section="pricing"] main { background: #e9ece9; }
.pricing-page {
  --purchase-ink: #151719;
  --purchase-paper: #f8f9f8;
  width: var(--content);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: 30px 0 72px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}
.pricing-page .tool-breadcrumb { margin-bottom: 24px; }
.purchase-heading { min-height: 126px; padding: 26px 30px; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); align-items: end; gap: 58px; border: 1px solid #242829; border-bottom: 0; background: var(--purchase-ink); }
.purchase-heading > div > p { margin: 0 0 7px; color: #cdb17d; font-size: .875rem; font-weight: 650; }
.purchase-heading h1 { max-width: none; margin: 0; color: #f7f7f6; font-family: inherit; font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 590; letter-spacing: -.045em; line-height: 1.03; }
.purchase-heading > p { max-width: 430px; margin: 0; color: #adb3b1; font-size: .9rem; line-height: 1.6; }
.purchase-console { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(330px, .72fr); border: 1px solid #242829; background: var(--purchase-ink); box-shadow: 0 18px 48px rgba(18, 21, 22, .11); }
.purchase-brief { min-width: 0; background: var(--purchase-paper); }
.purchase-brief-heading { min-height: 77px; padding: 16px 23px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid #d4d7d4; }
.purchase-brief-heading h2 { margin: 0; color: var(--purchase-ink); font-family: inherit; font-size: 1.12rem; font-weight: 680; letter-spacing: -.025em; }
.purchase-brief-heading p { margin: 4px 0 0; color: #747a78; font-size: .875rem; }
.purchase-brief-heading > span { flex: 0 0 auto; display: inline-flex; align-items: center; color: #4d625d; font-size: .875rem; font-weight: 650; }
.purchase-brief-heading > span i { width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: #2d8a70; box-shadow: 0 0 0 4px rgba(45, 138, 112, .12); }
.purchase-specs { margin: 0; }
.purchase-specs > div { min-height: 76px; padding: 15px 23px; display: grid; grid-template-columns: minmax(105px, .38fr) minmax(0, 1fr); align-items: center; gap: 24px; border-bottom: 1px solid #d9dcda; }
.purchase-specs dt { color: #727876; font-size: .875rem; }
.purchase-specs dd { margin: 0; }
.purchase-specs dd strong, .purchase-specs dd span { display: block; }
.purchase-specs dd strong { color: #252829; font-size: .94rem; font-weight: 680; }
.purchase-specs dd span { margin-top: 3px; color: #737977; font-size: .875rem; line-height: 1.45; }
.capacity-notice { min-height: 87px; padding: 16px 23px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: #eee9de; }
.capacity-notice strong { display: block; color: #4f432f; font-size: .9rem; font-weight: 700; }
.capacity-notice p { margin: 4px 0 0; color: #6d6659; font-size: .875rem; line-height: 1.45; }
.capacity-notice a { flex: 0 0 auto; padding: 8px 11px; border: 1px solid #917b56; color: #5f4f34; font-size: .875rem; font-weight: 650; text-decoration: none; }
.capacity-notice a:hover { background: #5f4f34; color: white; }
.order-summary { min-width: 0; border-left: 1px solid #363a3a; background: var(--purchase-ink); color: #f4f5f4; }
.order-summary-heading { min-height: 77px; padding: 16px 23px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #35393a; color: #a5adaa; font-size: .875rem; }
.order-summary-heading strong { color: #d1b781; font-size: .875rem; font-weight: 650; }
.order-product { min-height: 130px; padding: 25px 23px; display: flex; align-items: center; gap: 18px; border-bottom: 1px solid #35393a; }
.purchase-mark { width: 46px; height: 46px; flex: 0 0 auto; display: grid; align-content: center; gap: 5px; padding: 0 12px; border: 1px solid #5a604f; background: #202323; }
.purchase-mark span { height: 2px; background: #cdb17d; }
.purchase-mark span:nth-child(2) { width: 70%; }
.order-product p { margin: 0 0 4px; color: #9da5a2; font-size: .875rem; }
.order-product h2 { margin: 0; color: #f5f6f5; font-family: inherit; font-size: 1.3rem; font-weight: 620; letter-spacing: -.025em; }
.order-total { margin: 0; padding: 10px 23px; border-bottom: 1px solid #35393a; }
.order-total > div { min-height: 47px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #aab0ae; font-size: .875rem; }
.order-total > div + div { border-top: 1px solid #35393a; color: #f7f7f6; font-weight: 680; }
.order-total dd { margin: 0; color: #ddc28e; font-size: 1rem; font-weight: 680; }
.order-total > div + div dd { font-size: 1.45rem; }
.order-checkout { padding: 23px; }
.purchase-button { width: 100%; border-color: #d0b57f; background: #d0b57f; color: #17191a; box-shadow: none; }
.purchase-button:hover { border-color: #ead29e; background: #ead29e; }
.checkout-note { margin: 13px 2px 0; color: #969e9b; font-size: .875rem; line-height: 1.5; text-align: center; }
.purchase-next { padding: 28px 0 0; }
.purchase-next-heading { margin-bottom: 15px; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.purchase-next-heading h2 { margin: 0; color: var(--purchase-ink); font-family: inherit; font-size: 1.35rem; font-weight: 650; letter-spacing: -.025em; }
.purchase-next-heading p { max-width: 480px; margin: 0; color: #6e7472; font-size: .875rem; text-align: right; }
.purchase-next ol { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #c9cecb; background: #f4f5f3; list-style: none; }
.purchase-next li { min-height: 118px; padding: 21px 22px; display: grid; grid-template-columns: 28px 1fr; align-content: start; gap: 13px; }
.purchase-next li + li { border-left: 1px solid #d2d6d3; }
.purchase-next li > span { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid #9e8a66; color: #725f3e; font-size: .875rem; font-weight: 700; }
.purchase-next strong { display: block; color: #282b2b; font-size: .94rem; font-weight: 680; }
.purchase-next li p { margin: 5px 0 0; color: #727876; font-size: .875rem; line-height: 1.5; }

@media (min-width: 821px) {
  .pricing-page { padding-top: 28px; }
  .purchase-heading { min-height: 0; padding: 38px 0 34px; grid-template-columns: minmax(0, 1.6fr) minmax(280px, .65fr); align-items: end; border: 0; background: transparent; }
  .purchase-heading > div > p { color: #846b42; }
  .purchase-heading h1 { max-width: none; color: var(--purchase-ink); font-size: clamp(2.8rem, 3.8vw, 3.75rem); font-weight: 570; line-height: .98; white-space: nowrap; }
  .purchase-heading > p { padding: 0 0 4px 26px; border-left: 1px solid #b6aaa0; color: #626a67; }
  .purchase-console { grid-template-columns: minmax(0, 1.58fr) minmax(360px, .72fr); overflow: hidden; border-color: #aeb5b1; border-radius: 4px; background: var(--purchase-paper); box-shadow: 0 24px 65px rgba(28, 38, 35, .1); }
  .purchase-brief { display: flex; flex-direction: column; }
  .purchase-brief-heading { min-height: 84px; padding: 18px 27px; background: #f2f3ef; }
  .purchase-specs { flex: 1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(2, minmax(116px, 1fr)); }
  .purchase-specs > div { min-height: 0; padding: 21px 27px; grid-template-columns: 1fr; align-content: center; gap: 7px; }
  .purchase-specs > div:nth-child(odd) { border-right: 1px solid #d9dcda; }
  .purchase-specs > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .capacity-notice { min-height: 96px; padding: 18px 27px; border-top: 1px solid #d1c7b5; }
  .order-summary { border-left-color: #28463f; background: #102a24; }
  .order-summary-heading { min-height: 84px; padding-right: 27px; padding-left: 27px; border-bottom-color: #315048; color: #b1bfba; }
  .order-product { min-height: 144px; padding-right: 27px; padding-left: 27px; border-bottom-color: #315048; }
  .purchase-mark { width: 52px; height: 52px; padding: 0 14px; border-color: #607268; background: #17342d; }
  .order-product p { color: #aab8b3; }
  .order-product h2 { font-size: 1.45rem; }
  .order-total { padding: 12px 27px; border-bottom-color: #315048; }
  .order-total > div + div { border-top-color: #315048; }
  .order-total > div + div dd { font-size: 1.75rem; }
  .order-checkout { padding: 27px; }
  .purchase-button { min-height: 54px; }
  .checkout-note { color: #a5b3ae; }
  .purchase-next { padding-top: 35px; }
  .purchase-next-heading { margin-bottom: 18px; }
  .purchase-next ol { background: rgba(248, 249, 248, .7); }
}

/* Authenticated customer portal */
.auth-page { width: var(--content); min-height: calc(100vh - 76px); margin: 0 auto; padding: 82px 0 120px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 480px); align-items: start; gap: clamp(60px, 9vw, 130px); }
.auth-copy { padding-top: 45px; }
.auth-copy > p { margin: 0 0 11px; color: var(--jade); font-size: .76rem; font-weight: 740; }
.auth-copy h1 { margin: 0 0 23px; font-size: clamp(3rem, 5vw, 4.7rem); line-height: 1; }
.auth-copy > span { max-width: 560px; display: block; color: var(--muted); font-size: .95rem; line-height: 1.75; }
.auth-panel { min-height: 520px; padding: 22px; border: 1px solid var(--line-strong); border-radius: 6px; background: var(--surface); box-shadow: var(--shadow-large); }
.auth-panel > p { color: var(--muted); text-align: center; }
body[data-active-section="dashboard"] { background: #0e2520; }
body[data-active-section="dashboard"] main { background: #e9ece9; }
body[data-active-section="dashboard"] .site-header { border-color: #cdd2cf; background: rgba(248, 249, 248, .97); }

.account-page {
  --account-ink: #151719;
  --account-paper: #f8f9f8;
  --account-metal: #b99a64;
  --account-muted: #6e7472;
  width: var(--content);
  margin: 0 auto;
  padding: 24px 0 34px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

.account-heading { min-height: 68px; margin-bottom: 14px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 34px; }
.account-heading-copy { min-width: 0; }
.account-heading h1 { margin: 0; color: var(--account-ink); font-family: inherit; font-size: clamp(1.65rem, 2.6vw, 2.15rem); font-weight: 620; letter-spacing: -.045em; line-height: 1.05; }
.account-lede { margin: 5px 0 0; color: #686e6c; font-size: .86rem; line-height: 1.45; }
.account-page > .notice { margin: 0 0 14px; }
.account-controls { min-width: 0; display: flex; align-items: center; justify-content: flex-end; }
.account-profile-control span { display: block; margin-bottom: 4px; color: var(--account-muted); font-size: .72rem; }
.account-profile-control { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 14px; }
.account-profile-control strong { display: block; overflow: hidden; color: var(--account-ink); font-size: .86rem; font-weight: 650; text-overflow: ellipsis; white-space: nowrap; }
.clerk-user-button { min-width: 34px; min-height: 34px; display: grid; place-items: center; }

.account-console { overflow: hidden; display: grid; grid-template-columns: 220px minmax(0, 1fr); align-items: stretch; border: 1px solid #242829; border-radius: 3px; background: var(--account-ink); box-shadow: 0 18px 48px rgba(18, 21, 22, .11); }
.account-sidebar { min-width: 0; align-self: start; display: flex; flex-direction: column; border-right: 1px solid #d4d7d4; background: #f5f5f1; }
.account-sidebar-heading { min-height: 75px; padding: 18px 20px 15px; border-bottom: 1px solid #d4d7d4; }
.account-sidebar-heading h2 { margin: 0; color: #202324; font-family: inherit; font-size: 1rem; font-weight: 680; letter-spacing: -.02em; }
.account-sidebar-heading p { margin: 3px 0 0; color: #747b78; font-size: .76rem; }
.account-services { display: grid; }
.account-services a { position: relative; min-width: 0; min-height: 64px; padding: 13px 20px; display: flex; justify-content: center; flex-direction: column; border-bottom: 1px solid #d9dcd9; text-decoration: none; }
.account-services strong, .account-services span { display: block; }
.account-services strong { color: #202324; font-size: .87rem; font-weight: 680; }
.account-services span { margin-top: 2px; overflow: hidden; color: #767c7a; font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.account-services a::after { content: ""; position: absolute; top: 50%; right: 18px; width: 6px; height: 6px; border-top: 1px solid #9a8460; border-right: 1px solid #9a8460; transform: translateY(-50%) rotate(45deg); }
.account-services a:hover { background: #eceae3; }
.account-services a:hover strong { color: #765e37; }
.account-security { padding: 18px 20px 20px; border-top: 1px solid #d4d7d4; }
.account-security strong { display: block; color: #4e432f; font-size: .8rem; font-weight: 700; }
.account-security p { margin: 5px 0 0; color: #777b78; font-size: .74rem; line-height: 1.5; }

.key-vault { min-width: 0; background: var(--account-ink); color: #f4f5f4; }
.key-vault-heading { min-height: 75px; padding: 17px 22px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid #35393a; }
.key-vault-heading h2 { margin: 0; color: #f7f7f6; font-family: inherit; font-size: 1.2rem; font-weight: 600; letter-spacing: -.025em; }
.key-vault-heading h2 span { min-width: 25px; height: 25px; margin-left: 7px; padding: 0 7px; display: inline-grid; place-items: center; border: 1px solid #4b504f; border-radius: 99px; color: #cdb17d; font-size: .76rem; vertical-align: 2px; }
.key-vault-heading p { margin: 4px 0 0; color: #9ca3a0; font-size: .8rem; }
.key-vault-heading > a { flex: 0 0 auto; padding: 9px 13px; border: 1px solid #756547; color: #dec18b; font-size: .8rem; font-weight: 650; text-decoration: none; }
.key-vault-heading > a:hover { border-color: #dec18b; background: #dec18b; color: #17191a; }

.key-entry { position: relative; min-height: 116px; padding: 18px 22px; display: grid; grid-template-columns: minmax(180px, 1fr) minmax(360px, 1.45fr) auto; align-items: center; gap: 20px; }
.key-entry + .key-entry { border-top: 1px solid #35393a; }
.key-entry-heading { min-width: 0; display: grid; grid-template-columns: minmax(0, 1fr); align-items: start; gap: 8px; }
.key-entry-heading p { margin: 0; color: #929996; font-size: .78rem; }
.key-identity { min-width: 0; }
.key-name-line { min-width: 0; margin-bottom: 5px; display: flex; align-items: center; gap: 9px; }
.key-name-line > p { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.key-nickname-editor { position: relative; flex: 0 0 auto; }
.key-nickname-editor summary { list-style: none; border-bottom: 1px solid #555b59; color: #b9bfbc; font-size: .78rem; font-weight: 620; cursor: pointer; }
.key-nickname-editor summary::-webkit-details-marker { display: none; }
.key-nickname-editor summary::marker { content: ""; }
.key-nickname-editor summary:hover, .key-nickname-editor[open] summary { border-color: #d0d5d2; color: white; }
.key-nickname-editor form { position: absolute; z-index: 5; top: calc(100% + 9px); left: 0; width: 286px; padding: 10px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; border: 1px solid #6b6252; background: #252829; box-shadow: 0 14px 34px rgba(0, 0, 0, .3); }
.key-nickname-editor input[type="text"] { min-width: 0; height: 38px; padding: 7px 10px; border: 1px solid #626865; border-radius: 0; outline: 0; background: #f7f8f6; color: #1c211f; font: inherit; font-size: .875rem; }
.key-nickname-editor input[type="text"]:focus { border-color: #d5b77f; box-shadow: 0 0 0 2px rgba(213, 183, 127, .18); }
.key-nickname-editor button { min-width: 58px; border: 1px solid #c3a46d; background: #c3a46d; color: #17191a; font: inherit; font-size: .875rem; font-weight: 700; cursor: pointer; }
.key-nickname-editor button:hover { border-color: #dec18b; background: #dec18b; }
.key-entry-heading h3 { margin: 0; overflow: hidden; color: white; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 1.08rem; font-weight: 560; letter-spacing: .015em; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.key-state { display: inline-flex; align-items: center; gap: 8px; color: #c6ccc9; font-size: .8rem; font-weight: 600; white-space: nowrap; }
.key-entry-heading .key-state { margin-top: 4px; }
.key-state i { width: 7px; height: 7px; border-radius: 50%; background: #cca867; box-shadow: 0 0 0 4px rgba(204, 168, 103, .1); }
.key-state-active i, .key-state-ready i { background: #67a88d; box-shadow: 0 0 0 4px rgba(103, 168, 141, .12); }
.key-state-needs_attention i, .key-state-disabled i { background: #ce765e; box-shadow: 0 0 0 4px rgba(206, 118, 94, .12); }

.key-details { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.key-details div { min-width: 0; padding: 0 12px; }
.key-details div:first-child { padding-left: 0; }
.key-details div + div { border-left: 1px solid #303435; }
.key-details dt { margin-bottom: 5px; color: #858c89; font-size: .78rem; }
.key-details dd { margin: 0; overflow: hidden; color: #e0e3e1; font-size: .85rem; font-weight: 550; text-overflow: ellipsis; white-space: nowrap; }

.key-entry-footer { min-width: 182px; display: grid; justify-items: end; gap: 8px; }
.key-actions { display: flex; align-items: center; gap: 8px; }
.key-actions a, .key-actions button { padding: 5px 0; border: 0; border-bottom: 1px solid #555b59; background: transparent; color: #c5cbc8; font-size: .84rem; font-weight: 570; text-decoration: none; cursor: pointer; }
.key-actions a:hover, .key-actions button:hover { border-color: #d0d5d2; color: white; }
.key-actions .key-action-primary { padding: 9px 14px; border: 1px solid #c3a46d; background: #c3a46d; color: #17191a; font-weight: 650; }
.key-actions .key-action-primary:hover { border-color: #dec18b; background: #dec18b; color: #111314; }
.key-status-form { margin: 0; display: flex; }

.dashboard-key-record { border-top: 1px solid #4d514f; border-left: 4px solid var(--account-metal); background: #f6f7f5; }
.dashboard-key-record .key-record { margin: 0; border-top: 0; }
.dashboard-key-record .key-record-heading { min-height: 82px; padding: 17px 21px; background: #202425; }
.dashboard-key-record .key-record-heading h2 { font-size: 1.18rem; }
.dashboard-key-record .key-record-details div { padding: 14px 20px; }
.dashboard-key-record .key-record-actions { padding: 16px 20px; }
.text-button { padding: 0; border: 0; border-bottom: 1px solid #555b59; background: transparent; color: #929996; font-size: .78rem; cursor: pointer; }
.text-button:hover { border-color: #bd7968; color: #d18b78; }

.account-empty { min-height: 260px; padding: 32px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 40px; background: var(--account-ink); color: white; }
.account-empty h2 { margin: 0; color: white; font-family: inherit; font-size: 1.5rem; font-weight: 580; letter-spacing: -.025em; }
.account-empty p { margin: 8px 0 0; color: #a7aeab; font-size: .9rem; }
.account-empty > a { padding: 13px 18px; border: 1px solid #c3a46d; background: #c3a46d; color: #17191a; font-size: .84rem; font-weight: 650; text-decoration: none; }

.payment-ledger { margin-top: 16px; overflow: hidden; border: 1px solid #c8cdca; border-radius: 3px; background: var(--account-paper); box-shadow: 0 14px 34px rgba(18, 21, 22, .08); }
.payment-ledger-heading { min-height: 74px; padding: 15px 21px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid #d2d6d3; background: #f3f4f1; }
.payment-ledger-heading h2 { margin: 0; color: var(--account-ink); font-family: inherit; font-size: 1.2rem; font-weight: 650; letter-spacing: -.025em; }
.payment-ledger-heading h2 span { min-width: 25px; height: 25px; margin-left: 7px; padding: 0 7px; display: inline-grid; place-items: center; border: 1px solid #c3b18e; border-radius: 99px; color: #705a34; font-size: .76rem; vertical-align: 2px; }
.payment-ledger-heading p { margin: 4px 0 0; color: #68706d; font-size: .8rem; }
.payment-ledger-heading > a { flex: 0 0 auto; padding: 9px 13px; border: 1px solid #9f895f; color: #5b4828; font-size: .8rem; font-weight: 680; text-decoration: none; }
.payment-ledger-heading > a:hover { background: var(--account-metal); color: #151719; }
.payment-list { display: grid; }
.payment-entry { position: relative; min-height: 94px; padding: 16px 21px; display: grid; grid-template-columns: minmax(170px, .72fr) minmax(390px, 1.55fr) minmax(176px, .65fr); align-items: center; gap: 22px; background: #fbfcfb; }
.payment-entry + .payment-entry { border-top: 1px solid #daddda; }
.payment-entry-pending { border-left: 4px solid var(--account-metal); background: #fbf8f1; }
.payment-entry-void { border-left: 4px solid #a85e4c; background: #fbf6f4; }
.payment-reference { min-width: 0; }
.payment-reference span { display: block; margin-bottom: 5px; color: #717875; font-size: .76rem; }
.payment-reference strong { display: block; overflow: hidden; color: #1d2220; font-size: .96rem; font-weight: 680; text-overflow: ellipsis; white-space: nowrap; }
.payment-details { margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.payment-details div { min-width: 0; padding: 0 13px; }
.payment-details div:first-child { padding-left: 0; }
.payment-details div + div { border-left: 1px solid #daddda; }
.payment-details dt { margin-bottom: 5px; color: #747b78; font-size: .76rem; }
.payment-details dd { margin: 0; color: #262b29; font-size: .86rem; font-weight: 620; }
.payment-status { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.payment-status::before { content: ""; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #8d9591; }
.payment-status-pending::before { background: #b38c47; box-shadow: 0 0 0 4px rgba(179, 140, 71, .1); }
.payment-status-completed::before, .payment-status-paid::before { background: #448267; box-shadow: 0 0 0 4px rgba(68, 130, 103, .1); }
.payment-status-failed::before, .payment-status-disputed::before, .payment-status-needs_review::before, .payment-status-void::before { background: #b8614d; box-shadow: 0 0 0 4px rgba(184, 97, 77, .1); }
.payment-action { min-width: 0; display: grid; justify-items: end; gap: 4px; text-align: right; }
.payment-action strong { color: #343a37; font-size: .82rem; font-weight: 670; }
.payment-action small { color: #737a77; font-size: .74rem; line-height: 1.35; }
.payment-pay { min-width: 112px; padding: 10px 15px; border: 1px solid #9d7e47; background: var(--account-metal); color: #171919; font-size: .84rem; font-weight: 720; text-align: center; text-decoration: none; }
.payment-pay:hover { border-color: #745a2d; background: #c9aa71; }
.payment-restart { color: #704333; font-size: .84rem; font-weight: 700; text-underline-offset: 3px; }
.payment-empty { min-height: 116px; padding: 20px 21px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.payment-empty strong { color: #252a28; font-size: .92rem; }
.payment-empty p { margin: 4px 0 0; color: #707774; font-size: .84rem; }
.payment-empty > a { color: #5f4a28; font-size: .84rem; font-weight: 680; text-underline-offset: 3px; }
.consent-control { margin: -4px 0 22px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 4px; background: var(--mist-light); }

/* Keep the vendor checkout typography independent from site-wide headings. */
#embed-modal h1,
#embed-modal h2,
#embed-modal h3,
#embed-modal h4,
#embed-modal h5,
#embed-modal h6 { max-width: none; margin: 0; color: inherit; font-size: inherit; font-weight: inherit; letter-spacing: normal; line-height: inherit; }

/* Full-page failures */
.error-page { width: var(--content); min-height: 620px; margin: 0 auto; padding: 92px 0 110px; display: grid; place-items: center; }
.error-card { width: min(100%, 620px); padding: 56px; border: 1px solid var(--line-strong); border-radius: 4px; background: var(--surface); box-shadow: var(--shadow-large); text-align: center; }
.error-symbol { width: 54px; height: 54px; margin: 0 auto 22px; display: grid; place-items: center; border-radius: 50%; background: var(--orange-soft); color: var(--orange); font-size: 1.45rem; font-weight: 800; }
.error-code { margin: 0 0 10px; color: var(--jade); font-size: .74rem; font-weight: 750; }
.error-card h1 { margin: 0; color: var(--forest); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 600; letter-spacing: -.035em; }
.error-message { max-width: 490px; margin: 17px auto 0; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.retry-notice { width: fit-content; margin: 24px auto 0; padding: 10px 14px; display: flex; align-items: center; gap: 9px; border-radius: 999px; background: var(--mist); color: var(--forest); font-size: .72rem; font-weight: 700; }
.retry-notice i { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(218,119,45,.12); }
.error-actions { margin-top: 28px; display: flex; justify-content: center; gap: 10px; }
.error-reference { margin: 28px 0 0; color: var(--quiet); font-size: .74rem; }
.error-reference code { padding: 3px 6px; border-radius: 4px; background: var(--mist-light); color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.emergency-error { width: min(90%, 620px); margin: 12vh auto; padding: 40px; font-family: system-ui, sans-serif; }
.emergency-error small { margin-top: 24px; display: block; }

.tool-page { width: var(--content); min-height: calc(100vh - 76px); margin: 0 auto; padding: 44px 0 120px; }
.tool-breadcrumb { margin-bottom: 42px; display: flex; align-items: center; gap: 9px; color: var(--quiet); font-size: .72rem; }
.tool-breadcrumb a { color: var(--jade); font-weight: 680; text-decoration: none; }
.tool-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.tool-breadcrumb strong { color: var(--muted); font-weight: 650; }
.tool-heading { margin-bottom: 42px; padding-bottom: 36px; display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: end; gap: 65px; border-bottom: 1px solid var(--line-strong); }
.tool-heading > div:first-child > p { margin: 0 0 10px; color: var(--jade); font-size: .76rem; font-weight: 730; }
.tool-heading h1 { max-width: 780px; margin: 0; font-size: clamp(2.9rem, 4.8vw, 4.5rem); font-weight: 600; line-height: 1; }
.tool-assurance { padding: 0; display: flex; align-items: flex-start; gap: 13px; border-top: 0; color: var(--muted); font-size: .76rem; line-height: 1.6; }
.tool-assurance i { flex: 0 0 auto; width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: #38a47d; box-shadow: 0 0 0 5px rgba(56,164,125,.12); }
.tool-assurance strong { display: block; margin-bottom: 2px; color: var(--forest); font-size: .74rem; }
.tool-page > .notice { width: 100%; margin: 0 0 22px; }
.tool-workspace { display: grid; grid-template-columns: 1fr; align-items: start; gap: 28px; }
.tool-shell { min-width: 0; padding: clamp(34px, 4.6vw, 58px); border: 1px solid var(--line-strong); border-radius: 4px; background: var(--surface); box-shadow: var(--shadow-small); }
.tool-page-stocks .tool-heading { margin-bottom: 34px; padding: 48px 52px; border: 0; background: var(--forest); }
.tool-page-stocks .tool-heading h1 { color: white; }
.tool-page-stocks .tool-heading > div:first-child > p { color: #d4bd93; }
.tool-page-stocks .tool-assurance { color: #b8c8c3; }
.tool-page-stocks .tool-assurance strong { color: white; }
.tool-page-upgrade,
.tool-page-renew,
.tool-page-key-info { padding-top: 30px; padding-bottom: 76px; font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif; }
body[data-active-section="upgrade"] main,
body[data-active-section="renew"] main,
body[data-active-section="key-info"] main { background: #e9ece9; }
.tool-page-upgrade .tool-breadcrumb,
.tool-page-renew .tool-breadcrumb,
.tool-page-key-info .tool-breadcrumb { margin-bottom: 24px; }
.tool-page-upgrade .tool-heading,
.tool-page-renew .tool-heading,
.tool-page-key-info .tool-heading { margin: 0 0 18px; padding: 30px 0 32px; align-items: end; border: 0; background: transparent; }
.tool-page-upgrade .tool-heading > div:first-child > p,
.tool-page-renew .tool-heading > div:first-child > p,
.tool-page-key-info .tool-heading > div:first-child > p { color: #846b42; }
.tool-page-upgrade .tool-heading h1,
.tool-page-renew .tool-heading h1,
.tool-page-key-info .tool-heading h1 { max-width: 760px; color: #151719; font-family: inherit; font-size: clamp(2.7rem, 4vw, 3.9rem); font-weight: 570; letter-spacing: -.045em; }
.tool-page-upgrade .tool-assurance,
.tool-page-renew .tool-assurance,
.tool-page-key-info .tool-assurance { padding-left: 25px; border-left: 1px solid #b6aaa0; color: #626a67; }
.tool-page-upgrade .tool-assurance strong,
.tool-page-renew .tool-assurance strong,
.tool-page-key-info .tool-assurance strong { color: #2d3532; }
.tool-page-upgrade .tool-shell,
.tool-page-renew .tool-shell,
.tool-page-key-info .tool-shell { padding: clamp(34px, 4vw, 50px); border-color: #aeb5b1; border-radius: 4px; background: #f8f9f8; box-shadow: 0 22px 58px rgba(28, 38, 35, .09); }
.tool-page-key-info .tool-shell { width: min(100%, 980px); margin: 0 auto; }
.tool-page-stocks .tool-shell { box-shadow: none; }
.tool-page-key-info .compact-form { grid-template-columns: 1fr; gap: 0; }
.tool-page-key-info .compact-form .button { width: fit-content; margin: 4px 0 0; }
.tool-page-key-info .result-block { max-width: none; }
.key-record { margin: clamp(-58px, -4.6vw, -34px) clamp(-58px, -4.6vw, -34px) 0; border-top: 5px solid var(--brass); background: #fbfcfb; }
.key-record-heading { min-height: 112px; padding: 27px 31px; display: flex; align-items: center; justify-content: space-between; gap: 30px; background: var(--forest); }
.key-record-heading p { margin: 0 0 5px; color: #b8c8c3; font-size: .8rem; }
.key-record-heading h2 { margin: 0; color: white; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 560; letter-spacing: .015em; overflow-wrap: anywhere; }
.key-record-status { flex: 0 0 auto; padding: 8px 11px; display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(183, 226, 161, .25); border-radius: 99px; background: rgba(183, 226, 161, .08); color: #c9e8ba; font-size: .82rem; font-weight: 700; text-transform: capitalize; }
.key-record-status i { width: 7px; height: 7px; border-radius: 50%; background: #67a88d; box-shadow: 0 0 0 4px rgba(103, 168, 141, .14); }
.key-record-details { margin: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-right: 1px solid var(--line); }
.key-record-details div { min-width: 0; padding: 19px 24px; border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.key-record-details dt { margin-bottom: 5px; color: var(--muted); font-size: .78rem; }
.key-record-details dd { margin: 0; color: var(--forest); font-size: .92rem; font-weight: 680; overflow-wrap: anywhere; }
.key-record-details .key-record-message { grid-column: 1 / -1; padding-top: 17px; padding-bottom: 17px; background: var(--brass-soft); }
.key-record-message dd { color: #55472f; font-weight: 600; line-height: 1.55; }
.key-record-actions { padding: 22px 24px; display: flex; align-items: center; gap: 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
.key-record-actions > a:not(.button) { margin-left: auto; color: var(--jade-dark); font-size: .82rem; font-weight: 700; text-underline-offset: 3px; }
.key-lookup-again { margin-top: 25px; border: 1px solid var(--line); background: #fbfcfb; }
.key-lookup-again summary { padding: 15px 18px; color: var(--jade-dark); font-size: .84rem; font-weight: 700; cursor: pointer; }
.key-lookup-again[open] summary { border-bottom: 1px solid var(--line); }
.key-lookup-again .service-form { padding: 20px 18px 22px; }
.key-lookup-again .form-field { margin-bottom: 15px; }
.tool-page-upgrade .service-form,
.tool-page-renew .service-form,
.tool-page-upgrade .privacy-note,
.tool-page-renew .privacy-note,
.tool-page-upgrade .session-guide,
.tool-page-renew .session-guide { max-width: none; }
.tool-intro { margin-bottom: 29px; display: flex; align-items: flex-start; justify-content: space-between; gap: 35px; }
.tool-intro h2 { margin: 0 0 9px; font-size: clamp(1.7rem, 2.8vw, 2.35rem); font-weight: 600; letter-spacing: -.025em; }
.tool-intro p { max-width: 640px; margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.65; }
.inline-step-link { flex: 0 0 auto; margin-top: 4px; color: var(--jade); font-size: .72rem; font-weight: 760; text-decoration: none; }
.inline-step-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.operation-layout { display: grid; grid-template-columns: minmax(250px, 292px) minmax(0, 1fr); align-items: start; gap: clamp(32px, 4vw, 52px); }
.operation-main { min-width: 0; }
.operation-guide { overflow: hidden; padding: 27px 25px 24px; border: 1px solid #26463e; border-top: 4px solid #bfa36e; border-radius: 3px; background: #102a24; color: white; }
.operation-guide h2 { margin: 0; color: white; font-family: inherit; font-size: 1.38rem; font-weight: 610; letter-spacing: -.03em; line-height: 1.12; }
.operation-guide > p { margin: 10px 0 23px; color: #afbfba; font-size: .875rem; line-height: 1.55; }
.operation-guide ul { margin: 0; padding: 0; border-top: 1px solid #345047; list-style: none; }
.operation-guide li { padding: 17px 0; border-bottom: 1px solid #345047; }
.operation-guide li strong, .operation-guide li span { display: block; }
.operation-guide li strong { color: #f3f5f4; font-size: .92rem; font-weight: 670; }
.operation-guide li span { margin-top: 5px; color: #aabbb5; font-size: .875rem; line-height: 1.45; }
.operation-guide nav { margin-top: 22px; display: grid; gap: 10px; }
.operation-guide nav a { width: fit-content; color: #dfc58f; font-size: .875rem; font-weight: 650; text-underline-offset: 4px; }
.operation-guide nav a:hover { color: #f5ddb0; }
.operation-guide-renew { border-top-color: #8fb5a7; }
.operation-guide-key-info { border-top-color: #7fa79a; }
.operation-guide-key-info > p { margin-bottom: 15px; }
.operation-guide-key-info li { padding: 13px 0; }
.operation-main .tool-intro { margin-bottom: 22px; }
.operation-main .tool-intro h2 { font-family: inherit; font-size: 1.65rem; font-weight: 620; }
.operation-main .privacy-note { margin-bottom: 25px; }
.availability-overview { min-height: 136px; margin: clamp(-58px, -4.6vw, -34px) clamp(-58px, -4.6vw, -34px) 32px; padding: 25px 28px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-top: 4px solid #3f8b72; border-bottom: 1px solid var(--line); background: #f6f8f6; }
.availability-overview > div > span { display: inline-flex; align-items: center; color: #37705e; font-size: .875rem; font-weight: 680; }
.availability-overview > div > span i { width: 7px; height: 7px; margin-right: 9px; border-radius: 50%; background: #38a47d; box-shadow: 0 0 0 4px rgba(56, 164, 125, .12); }
.availability-overview h2 { margin: 7px 0 6px; font-size: 1.65rem; font-weight: 610; letter-spacing: -.025em; }
.availability-overview p { max-width: 680px; margin: 0; color: var(--muted); font-size: .875rem; line-height: 1.55; }
.availability-overview > a { flex: 0 0 auto; padding: 11px 15px; border: 1px solid var(--forest); background: var(--forest); color: white; font-size: .875rem; font-weight: 680; text-decoration: none; }
.availability-overview > a:hover { background: var(--jade-dark); }
.notice { padding: 18px 20px; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 15px; border: 1px solid; border-radius: 4px; }
.notice-error { border-color: #e3b6b1; background: var(--red-soft); }
.notice-success { border-color: #b6d8ce; background: var(--green-soft); }
.notice-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; color: white; font-size: .76rem; font-weight: 850; }
.notice-error .notice-icon { background: var(--red); }
.notice-success .notice-icon { background: var(--green); }
.notice strong { display: block; color: var(--forest); font-size: .84rem; }
.notice p { margin: 2px 0 0; color: var(--muted); font-size: .78rem; }

.live-label { flex: 0 0 auto; display: inline-flex; align-items: center; padding: 7px 10px; border-radius: 99px; background: var(--green-soft); color: var(--green); font-size: .74rem; font-weight: 700; }
.live-label i { width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #38a47d; }
.stock-summary { margin: 0 0 13px; display: flex; align-items: baseline; gap: 7px; color: var(--muted); font-size: .72rem; }
.stock-summary strong { color: var(--forest); font-size: 1.2rem; }
.stock-table { overflow-x: auto; border: 1px solid var(--line); border-radius: 3px; }
.stock-table table { width: 100%; border-collapse: collapse; white-space: nowrap; }
.stock-table th, .stock-table td { padding: 14px 15px; border-bottom: 1px solid var(--line); text-align: left; }
.stock-table th { background: #f7faf8; color: var(--muted); font-size: .76rem; font-weight: 700; }
.stock-table td { color: var(--ink); font-size: .84rem; }
.stock-table tbody tr:last-child td { border-bottom: 0; }
.stock-table tbody tr:hover { background: var(--mist-light); }
.country-code { padding: 4px 7px; border-radius: 5px; background: var(--mist); color: var(--jade-dark); font-size: .74rem; font-weight: 700; }
.stock-state { display: inline-flex; align-items: center; color: var(--green); font-weight: 750; }
.stock-state i { width: 6px; height: 6px; margin-right: 7px; border-radius: 50%; background: #38a47d; }

.empty-state { min-height: 190px; padding: 28px; display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 20px; border: 1px solid var(--line-strong); border-radius: 10px; background: #fafcfb; }
.stock-empty { border-color: #edc59f; background: var(--orange-soft); }
.stock-empty strong { display: block; color: #743c12; font-size: .98rem; }
.stock-empty p { max-width: 650px; margin: 6px 0 0; color: #775b46; font-size: .8rem; line-height: 1.65; }
.warning-mark { width: 48px; height: 48px; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 50%; background: white; color: #ce6418; font-size: 1.15rem; font-weight: 850; }

.service-form { max-width: 780px; }
.compact-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 14px; }
.compact-form .button { margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-grid-key { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); }
.form-field { min-width: 0; margin-bottom: 20px; }
.form-field label { display: flex; align-items: baseline; justify-content: space-between; gap: 15px; margin-bottom: 8px; color: var(--forest); font-size: .84rem; font-weight: 700; }
.form-field label span { color: var(--quiet); font-size: .75rem; font-weight: 600; }
.form-field > small { display: block; margin-top: 7px; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.form-field > input, .form-field > select, .password-field { width: 100%; min-height: 54px; border: 1px solid var(--line-strong); border-radius: 3px; background: #fbfcfb; color: var(--forest); }
.form-field > input, .form-field > select { padding: 0 14px; outline: 0; }
.form-field > select { cursor: pointer; }
.form-field > input:hover, .form-field > select:hover, .password-field:hover { border-color: #9eb5af; }
.form-field > input:focus, .form-field > select:focus, .password-field:focus-within { border-color: var(--jade); background: white; box-shadow: 0 0 0 4px rgba(12,116,104,.09); }
.form-field input::placeholder { color: #92a09c; }
.password-field { display: flex; align-items: stretch; overflow: hidden; }
.password-field input { min-width: 0; flex: 1; padding: 0 14px; border: 0; outline: 0; background: transparent; color: var(--forest); }
.reveal-button { padding: 0 15px; border: 0; border-left: 1px solid var(--line); background: transparent; color: var(--jade); font-size: .76rem; font-weight: 700; cursor: pointer; }
.reveal-button:hover { background: var(--mist); }
.form-actions { display: flex; gap: 11px; margin-top: 5px; }
.form-field code, .session-guide code { padding: 2px 5px; border-radius: 4px; background: #e7efec; color: var(--jade-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }

.key-memory { margin-top: 11px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 5px 14px; }
.remember-key { min-width: 0; margin: 0 !important; display: inline-flex !important; justify-content: flex-start !important; align-items: center !important; gap: 8px !important; color: var(--muted) !important; font-size: .76rem !important; font-weight: 600 !important; cursor: pointer; }
.remember-key input { width: 16px; height: 16px; margin: 0; accent-color: var(--jade); }
.forget-key { padding: 2px 0; border: 0; background: transparent; color: var(--jade-dark); font-size: .74rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.forget-key[hidden] { display: none; }
.key-memory > small { grid-column: 1 / -1; color: var(--quiet); font-size: .72rem; line-height: 1.45; }

.session-guide { max-width: 780px; margin: 2px 0 24px; border: 1px solid var(--line); border-radius: 3px; background: #fbfcfb; }
.session-guide summary { padding: 15px 17px; color: var(--jade-dark); font-size: .82rem; font-weight: 700; cursor: pointer; }
.session-guide[open] summary { border-bottom: 1px solid var(--line); }
.guide-content { padding: 18px; }
.guide-tabs { margin-bottom: 20px; padding: 4px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 8px; background: var(--mist); }
.guide-tabs button { min-height: 42px; padding: 8px 12px; border: 0; border-radius: 6px; background: transparent; color: var(--muted); font-size: .8rem; font-weight: 680; cursor: pointer; }
.guide-tabs button[aria-selected="true"] { background: white; color: var(--forest); box-shadow: 0 2px 8px rgba(16,42,38,.08); }
.guide-panel[hidden] { display: none; }
.guide-panel { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.guide-panel section + section { padding-left: 24px; border-left: 1px solid var(--line); }
.guide-panel h3 { margin: 0 0 11px; font-size: .9rem; font-weight: 700; letter-spacing: -.01em; }
.guide-panel h3 span { margin-left: 6px; padding: 3px 7px; border-radius: 99px; background: var(--green-soft); color: var(--green); font-size: .72rem; font-weight: 700; vertical-align: 1px; }
.guide-panel ol { margin: 0 0 0 19px; padding: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.guide-panel li + li { margin-top: 7px; }
.guide-panel a { color: var(--jade-dark); font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.guide-panel kbd { padding: 2px 6px; border: 1px solid var(--line-strong); border-bottom-width: 2px; border-radius: 4px; background: white; color: var(--forest); font: inherit; font-size: .72rem; }
.guide-alternative { margin: 13px 0 0; padding: 12px 13px; border-radius: 7px; background: var(--mist-light); color: var(--muted); font-size: .76rem; line-height: 1.55; }
.guide-security { margin: 20px 0 0; padding: 13px 14px; border-left: 3px solid var(--orange); background: var(--orange-soft); color: #775b46; font-size: .77rem; line-height: 1.55; }

.inventory-alert { min-height: 96px; margin-bottom: 20px; padding: 16px; display: flex; align-items: flex-start; gap: 13px; border: 1px solid #e2a9a4; border-radius: 9px; background: var(--red-soft); }
.critical-mark { flex: 0 0 auto; width: 37px; height: 37px; display: grid; place-items: center; border: 2px solid var(--red); border-radius: 50%; background: white; color: var(--red); font-size: .92rem; font-weight: 900; }
.inventory-alert strong { display: block; margin: 1px 0 4px; color: #85261f; font-size: .82rem; }
.inventory-alert p { margin: 0; color: #764641; font-size: .72rem; line-height: 1.55; }
.inventory-alert-renew { border-color: #e7bbb7; background: #fff7f6; }

.privacy-note { max-width: 780px; margin: 0 0 30px; padding: 16px 18px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #c5ddd7; border-left: 3px solid var(--jade); border-radius: 2px; background: var(--mist-light); }
.privacy-note > span { flex: 0 0 auto; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--jade); color: white; font-size: .72rem; font-weight: 750; }
.privacy-note p { margin: 0; color: var(--muted); font-size: .75rem; }
.privacy-note strong { display: block; margin-bottom: 2px; color: var(--forest); }

.result-block { max-width: 780px; margin-top: 34px; padding: 26px; border: 1px solid #a9cfc3; border-radius: 3px; background: var(--green-soft); }
.result-heading { margin-bottom: 18px; display: flex; align-items: center; gap: 11px; }
.result-heading > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: .74rem; font-weight: 850; }
.result-heading strong { display: block; color: var(--forest); font-size: .86rem; }
.result-heading small { display: block; margin-top: 2px; color: var(--muted); font-size: .74rem; }
.result-block dl { margin: 0; }
.result-block dl div { padding: 11px 0; display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 25px; border-top: 1px solid rgba(22,112,93,.14); }
.result-block dt { color: var(--muted); font-size: .73rem; }
.result-block dd { margin: 0; color: var(--forest); font-size: .77rem; font-weight: 700; text-align: right; word-break: break-word; }
.status-value { display: inline-flex; padding: 4px 9px; border-radius: 99px; background: #d6eee7; color: var(--green); font-size: .74rem; }
.result-next { margin-top: 18px; padding-top: 18px; border-top: 1px solid rgba(22,112,93,.14); }

.site-footer { padding: 68px max(28px, calc((100vw - 1180px) / 2)) 30px; background: #0e2520; color: white; }
.footer-inner { padding-bottom: 54px; display: flex; align-items: flex-start; justify-content: space-between; gap: 50px; }
.brand-footer { color: white; }
.brand-footer .brand-mark { background: #b7e2a1; }
.brand-footer .brand-mark i { background: var(--forest); }
.footer-inner > div > p { max-width: 380px; margin: 17px 0 0; color: #9eb2ad; font-size: .78rem; line-height: 1.65; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 12px 25px; }
.footer-inner nav a { color: #c0ceca; font-size: .82rem; text-decoration: none; }
.footer-inner nav a:hover { color: #b7e2a1; }
.footer-legal { padding-top: 23px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: #819993; font-size: .74rem; }

@media (max-width: 1180px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .desktop-nav, .system-state { display: none; }
  .menu-button { display: inline-flex; }
  .mobile-nav { position: fixed; inset: 76px 0 auto; max-height: calc(100vh - 76px); overflow: auto; padding: 13px max(28px, calc((100vw - 1180px) / 2)) 22px; border-bottom: 1px solid var(--line-strong); background: #f8f9f7; box-shadow: 0 25px 55px rgba(16,42,38,.13); }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { min-height: 52px; padding: 0 4px; display: flex; align-items: center; border-bottom: 1px solid var(--line); color: var(--forest); font-size: .9rem; font-weight: 680; text-decoration: none; }
  .mobile-nav a[aria-current="page"] { padding-left: 13px; border-left: 3px solid var(--brass); background: #f0eee7; color: #604b2a; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(350px, .76fr); gap: 45px; }
}

@media (min-width: 821px) and (max-width: 1049px) {
  .purchase-heading { grid-template-columns: 1fr; align-items: start; gap: 16px; }
  .purchase-heading h1 { white-space: normal; }
  .purchase-heading > p { max-width: 650px; padding-left: 0; border-left: 0; }
}

@media (max-width: 820px) {
  :root { --content: min(100% - 38px, 720px); }
  .hero { min-height: 0; padding: 68px 0 82px; grid-template-columns: 1fr; gap: 48px; }
  h1 { font-size: clamp(3rem, 10vw, 4.6rem); }
  .service-index { max-width: 620px; }
  .boundary-heading, .process-heading, .tool-heading { grid-template-columns: 1fr; gap: 20px; }
  .boundary-heading > p, .process-heading > p { margin-bottom: -9px; }
  .boundary-grid, .process-list { grid-template-columns: 1fr; }
  .boundary-grid article { padding: 24px 0; }
  .boundary-grid article + article { padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }
  .boundary-grid p { max-width: 570px; }
  .process-list li { min-height: 0; padding: 25px 0; }
  .process-list li + li { padding-left: 0; border-left: 0; }
  .purchase-heading { grid-template-columns: 1fr; align-items: start; gap: 15px; }
  .purchase-heading > p { max-width: 650px; }
  .purchase-console { grid-template-columns: 1fr; }
  .order-summary { border-top: 1px solid #363a3a; border-left: 0; }
  .purchase-next ol { grid-template-columns: 1fr; }
  .purchase-next li { min-height: 0; }
  .purchase-next li + li { border-top: 1px solid #d2d6d3; border-left: 0; }
  .tool-workspace { grid-template-columns: 1fr; }
  .auth-page { min-height: 0; padding: 58px 0 90px; grid-template-columns: 1fr; gap: 38px; }
  .auth-copy { max-width: 640px; padding-top: 0; }
  .auth-panel { width: 100%; max-width: 540px; min-height: 480px; }
  .account-heading { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .account-controls { width: min(100%, 470px); }
  .account-console { grid-template-columns: 1fr; }
  .account-sidebar { display: block; border-right: 0; border-bottom: 1px solid #d4d7d4; }
  .account-sidebar-heading { min-height: 0; padding: 14px 18px; display: flex; align-items: baseline; justify-content: space-between; }
  .account-sidebar-heading p { margin: 0; }
  .account-services { grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid #d4d7d4; }
  .account-services a { min-height: 68px; padding: 13px 15px; border-bottom: 0; }
  .account-services a + a { border-left: 1px solid #d9dcd9; }
  .account-services a::after { display: none; }
  .account-security { display: none; }
  .key-entry { grid-template-columns: minmax(190px, 1fr) minmax(270px, 1.25fr); gap: 18px 28px; }
  .key-entry-footer { grid-column: 1 / -1; width: 100%; padding-top: 15px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #303435; }
  .payment-entry { grid-template-columns: minmax(160px, .65fr) minmax(0, 1.35fr); }
  .payment-action { grid-column: 1 / -1; padding-top: 13px; display: flex; align-items: center; justify-content: flex-end; gap: 13px; border-top: 1px solid #daddda; }
}

@media (max-width: 580px) {
  :root { --content: calc(100vw - 28px); }
  .header-inner { min-height: 66px; }
  .header-cta { display: none; }
  .mobile-nav { inset: 66px 0 auto; }
  .hero { padding: 49px 0 64px; gap: 39px; }
  .availability-line { margin-bottom: 18px; }
  h1 { font-size: clamp(2.65rem, 12vw, 3.65rem); }
  .hero-lede { font-size: .96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .assurance-list { display: grid; gap: 7px; }
  .service-index-heading { align-items: flex-start; }
  .service-index nav a { min-height: 78px; padding: 14px 18px; }
  .boundary-section { padding: 72px 18px 78px; }
  .boundary-heading h2, .process-heading h2 { font-size: 2.35rem; }
  .process-section { padding: 78px 0 84px; }
  .pricing-page { padding: 20px 0 52px; }
  .pricing-page .tool-breadcrumb { margin-bottom: 19px; }
  .purchase-heading { min-height: 0; padding: 24px 19px; }
  .purchase-heading h1 { font-size: 2.25rem; }
  .purchase-brief-heading { padding: 16px 18px; align-items: flex-start; flex-direction: column; gap: 12px; }
  .purchase-specs > div { padding: 16px 18px; grid-template-columns: 1fr; gap: 5px; }
  .capacity-notice { padding: 18px; align-items: flex-start; flex-direction: column; gap: 15px; }
  .capacity-notice a { width: 100%; text-align: center; }
  .order-summary-heading, .order-product, .order-total { padding-right: 18px; padding-left: 18px; }
  .order-checkout { padding: 21px 18px; }
  .purchase-next-heading { align-items: flex-start; flex-direction: column; gap: 7px; }
  .purchase-next-heading p { text-align: left; }
  .purchase-next li { padding: 19px 17px; }
  .tool-page { padding: 30px 0 68px; }
  .tool-breadcrumb { margin-bottom: 34px; }
  .tool-heading { margin-bottom: 27px; }
  .tool-heading h1 { font-size: 2.65rem; }
  .tool-page-stocks .tool-heading { padding: 32px 24px; }
  .tool-page-upgrade, .tool-page-renew, .tool-page-key-info { padding-top: 20px; }
  .tool-page-upgrade .tool-breadcrumb, .tool-page-renew .tool-breadcrumb, .tool-page-key-info .tool-breadcrumb { margin-bottom: 18px; }
  .tool-page-upgrade .tool-heading, .tool-page-renew .tool-heading, .tool-page-key-info .tool-heading { padding: 15px 0 24px; }
  .tool-page-upgrade .tool-heading h1, .tool-page-renew .tool-heading h1, .tool-page-key-info .tool-heading h1 { font-size: 2.4rem; }
  .tool-page-upgrade .tool-assurance, .tool-page-renew .tool-assurance, .tool-page-key-info .tool-assurance { padding: 15px 0 0; border-top: 1px solid #c7ccca; border-left: 0; }
  .tool-shell { padding: 26px 17px 32px; border-radius: 4px; }
  .tool-intro { align-items: flex-start; flex-direction: column; gap: 13px; }
  .operation-layout { grid-template-columns: 1fr; gap: 30px; }
  .operation-guide { padding: 23px 20px 21px; }
  .operation-guide > p { margin-bottom: 18px; }
  .operation-guide li { padding: 15px 0; }
  .availability-overview { margin: -26px -17px 28px; padding: 22px 19px; align-items: flex-start; flex-direction: column; gap: 18px; }
  .availability-overview > a { width: 100%; text-align: center; }
  .live-label { align-self: flex-start; }
  .error-page { min-height: 520px; padding: 54px 0 72px; }
  .error-card { padding: 36px 20px; }
  .error-actions { flex-direction: column; }
  .error-actions .button { width: 100%; }
  .compact-form, .form-grid, .form-grid-key { grid-template-columns: 1fr; gap: 0; }
  .compact-form .button { width: 100%; margin-bottom: 0; }
  .form-actions { flex-direction: column; }
  .form-actions .button { width: 100%; }
  .empty-state { min-height: 0; padding: 22px 19px; align-items: start; }
  .stock-table { margin-right: -17px; border-right: 0; border-radius: 9px 0 0 9px; }
  .result-block { padding: 19px; }
  .result-block dl div { grid-template-columns: 1fr; gap: 4px; }
  .result-block dd { text-align: left; }
  .guide-panel { grid-template-columns: 1fr; gap: 20px; }
  .guide-panel section + section { padding: 20px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .auth-page { padding: 40px 0 72px; }
  .auth-copy h1 { font-size: 2.7rem; }
  .auth-panel { min-height: 430px; padding: 12px; }
  .account-page { padding: 18px 0 24px; }
  .account-heading { min-height: 0; margin-bottom: 14px; gap: 17px; }
  .account-heading h1 { max-width: 100%; font-size: 1.85rem; }
  .account-lede { margin-top: 6px; font-size: .86rem; }
  .account-controls { width: 100%; }
  .account-profile-control { width: 100%; max-width: none; }
  .account-profile-control > div:first-child { display: none; }
  .account-sidebar-heading { display: none; }
  .account-services { grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 0; }
  .account-services a { min-height: 62px; padding: 11px 14px; border-bottom: 1px solid #d9dcd9; }
  .account-services a:nth-child(odd) { border-left: 0; }
  .account-services a:nth-child(even) { border-left: 1px solid #d9dcd9; }
  .key-vault-heading { min-height: 0; padding: 17px 16px; align-items: center; gap: 15px; }
  .key-vault-heading p { display: none; }
  .key-entry { min-height: 0; padding: 19px 16px 17px; grid-template-columns: 1fr; gap: 17px; }
  .key-entry-heading { grid-template-columns: 1fr; gap: 10px; }
  .key-name-line { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; }
  .key-nickname-editor { max-width: 100%; }
  .key-nickname-editor[open] { width: 100%; grid-column: 1 / -1; }
  .key-nickname-editor form { position: static; width: 100%; margin-top: 10px; }
  .key-entry-heading h3 { overflow-wrap: anywhere; white-space: normal; }
  .key-state { justify-self: start; }
  .key-details { grid-template-columns: 1fr; }
  .key-details div { padding: 9px 0; display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 15px; }
  .key-details div + div { border-top: 1px solid #303435; border-left: 0; }
  .key-details dt { margin: 0; }
  .key-entry-footer { grid-column: auto; padding-top: 14px; align-items: stretch; flex-direction: column; gap: 12px; }
  .key-actions { width: 100%; display: grid; grid-template-columns: 1.15fr 1fr 1fr; }
  .key-actions a, .key-actions button, .key-status-form { width: 100%; display: grid; place-items: center; text-align: center; }
  .key-actions .key-action-primary { padding: 9px 10px; }
  .key-record { margin: -26px -17px 0; }
  .key-record-heading { min-height: 0; padding: 23px 19px; align-items: flex-start; flex-direction: column; gap: 17px; }
  .key-record-details { grid-template-columns: 1fr; }
  .key-record-details .key-record-message { grid-column: auto; }
  .key-record-actions { padding: 18px; align-items: stretch; flex-direction: column; }
  .key-record-actions .button { width: 100%; }
  .key-record-actions > a:not(.button) { margin: 8px 0 0; text-align: center; }
  .dashboard-key-record .key-record { margin: 0; }
  .dashboard-key-record .key-record-heading { padding: 19px 16px; align-items: flex-start; flex-direction: column; gap: 14px; }
  .dashboard-key-record .key-record-details div { padding: 14px 16px; }
  .dashboard-key-record .key-record-actions { padding: 16px; }
  .account-empty { min-height: 240px; padding: 25px 20px; grid-template-columns: 1fr; align-items: center; gap: 24px; }
  .account-empty > a { text-align: center; }
  .payment-ledger { margin-top: 12px; }
  .payment-ledger-heading { min-height: 0; padding: 16px; gap: 15px; }
  .payment-ledger-heading p { display: none; }
  .payment-entry { min-height: 0; padding: 17px 16px; grid-template-columns: 1fr; gap: 15px; }
  .payment-entry-pending, .payment-entry-void { padding-left: 12px; }
  .payment-reference strong { white-space: normal; }
  .payment-details div { padding: 0 9px; }
  .payment-details dt { min-height: 34px; }
  .payment-details dd { overflow-wrap: anywhere; }
  .payment-action { grid-column: auto; padding-top: 14px; align-items: center; justify-content: space-between; text-align: left; }
  .payment-action small { text-align: right; }
  .payment-empty { min-height: 0; padding: 19px 16px; align-items: flex-start; }
  .footer-inner { flex-direction: column; gap: 34px; }
  .footer-legal { align-items: flex-start; flex-direction: column; gap: 7px; }
}

/* Keep all customer-facing copy at 14px or larger. Hierarchy comes from weight,
   spacing, and color rather than text that becomes difficult to read. */
.skip-link,
.desktop-nav a,
.system-state,
.header-cta,
.availability-line,
.button,
.assurance-list,
.service-index-heading span,
.connection-pill,
.service-index nav small,
.boundary-heading > p,
.boundary-grid span,
.process-list > li > span,
.checkout-note,
.error-code,
.retry-notice,
.error-reference,
.tool-breadcrumb,
.tool-heading > div:first-child > p,
.tool-assurance,
.tool-assurance strong,
.inline-step-link,
.notice-icon,
.live-label,
.stock-summary,
.stock-table th,
.country-code,
.form-field label span,
.form-field > small,
.reveal-button,
.remember-key,
.forget-key,
.key-memory > small,
.session-guide summary,
.guide-tabs button,
.guide-panel h3 span,
.guide-panel ol,
.guide-panel kbd,
.guide-alternative,
.guide-security,
.inventory-alert p,
.privacy-note > span,
.privacy-note p,
.result-heading > span,
.result-heading small,
.result-block dt,
.result-block dd,
.status-value,
.auth-copy > p,
.account-context,
.account-profile-control span,
.key-vault-heading p,
.key-vault-heading > a,
.key-entry-heading p,
.key-nickname-editor summary,
.key-state,
.key-details dt,
.key-details dd,
.key-actions a,
.text-button,
.account-services a span,
.account-services a small,
.account-security p,
.account-empty p,
.account-empty span,
.account-empty > a,
.payment-ledger-heading p,
.payment-ledger-heading > a,
.payment-reference span,
.payment-details dt,
.payment-details dd,
.payment-action strong,
.payment-action small,
.payment-pay,
.payment-restart,
.payment-empty p,
.payment-empty > a,
.footer-inner > div > p,
.footer-inner nav a,
.footer-legal {
  font-size: var(--text-readable);
}

.connection-pill,
.remember-key {
  font-size: var(--text-readable) !important;
}

.service-index-heading strong,
.service-index nav strong,
.boundary-heading > span,
.boundary-grid p,
.process-heading > span,
.process-list strong,
.process-list p,
.error-message,
.tool-intro p,
.notice strong,
.notice p,
.stock-table td,
.stock-empty p,
.form-field label,
.guide-panel h3,
.inventory-alert strong,
.result-heading strong {
  font-size: var(--text-supporting);
}

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