@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Geist;
  src: url("assets/fonts/geist-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #f2f4f4;
  --surface: #fbfcfc;
  --raised: #e9eef0;
  --border: #d2dbe0;
  --text: #18242c;
  --muted: #566772;
  --accent: #285878;
  --on-accent: #fff;
  --tint: #e5edf2;
  --header: rgba(242, 244, 244, 0.94);
  --shadow: 0 24px 64px -42px #1b344855;
}
:root[data-gh-resolved="dark"] {
  --bg: #0a1116;
  --surface: #111a20;
  --raised: #18242b;
  --border: #2b3a43;
  --text: #e7eef0;
  --muted: #a2b0b5;
  --accent: #8aacc5;
  --on-accent: #09151d;
  --tint: #1c2c37;
  --header: rgba(10, 17, 22, 0.94);
  --shadow: 0 26px 68px -42px #000b;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    400 16px/1.65 Manrope,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select {
  font: inherit;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: Geist, Manrope, "Segoe UI", sans-serif;
  font-weight: 560;
  line-height: 1.16;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 4.8vw, 68px);
  letter-spacing: -0.025em;
  font-weight: 620;
}
h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
}
h3 {
  font-size: 23px;
  letter-spacing: -0.015em;
}
p {
  color: var(--muted);
  text-wrap: pretty;
}
small {
  font-size: 13px;
}
strong {
  font-weight: 600;
}
button {
  color: inherit;
}
a:hover {
  color: var(--accent);
}
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--accent);
  color: var(--on-accent);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(1180px, calc(100% - 64px));
  margin: auto;
}
.icon {
  display: inline-block;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  background: currentColor;
  mask: var(--icon) center/contain no-repeat;
  vertical-align: middle;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 50;
  background: var(--surface);
  padding: 12px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--header);
  position: relative;
  z-index: 20;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 44px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.brand img {
  height: 30px;
  width: 30px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}
.nav a {
  color: var(--muted);
}
.nav a[aria-current="page"],
.nav a:hover {
  color: var(--text);
}
.nav a[aria-current="page"] {
  box-shadow: 0 2px var(--accent);
  padding: 27px 0;
}
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}
.header-actions > a {
  display: flex;
  align-items: center;
  gap: 7px;
}
.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}
.panel-status small {
  padding: 3px 7px;
  border: 1px solid var(--border);
  border-radius: 5px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--accent);
  color: var(--on-accent);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.button:hover {
  color: var(--on-accent);
  filter: brightness(1.07);
}
.button:active {
  transform: translateY(1px);
}
.button.secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.button.secondary:hover {
  border-color: var(--accent);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 600;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 10px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow .icon {
  width: 18px;
  height: 18px;
}
.home-hero {
  padding: 80px 0 66px;
}
.home-hero h1 {
  max-width: 1000px;
}
.home-hero h1 span {
  color: var(--accent);
}
.home-hero p {
  font-size: 21px;
  max-width: 570px;
  line-height: 1.5;
  margin: 25px 0 30px;
}
.actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 62px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.hero-bottom span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.section {
  padding: 76px 0 84px;
}
.section-head {
  margin-bottom: 32px;
  max-width: 640px;
}
.section-head p {
  margin-top: 13px;
  font-size: 18px;
}
.services {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 20px;
}
.service {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: border-color 0.2s;
}
.service:hover {
  border-color: var(--accent);
}
.service.featured {
  background: var(--raised);
}
.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.service-top .icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.label {
  font-size: 13px;
  color: var(--muted);
}
.service p {
  max-width: 390px;
  margin: 15px 0 26px;
}
.service-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-top: auto;
}
.service-price {
  font-size: 33px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.service-price small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}
.home-services {
  padding-top: 0;
}
.editorial {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 110px;
  border-top: 1px solid var(--border);
}
.editorial > div > p {
  margin-top: 18px;
  max-width: 410px;
}
.feature-list {
  display: grid;
  gap: 28px;
}
.feature-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 18px;
}
.feature-row > .icon {
  color: var(--accent);
  margin-top: 3px;
}
.feature-row h3 {
  font-size: 20px;
}
.feature-row p {
  font-size: 16px;
  margin-top: 7px;
}
.page-hero {
  padding: 54px 0 36px;
}
.breadcrumb {
  align-items: center;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  gap: 9px;
  margin-bottom: 25px;
}
.breadcrumb .icon {
  width: 14px;
  height: 14px;
}
.page-hero h1 {
  font-size: clamp(36px, 4vw, 52px);
}
.page-hero p {
  margin-top: 15px;
  font-size: 19px;
  max-width: 620px;
}
.configure {
  padding-bottom: 76px;
  scroll-margin-top: 25px;
}
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.tier-button {
  position: relative;
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 22px 24px;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.tier-button[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--tint);
  box-shadow: inset 0 0 0 1px var(--accent);
}
.tier-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 600;
}
.tier-top .icon {
  color: var(--accent);
  width: 20px;
  height: 20px;
}
.selection-mark {
  margin-left: auto;
  width: 16px;
  height: 16px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.tier-button[aria-pressed="true"] .selection-mark {
  border: 5px solid var(--accent);
}
.tier-rate {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.tier-rate small {
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0;
}
.tier-button p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.45;
}
.configuration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}
.controls {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  overflow: hidden;
}
.control-section {
  padding: 28px 30px;
}
.control-section + .control-section {
  border-top: 1px solid var(--border);
}
.control-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 25px;
}
.control-title h2,
.control-title h3 {
  font-size: 21px;
  letter-spacing: -0.01em;
}
.muted {
  color: var(--muted);
}
.stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.stepper button {
  width: 35px;
  height: 39px;
  background: var(--raised);
  border: 0;
  display: grid;
  place-items: center;
}
.stepper .icon {
  width: 15px;
  height: 15px;
}
.stepper input {
  width: 48px;
  background: var(--surface);
  color: var(--text);
  border: 0;
  text-align: center;
  font-weight: 600;
  appearance: textfield;
  -moz-appearance: textfield;
}
.stepper input::-webkit-inner-spin-button {
  appearance: none;
}
.stepper span {
  padding-right: 12px;
  font-size: 14px;
  color: var(--muted);
}
input[type="range"] {
  appearance: none;
  background: transparent;
  width: 100%;
  height: 30px;
  accent-color: var(--accent);
  cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
}
input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -7px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--accent);
}
input[type="range"]::-moz-range-track {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
}
input[type="range"]::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--accent);
}
.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  padding: 2px 2px 0;
}
.range-help {
  font-size: 14px;
  margin-top: 17px;
  max-width: 540px;
}
.terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.term {
  padding: 13px 7px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--surface);
  font-size: 15px;
  font-weight: 600;
}
.term[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--tint);
}
.term small {
  display: block;
  font-size: 12px;
  color: var(--accent);
  margin-top: 4px;
}
.term span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.billing-explainer {
  font-size: 13px;
  margin-top: 14px;
}
.summary {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  position: sticky;
  top: 24px;
  box-shadow: var(--shadow);
}
.summary-kicker {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 13px;
}
.summary h2 {
  font-size: 25px;
}
.price-line {
  font-size: 43px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-top: 23px;
  font-variant-numeric: tabular-nums;
}
.price-period {
  font-size: 14px;
  color: var(--muted);
  margin-top: 5px;
}
.monthly-equivalent {
  font-size: 14px;
  color: var(--accent);
  margin-top: 8px;
}
.spec-list {
  display: grid;
  gap: 12px;
  margin: 25px 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  line-height: 1.45;
}
.spec-row .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--muted);
}
.spec-row strong {
  font-weight: 400;
}
.summary .button {
  width: 100%;
}
.checkout-note {
  font-size: 13px;
  line-height: 1.5;
  margin-top: 11px;
}
.summary-link {
  font-size: 14px;
  text-align: center;
  margin-top: 15px;
}
.summary-link button {
  background: none;
  border: 0;
  color: var(--muted);
  padding: 5px;
}
.summary-link button:hover {
  color: var(--accent);
}
.hardware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
}
.hardware-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 5px;
}
.hardware-item strong {
  display: block;
  font-size: 17px;
}
.hardware-item.cpu {
  grid-column: 1/-1;
}
.info {
  display: inline-block;
  position: relative;
}
.info summary {
  display: inline-flex;
  cursor: help;
  list-style: none;
  color: var(--muted);
  vertical-align: middle;
}
.info summary .icon {
  width: 15px;
  height: 15px;
}
.info p {
  position: absolute;
  z-index: 10;
  width: 240px;
  right: 0;
  top: 25px;
  padding: 14px;
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 13px;
  box-shadow: var(--shadow);
}
.bonus-box {
  background: var(--tint);
}
.bonus-heading {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 17px;
}
.bonus-heading .icon {
  color: var(--accent);
}
.bonus-heading h3 {
  font-size: 20px;
}
.bonus-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 0;
  font-size: 16px;
}
.bonus-item .icon {
  color: var(--accent);
  width: 18px;
  height: 18px;
}
.bonus-item small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.bonus-item .bonus-ram {
  margin-left: auto;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}
.bonus-note {
  margin-top: 10px;
  font-size: 13px;
}
.bonus-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bonus-summary {
  font-size: 13px;
  padding: 12px 0;
  color: var(--accent);
}
.runtime-options {
  display: flex;
  gap: 12px;
}
.runtime-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--raised);
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  flex: 1;
}
.runtime-options input {
  accent-color: var(--accent);
}
.comparison {
  border-top: 1px solid var(--border);
}
.tier-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.tier-detail {
  padding-right: 20px;
}
.tier-detail + .tier-detail {
  border-left: 1px solid var(--border);
  padding-left: 32px;
}
.tier-detail > p {
  font-size: 16px;
  margin: 13px 0 22px;
}
.included-list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.included-list li {
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.included-list .icon {
  color: var(--accent);
  width: 17px;
  height: 17px;
}
.all-included {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 23px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  color: var(--muted);
}
.all-included span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 80px;
  border-top: 1px solid var(--border);
}
.faq-layout > div > p {
  margin: 16px 0 22px;
}
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq details:first-child {
  padding-top: 0;
}
.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .icon {
  width: 17px;
  height: 17px;
  color: var(--muted);
}
.faq details[open] summary .icon {
  transform: rotate(180deg);
}
.faq details p {
  font-size: 16px;
  line-height: 1.6;
  padding: 14px 28px 5px 0;
}
.closing {
  background: var(--raised);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 76px;
}
.closing h2 {
  font-size: 30px;
}
.closing p {
  margin-top: 9px;
}
.footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}
.footer-top .brand {
  font-size: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom {
  padding-top: 24px;
  margin-top: 25px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}
.theme-control {
  display: flex;
  gap: 9px;
  align-items: center;
}
.theme-control select {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 6px 9px;
  font-size: 13px;
}
.mobile-order {
  display: none;
}
.notice {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--raised);
  font-size: 15px;
  color: var(--muted);
}
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.support-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
}
.support-card > .icon {
  color: var(--accent);
  width: 27px;
  height: 27px;
  margin-bottom: 22px;
}
.support-card p {
  margin: 15px 0 22px;
}
.policy {
  max-width: 780px;
  margin: 0 auto;
  padding: 55px 0 80px;
}
.policy h1 {
  font-size: 44px;
  margin-bottom: 22px;
}
.policy h2 {
  font-size: 25px;
  margin: 32px 0 14px;
}
.policy p {
  margin-bottom: 15px;
}
.policy ul {
  color: var(--muted);
  padding-left: 23px;
}
.error-page {
  padding: 100px 0 130px;
}
.error-page p {
  margin: 20px 0 28px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .home-hero {
    position: relative;
  }
  .home-hero:after {
    content: none;
    position: absolute;
    right: 0;
    top: 50px;
    font-size: 240px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.08em;
    color: var(--raised);
    z-index: -1;
    pointer-events: none;
  }
}
@media (max-width: 1023px) {
  .header-inner {
    gap: 24px;
  }
  .nav {
    gap: 18px;
  }
  .header-actions .text-link {
    display: none;
  }
  .header-actions .panel-status {
    display: none;
  }
  .configuration-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
  }
  .control-section {
    padding: 24px;
  }
  .terms {
    grid-template-columns: repeat(2, 1fr);
  }
  .editorial {
    gap: 50px;
  }
  .tier-button {
    padding: 20px;
  }
  .tier-detail-grid {
    gap: 20px;
  }
  .tier-detail + .tier-detail {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    height: 68px;
  }
  .header-inner {
    gap: 14px;
  }
  .brand {
    font-size: 21px;
  }
  .header-actions {
    gap: 12px;
  }
  .header-actions > .button {
    padding: 9px 12px;
    font-size: 14px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .nav {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 22px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"] {
    display: grid;
    gap: 18px;
  }
  .nav a[aria-current="page"] {
    padding: 0;
    box-shadow: none;
    color: var(--accent);
  }
  .home-hero {
    padding: 48px 0 38px;
  }
  .home-hero p {
    font-size: 19px;
    margin: 22px 0 27px;
  }
  .hero-bottom {
    margin-top: 38px;
    gap: 14px;
    align-items: start;
    flex-direction: column;
  }
  .services {
    grid-template-columns: 1fr;
  }
  .service {
    padding: 27px;
    min-height: 290px;
  }
  .service-bottom {
    align-items: start;
    flex-direction: column;
  }
  .service-bottom .button {
    width: 100%;
  }
  .section {
    padding: 48px 0 54px;
  }
  .home-services {
    padding-top: 0;
  }
  .editorial,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero {
    padding: 32px 0 27px;
  }
  .page-hero h1 {
    font-size: 38px;
  }
  .page-hero p {
    font-size: 18px;
  }
  .tier-grid {
    gap: 7px;
  }
  .tier-button {
    padding: 14px 10px;
  }
  .tier-top {
    font-size: 16px;
    margin-bottom: 10px;
    gap: 5px;
  }
  .tier-top > .icon {
    display: none;
  }
  .selection-mark {
    width: 12px;
    height: 12px;
  }
  .tier-button[aria-pressed="true"] .selection-mark {
    border-width: 4px;
  }
  .tier-rate {
    font-size: 23px;
  }
  .tier-rate small {
    display: block;
    font-size: 11px;
  }
  .tier-button p {
    display: none;
  }
  .configuration-grid {
    grid-template-columns: 1fr;
  }
  .control-section {
    padding: 23px 20px;
  }
  .control-title {
    gap: 8px;
  }
  .control-title h2 {
    font-size: 20px;
  }
  .summary {
    position: static;
    padding: 25px;
  }
  .terms {
    grid-template-columns: repeat(2, 1fr);
  }
  .hardware-grid {
    gap: 20px;
  }
  .configure {
    padding-bottom: 45px;
  }
  .tier-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tier-detail + .tier-detail {
    padding: 27px 0 0;
    border-left: 0;
    border-top: 1px solid var(--border);
  }
  .all-included {
    gap: 16px;
  }
  .closing {
    padding: 27px;
    align-items: start;
    flex-direction: column;
    margin-bottom: 48px;
  }
  .closing h2 {
    font-size: 27px;
  }
  .footer-top,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
  .footer-links {
    gap: 15px 22px;
  }
  .mobile-order {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    align-items: center;
    justify-content: space-between;
    background: var(--header);
    border-top: 1px solid var(--border);
    padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
    gap: 16px;
  }
  .mobile-order strong {
    font-size: 21px;
    font-variant-numeric: tabular-nums;
  }
  .mobile-order small {
    display: block;
    color: var(--muted);
    font-size: 12px;
  }
  .has-config .footer {
    padding-bottom: 110px;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
  .policy {
    padding: 35px 0 55px;
  }
  .policy h1 {
    font-size: 36px;
  }
  .info p {
    right: -55px;
  }
  .actions {
    gap: 18px;
  }
}
/* Surface hierarchy: 12px panels, 8px controls, round selection indicators. */
.service,
.support-card,
.controls,
.summary,
.tier-button {
  border-radius: 12px;
}
.tier-button {
  padding-top: 26px;
  padding-bottom: 26px;
  transition:
    border-color 220ms,
    background 220ms,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.tier-button[aria-pressed="true"] {
  box-shadow: inset 0 3px var(--accent);
}
.tier-top {
  font-weight: 650;
}
.tier-rate {
  font-size: 32px;
  letter-spacing: -0.025em;
}
.summary {
  border-top: 3px solid var(--accent);
}
.summary h2 {
  font-size: 23px;
  line-height: 1.35;
}
.price-line {
  font-size: 48px;
  letter-spacing: -0.025em;
}
.control-title h2 {
  font-weight: 600;
}
.term,
.stepper {
  border-radius: 8px;
}
.term {
  transition:
    border-color 220ms,
    background 220ms,
    transform 250ms;
}
.hardware-item strong {
  font-size: 16px;
  font-weight: 550;
}
.service-top > .icon,
.support-card > .icon {
  box-sizing: content-box;
  padding: 10px;
  border-radius: 8px;
  color: var(--accent);
}
.button .icon,
.text-link .icon,
.faq summary .icon {
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}
.faq details[open] summary .icon {
  transform: rotate(180deg);
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .button:hover .icon,
  .text-link:hover .icon {
    transform: translateX(3px);
  }
  .tier-button:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
  }
  .term:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
  }
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
  .term:active,
  .tier-button:active {
    transform: translateY(1px);
  }
  .faq details[open] > p {
    animation: detail-enter 320ms ease-out;
  }
  @keyframes detail-enter {
    from {
      opacity: 0.3;
      transform: translateY(-5px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 767px) {
  .tier-button {
    padding: 18px 10px;
  }
  .tier-rate {
    font-size: 25px;
  }
  .summary h2 {
    font-size: 22px;
  }
}
.breadcrumb .icon,
.button > .icon,
.text-link > .icon {
  align-self: center;
  vertical-align: middle;
}
.tier-grid {
  align-items: stretch;
}
.tier-button {
  display: flex;
  flex-direction: column;
}
.tier-top {
  width: 100%;
}
.tier-hardware {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 12px;
}
.tier-fit {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 22px 0;
  min-height: 90px;
}
.tier-fit strong {
  display: block;
  color: var(--text);
  margin-bottom: 5px;
}
.tier-specs {
  display: grid;
  gap: 11px;
  font-size: 14px;
  margin-bottom: 24px;
}
.tier-specs > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.tier-specs .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.tier-extra {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--accent);
  font-size: 13px;
  line-height: 1.6;
  width: 100%;
}
.tier-extra .icon {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}
.configure > .all-included {
  margin: 0 0 30px;
  padding: 0 0 22px;
  border-top: 0;
  border-bottom: 1px solid var(--border);
}
.ram-track {
  position: relative;
}
.ram-track input {
  margin: 0;
  display: block;
}
.milestone-ticks {
  position: absolute;
  inset: 0 9px;
  pointer-events: none;
}
.milestone-ticks > span {
  position: absolute;
  top: 25px;
  height: 7px;
  width: 2px;
  background: var(--accent);
}
.milestone-ticks > span[data-unlocked="true"] {
  height: 9px;
}
.ram-rewards {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.rewards-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.rewards-heading > .icon {
  color: var(--accent);
}
.rewards-heading h3 {
  font-size: 18px;
}
.reward-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}
.reward {
  text-align: left;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  padding: 16px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reward[data-unlocked="true"] {
  background: var(--tint);
  border-color: var(--accent);
}
.reward:hover {
  border-color: var(--accent);
}
.reward-threshold {
  color: var(--muted);
  font-size: 13px;
}
.reward strong {
  font-size: 15px;
}
.reward-action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 4px;
}
.reward-action .icon {
  width: 15px;
  height: 15px;
}
.ram-rewards > .bonus-note {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .tier-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .tier-button {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 20px;
    column-gap: 12px;
  }
  .tier-top {
    grid-column: 1;
    font-size: 19px;
    margin-bottom: 0;
  }
  .tier-rate {
    grid-column: 2;
    grid-row: 1 / 3;
    text-align: right;
  }
  .tier-rate small {
    font-size: 12px;
  }
  .tier-hardware {
    grid-column: 1;
    margin-top: 10px;
  }
  .tier-fit {
    grid-column: 1 / -1;
    min-height: 0;
    margin: 18px 0;
  }
  .tier-specs {
    grid-column: 1 / -1;
    margin-bottom: 18px;
  }
  .tier-extra {
    grid-column: 1 / -1;
  }
  .configure > .all-included {
    gap: 12px 20px;
  }
  .configure > .all-included strong {
    width: 100%;
  }
}
/* Configurator and advisor share the same controls, rhythm and material. */
[hidden] { display: none !important; }
.configure-intro, .range-utilities, .recommendation-context {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.configure-intro { margin: 0 0 20px; font-size: 14px; }
.configure-intro > span { font-weight: 600; }
.service-advisor { margin-top: 22px; font-size: 14px; }
.control-eyebrow { display: block; color: var(--muted); font-size: 14px; font-weight: 550; letter-spacing: .02em; margin-bottom: 7px; }
.breadcrumb .icon { display: inline-block; flex: 0 0 16px; width: 16px; height: 16px; margin: 0; }
.button, .text-link { align-items: center; }
.button > .icon, .text-link > .icon { flex-shrink: 0; margin: 0; }
a[aria-disabled="true"] { opacity: .6; cursor: not-allowed; }
.region-section { border: 0; padding: 0; margin: 10px 0 32px; min-width: 0; }
.region-section legend { font-size: 21px; font-weight: 600; margin-bottom: 6px; padding: 0; }
.region-section > p { font-size: 14px; color: var(--muted); }
.region-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; margin-top: 17px; }
.region-option { position: relative; display: flex; align-items: center; gap: 12px; padding: 18px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); cursor: pointer; transition: border-color 180ms, background 180ms; }
.region-option input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.region-option:has(input:checked) { background: var(--tint); border-color: var(--accent); }
.region-option:has(input:focus-visible) { outline: 3px solid var(--accent); outline-offset: 3px; }
.region-option > .icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--accent); }
.region-option strong { display: block; font-size: 14px; font-weight: 600; }
.region-option small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.region-state { margin-left: auto; font-size: 12px; color: var(--muted); white-space: nowrap; }
.region-state .icon { color: var(--accent); width: 17px; height: 17px; }
.region-option:not(:has(input:checked)) .region-state .icon { visibility: hidden; }
.region-option.coming-soon { background: transparent; cursor: default; }
.coming-soon > .icon { color: var(--muted); }
.coming-soon .region-state { padding: 3px 6px; border-radius: 4px; background: var(--raised); }
.field-error { display: block; font-size: 13px; color: var(--text); margin-top: 6px; }
.field-error:empty { display: none; }
.field-error:not(:empty) { padding: 8px 0; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.recommendation-context { font-size: 14px; border-left: 2px solid var(--accent); padding: 12px 16px; background: var(--tint); margin-bottom: 22px; }
.recommendation-context > span { display: flex; align-items: center; gap: 8px; }
.recommendation-context .icon { color: var(--accent); width: 17px; height: 17px; }
.memory-section { padding-top: 32px; }
.memory-section .control-title { align-items: center; }
.stepper { overflow: visible; }
.stepper button { min-width: 44px; min-height: 44px; border-radius: 7px; color: var(--text); }
.stepper input { height: 44px; font-variant-numeric: tabular-nums; }
.memory-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin: 30px 0 35px; }
.memory-heading > div { display: flex; align-items: baseline; gap: 10px; }
.memory-heading strong { font-size: 56px; line-height: 1; letter-spacing: -.04em; font-weight: 600; font-variant-numeric: tabular-nums; }
.memory-heading span { color: var(--muted); font-size: 14px; }
#ram-monthly { text-align: right; font-variant-numeric: tabular-nums; }
.ram-scale { margin: 0 0 24px; padding-top: 20px; }
.ram-track { position: relative; height: 97px; padding-top: 48px; --ram-progress: 0; container-type: inline-size; }
.ram-track input[type="range"] { position: relative; display: block; z-index: 2; height: 44px; margin: 0; border-radius: 6px; }
.ram-track input::-webkit-slider-runnable-track { height: 10px; background: transparent; }
.ram-track input::-moz-range-track { height: 10px; background: transparent; }
.ram-track input::-webkit-slider-thumb { width: 28px; height: 28px; margin-top: -9px; background: var(--surface); border: 6px solid var(--accent); box-shadow: 0 2px 6px #03081033, 0 0 0 4px color-mix(in srgb,var(--accent) 12%,transparent); transition: box-shadow 160ms; }
.ram-track input::-moz-range-thumb { box-sizing: border-box; width: 28px; height: 28px; background: var(--surface); border: 6px solid var(--accent); box-shadow: 0 2px 6px #03081033; }
.ram-track input:hover::-webkit-slider-thumb { box-shadow: 0 0 0 7px color-mix(in srgb,var(--accent) 15%,transparent); }
.rail-base { position: absolute; top: 65px; left: 14px; right: 14px; height: 10px; border-radius: 6px; background: var(--raised); box-shadow: inset 0 1px 3px #03081035; overflow: hidden; }
.rail-fill { height: 100%; background: var(--accent); transform: scaleX(var(--ram-progress)); transform-origin: left; border-radius: inherit; transition: transform 200ms cubic-bezier(.22,1,.36,1); box-shadow: inset 0 1px 0 #ffffff30; }
.ram-track[data-dragging="true"] .rail-fill { transition: none; }
.rail-knob { position: absolute; z-index: 3; left: 0; top: 56px; width: 28px; height: 28px; border-radius: 50%; border: 6px solid var(--accent); background: var(--surface); box-shadow: 0 2px 6px #03081033, 0 0 0 4px color-mix(in srgb,var(--accent) 12%,transparent); pointer-events: none; transform: translateX(calc((100cqw - 28px) * var(--ram-progress))); transition: transform 200ms cubic-bezier(.22,1,.36,1), box-shadow 160ms; }
.ram-track input::-webkit-slider-thumb { opacity: 0; }
.ram-track input::-moz-range-thumb { opacity: 0; }
.ram-track:has(input:hover) .rail-knob { box-shadow: 0 0 0 7px color-mix(in srgb,var(--accent) 15%,transparent); }
.ram-track[data-dragging="true"] .rail-knob { transition: none; }
.milestone-ticks { position: absolute; inset: 0 14px; pointer-events: none; }
.milestone-ticks > .milestone-badge { display: flex; align-items: center; justify-content: center; top: 0; width: 32px; height: 32px; transform: translateX(-50%); background: var(--surface); border: 1px solid var(--border); border-radius: 8px; color: var(--muted); transition: color 220ms, border-color 220ms, background 220ms; }
.milestone-badge > .icon { width: 17px; height: 17px; }
.milestone-badge small { position: absolute; top: 32px; font-size: 11px; font-weight: 600; }
.milestone-badge:after { content: ""; position: absolute; top: 50px; width: 1px; height: 9px; background: var(--border); }
.milestone-ticks > .milestone-badge[data-unlocked="true"] { height: 32px; border-color: var(--accent); color: var(--accent); background: var(--tint); }
.range-labels { position: relative; height: 22px; margin: 0 14px; padding: 0; }
.range-labels span { position: absolute; font-size: 12px; transform: translateX(-50%); white-space: nowrap; }
.range-labels span:first-child { transform: none; }
.range-labels span:last-child { transform: translateX(-100%); }
.range-utilities { flex-direction: row-reverse; }
.range-utilities .text-link { font-size: 12px; }
.range-expand, .preset-choice { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 8px 13px; border: 1px solid var(--border); border-radius: 6px; background: var(--surface); color: var(--text); font-size: 13px; font-weight: 550; transition: border-color 180ms, background 180ms; }
.range-expand .icon, .preset-choice .icon { width: 16px; height: 16px; }
.range-expand:hover:not(:disabled), .preset-choice:hover:not(:disabled) { background: var(--tint); border-color: var(--accent); }
.ram-rewards { margin-top: 27px; padding-top: 26px; }
.rewards-heading { gap: 12px; margin-bottom: 22px; }
.reward-emblem, .service-glyph { display: grid; place-items: center; flex-shrink: 0; border-radius: 8px; }
.reward-emblem { width: 40px; height: 40px; background: var(--tint); color: var(--accent); border: 1px solid var(--border); }
.rewards-heading h3 { font-size: 18px; }
.rewards-heading .control-eyebrow { margin-bottom: 3px; }
.included-tag { color: var(--muted); font-size: 11px; margin-left: auto; white-space: nowrap; }
.included-services { display: grid; gap: 10px; }
.included-service { display: flex; align-items: center; gap: 12px; background: var(--tint); border: 1px solid color-mix(in srgb,var(--accent) 30%,var(--border)); border-radius: 8px; padding: 16px; }
.service-glyph { width: 34px; height: 38px; color: var(--accent); }
.included-service strong { font-size: 15px; font-weight: 550; }
.bonus-value { font-weight: 700; font-variant-numeric: tabular-nums; }
.included-service small { display: block; font-size: 12px; color: var(--muted); margin-top: 3px; }
.included-service > .icon { color: var(--accent); margin-left: auto; width: 18px; height: 18px; }
.bonus-empty { font-size: 14px; color: var(--muted); }
.next-reward { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0 4px; }
.next-reward p { font-size: 14px; }
.next-reward strong { font-weight: 550; }
.next-reward .range-expand { flex-shrink: 0; }
.bonus-complete { display: flex; gap: 8px; align-items: center; color: var(--accent); font-size: 13px; margin-top: 14px; }
.ram-rewards > .bonus-note { font-size: 12px; margin-top: 18px; }
.table-scroll { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; text-align: left; }
.comparison-table caption { text-align: left; margin-bottom: 12px; color: var(--muted); }
.comparison-table th, .comparison-table td { padding: 18px 16px; border-bottom: 1px solid var(--border); font-variant-numeric: tabular-nums; }
.comparison-table thead th { font-weight: 500; color: var(--muted); font-size: 12px; }
.comparison-table tbody th { font-weight: 600; }
.comparison-table tbody tr[data-selected="true"] { background: var(--tint); }
.comparison-table th .icon { width: 18px; height: 18px; margin-right: 8px; vertical-align: middle; color: var(--accent); }
.workload-summary { padding: 26px; border: 1px solid var(--border); border-radius: 10px; margin: 20px 0 26px; background: var(--surface); }
.workload-summary h2 { font-size: 24px; margin-bottom: 14px; }
.workload-summary p { font-size: 15px; color: var(--muted); margin-bottom: 16px; }
#setup-status { margin-left: 12px; font-size: 13px; }
.advisor-hero { padding: 42px 0 38px; max-width: 850px; }
.advisor-hero .breadcrumb { margin-bottom: 34px; }
.advisor-hero h1 { font-size: clamp(34px,4.3vw,57px); letter-spacing: -.035em; line-height: 1.12; margin: 12px 0 20px; }
.advisor-hero > p { color: var(--muted); max-width: 600px; font-size: 16px; line-height: 1.65; }
.advisor-hero > .text-link { margin-top: 22px; font-size: 14px; }
.advisor-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(340px,.88fr); gap: clamp(28px,5vw,70px); align-items: start; }
.advisor-form { min-width: 0; }
.advisor-section { padding: 30px 0; border-top: 1px solid var(--border); }
.advisor-section-title { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.advisor-section-title > div { min-width: 0; }
.advisor-section-title h2 { font-size: 22px; margin-bottom: 8px; }
.advisor-section-title p { font-size: 14px; color: var(--muted); }
.advisor-section-title > .icon { width: 24px; height: 24px; flex-shrink: 0; color: var(--muted); margin-left: auto; margin-top: 3px; }
.advisor-field { display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; font-size: 15px; }
.advisor-field > span { font-weight: 550; }
.advisor-field input, .advisor-field select { width: 100%; min-height: 50px; border: 1px solid var(--border); border-radius: 7px; padding: 11px 14px; background: var(--surface); color: var(--text); font-size: 16px; font-variant-numeric: tabular-nums; }
.advisor-field input:focus, .advisor-field select:focus { border-color: var(--accent); }
.advisor-field input[aria-invalid="true"] { border-color: var(--accent); outline: 1px solid var(--accent); }
.player-shortcuts { display: flex; flex-wrap: wrap; gap: 8px; }
.player-shortcuts button { min-height: 44px; padding: 8px 12px; border-radius: 6px; color: var(--muted); background: transparent; border: 1px solid var(--border); font-size: 13px; }
.player-shortcuts button[aria-pressed="true"] { color: var(--accent); border-color: var(--accent); background: var(--tint); }
.field-note { font-size: 12px; color: var(--muted); margin-top: -5px; }
.workload-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; border: 0; padding: 0; margin: 0; min-width: 0; }
.workload-options label { display: flex; align-items: flex-start; gap: 10px; padding: 14px; min-height: 60px; border: 1px solid var(--border); border-radius: 7px; font-size: 15px; cursor: pointer; }
.workload-options label:has(input:checked) { background: var(--tint); border-color: var(--accent); }
.workload-options input { accent-color: var(--accent); width: 16px; height: 16px; margin: 3px 0 0; flex-shrink: 0; }
.advisor-details { border-top: 1px solid var(--border); margin-top: 26px; }
.advisor-details summary { display: flex; align-items: center; justify-content: space-between; list-style: none; font-size: 14px; padding: 20px 0; cursor: pointer; }
.advisor-details summary::-webkit-details-marker { display: none; }
.advisor-details summary .icon { width: 17px; height: 17px; transition: transform 200ms; }
.advisor-details[open] summary .icon { transform: rotate(180deg); }
.advisor-details > div { padding-bottom: 16px; }
.advisor-details .field-note { margin-bottom: 24px; }
.advisor-result-wrap { position: sticky; top: 100px; min-width: 0; }
.advisor-result { padding: clamp(24px,3vw,36px); background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); border-top: 3px solid var(--accent); }
.result-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.result-top .icon { color: var(--accent); width: 24px; height: 24px; }
.advisor-result h2 { font-size: 30px; line-height: 1.2; letter-spacing: -.025em; }
.advisor-result h2 span { display: block; margin-top: 8px; color: var(--muted); font-size: 19px; font-weight: 500; }
.result-price { font-size: 44px; line-height: 1.2; font-weight: 600; letter-spacing: -.025em; font-variant-numeric: tabular-nums; margin: 26px 0 12px; }
.result-price small { font-size: 13px; font-weight: 400; color: var(--muted); margin-left: 8px; letter-spacing: 0; }
.result-processor { font-size: 14px; color: var(--muted); }
.result-meter { display: flex; gap: 5px; margin: 24px 0; }
.result-meter i { display: block; height: 5px; flex: 1; border-radius: 2px; background: var(--border); }
.result-meter i.filled { background: var(--accent); }
.result-specs { display: grid; gap: 12px; font-size: 13px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.result-specs > span, .result-bonuses p { display: flex; align-items: center; gap: 10px; }
.result-specs .icon { width: 17px; height: 17px; color: var(--muted); }
.result-reasons { padding: 22px 0; }
.result-reasons h3 { font-size: 14px; font-weight: 600; margin-bottom: 14px; }
.result-reasons p { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); line-height: 1.65; margin-top: 10px; }
.result-reasons .icon { width: 15px; height: 15px; color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.result-bonuses { padding: 16px; margin-bottom: 22px; background: var(--tint); border-radius: 7px; }
.result-bonuses p { margin-top: 9px; font-size: 14px; }
.result-bonuses p strong { font-weight: 550; }
.result-bonuses .icon { color: var(--accent); width: 18px; height: 18px; }
.result-bonuses small { display: block; margin-top: 12px; font-size: 12px; color: var(--muted); }
.advisor-result > .button { width: 100%; }
.result-footnote { font-size: 12px; line-height: 1.7; color: var(--muted); margin-top: 16px; }
.result-symbol { width: 44px; height: 44px; display: grid; place-items: center; background: var(--tint); border-radius: 8px; color: var(--accent); margin-bottom: 24px; }
.advisor-result > p:not([class]) { font-size: 15px; color: var(--muted); margin-top: 18px; }
.workload-recap { display: grid; gap: 8px; padding: 24px 0; margin: 10px 0; color: var(--muted); font-size: 14px; }
.preset-section { margin: 60px 0; padding-top: 32px; border-top: 1px solid var(--border); }
.preset-section h2 { font-size: 30px; }
.preset-section .section-head > p { font-size: 14px; max-width: 420px; }
.preset-choice[aria-pressed="true"] { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.advisor-closing { padding: 34px 0 65px; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.advisor-closing > div { display: flex; align-items: flex-start; gap: 20px; }
.advisor-closing > div > .icon { color: var(--accent); flex-shrink: 0; }
.advisor-closing h2 { font-size: 24px; margin-bottom: 12px; }
.advisor-closing p { font-size: 14px; color: var(--muted); max-width: 600px; }
.advisor-closing > a { flex-shrink: 0; }
@media (max-width: 1100px) {
  .service { min-width: 0; }
  .service-bottom { flex-wrap: wrap; gap: 18px; }
  .service-advisor { white-space: normal; }
  .header-actions > .text-link { display: none; }
  .region-option { padding: 14px 12px; gap: 9px; }
  .region-state { font-size: 11px; }
  .advisor-grid { gap: 28px; }
}
@media (max-width: 850px) {
  .configuration-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier-fit { min-height: 0; }
  .header-inner { gap: 16px; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--surface); padding: 22px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav[data-open="true"] { display: grid; gap: 18px; }
  .nav a[aria-current="page"] { padding: 0; box-shadow: none; color: var(--accent); }
  .menu-toggle { display: grid; place-items: center; }
  .advisor-grid { grid-template-columns: 1fr; }
  .advisor-result-wrap { position: static; }
  .region-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .advisor-closing { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 560px) {
  .region-option { display: grid; grid-template-columns: 20px minmax(0,1fr); padding: 14px 12px; }
  .region-state { grid-column: 2; margin-left: 0; justify-self: start; }
  .region-option strong { font-size: 13px; }
  .region-option:has(input:checked) .region-state { position: absolute; right: 12px; top: 12px; }
  .region-option:has(input:checked) { padding-right: 28px; }
  .memory-section .control-title { flex-wrap: wrap; }
  .memory-heading { margin-top: 28px; margin-bottom: 44px; }
  .memory-heading strong { font-size: 48px; }
  .milestone-ticks > .milestone-badge:nth-child(even) { top: -34px; }
  .milestone-badge:nth-child(even):after { height: 43px; }
  .rewards-heading { gap: 10px; }
  .included-tag { display: none; }
  .next-reward { flex-wrap: wrap; }
  .range-utilities { justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .range-expand { min-height: 44px; }
  .included-service { padding: 13px; gap: 9px; }
  .included-service strong { font-size: 14px; }
  .service-glyph { width: 25px; }
  .workload-options { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 14px 9px; font-size: 13px; }
  .comparison-table th .icon { display: none; }
  .preset-choice { padding: 8px; font-size: 12px; }
  .preset-choice .icon { display: none; }
  .advisor-hero { padding: 28px 0; }
  .advisor-hero .breadcrumb { margin-bottom: 25px; }
  .advisor-hero h1 { font-size: 35px; }
  .advisor-section-title { gap: 11px; }
  .advisor-section-title h2 { font-size: 20px; }
  .advisor-result { padding: 25px; }
  .preset-section { margin-top: 44px; }
  .preset-section h2 { font-size: 26px; }
  .workload-summary { padding: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}

/* Checkout and service status surfaces. These use the existing slate and blue
   system, with a denser working layout than the marketing pages. */
.checkout-page,
.account-page,
.admin-page {
  padding-bottom: 92px;
}
.checkout-hero {
  padding: 34px 0 30px;
}
.checkout-hero .breadcrumb {
  margin-bottom: 32px;
}
.checkout-hero-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
}
.checkout-hero h1 {
  font-size: clamp(38px, 4.4vw, 58px);
  margin: 10px 0 14px;
}
.checkout-hero p {
  max-width: 560px;
}
.checkout-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 270px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}
.checkout-progress span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.checkout-progress span + span:before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-right: 2px;
  background: var(--border);
}
.checkout-progress i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-style: normal;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
.checkout-progress .is-active {
  color: var(--text);
  font-weight: 600;
}
.checkout-progress .is-active i {
  color: var(--on-accent);
  border-color: var(--accent);
  background: var(--accent);
}
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  align-items: start;
  gap: clamp(26px, 5vw, 68px);
}
.checkout-form {
  min-width: 0;
}
.checkout-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.checkout-panel + .checkout-panel {
  margin-top: 18px;
}
.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.panel-heading h2 {
  font-size: 25px;
}
.panel-heading .text-link,
.panel-heading .text-button {
  flex-shrink: 0;
  margin-top: 6px;
  font-size: 13px;
}
.text-button {
  min-height: 42px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  cursor: pointer;
}
.text-button:hover {
  color: var(--accent);
}
.checkout-service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--tint);
}
.checkout-service-card .service-glyph {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.checkout-service-card strong {
  display: block;
  font-size: 16px;
}
.checkout-service-card p {
  margin-top: 3px;
  font-size: 13px;
}
.checkout-service-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--accent);
  font-size: 12px;
  white-space: nowrap;
}
.checkout-service-status .icon {
  width: 15px;
  height: 15px;
}
.checkout-inline-error {
  margin: 14px 0 0;
}
.addon-fieldset {
  min-width: 0;
  padding: 26px 0 0;
  margin: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.addon-fieldset legend {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
}
.addon-fieldset > .field-note {
  margin: 5px 0 17px;
  font-size: 13px;
}
.checkout-term-fieldset {
  min-width: 0;
  padding: 26px 0 0;
  margin: 28px 0 0;
  border: 0;
  border-top: 1px solid var(--border);
}
.checkout-term-fieldset legend {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
}
.checkout-term-fieldset > .field-note {
  margin: 5px 0 17px;
  font-size: 13px;
}
.checkout-term-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}
.checkout-term-option {
  display: grid;
  gap: 3px;
  min-width: 0;
  min-height: 66px;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg);
  color: var(--muted);
  text-align: left;
  transition: border-color 180ms, background 180ms, color 180ms;
}
.checkout-term-option strong,
.checkout-term-option small {
  display: block;
}
.checkout-term-option strong {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.checkout-term-option small {
  font-size: 11px;
}
.checkout-term-option:hover,
.checkout-term-option[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--tint);
  color: var(--accent);
}
.checkout-term-option[aria-pressed="true"] strong {
  color: var(--accent);
}
.addon-list {
  display: grid;
  gap: 10px;
}
.addon-row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
}
.addon-row:hover:not(.is-unavailable) {
  border-color: var(--accent);
  background: var(--tint);
}
.addon-row:has(input:checked) {
  border-color: var(--accent);
  background: var(--tint);
}
.addon-row:has(input:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.addon-row.is-unavailable {
  cursor: not-allowed;
  opacity: 1;
}
.addon-row input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--accent);
}
.addon-copy,
.addon-meta {
  min-width: 0;
}
.addon-copy strong,
.addon-copy small {
  display: block;
}
.addon-copy strong {
  font-size: 14px;
  font-weight: 600;
}
.addon-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.addon-meta {
  text-align: right;
  white-space: nowrap;
  align-self: start;
}
.addon-meta b,
.addon-meta em {
  display: block;
}
.addon-meta b {
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.addon-meta em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
}
.addon-row:not(.is-unavailable) .addon-meta em {
  color: var(--accent);
}
.addon-quantity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 550;
}
.addon-quantity input {
  width: 52px;
  height: 29px;
  padding: 3px 5px;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: var(--surface);
  color: var(--text);
  font-size: 12px;
  text-align: center;
}
.addon-quantity input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.oauth-group {
  display: grid;
  gap: 10px;
  margin: 18px 0 4px;
}
.oauth-divider {
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.oauth-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.checkout-panel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.checkout-panel-actions .button {
  flex-shrink: 0;
}
.checkout-account-intro {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: 14px;
}
.auth-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
}
.auth-switch button {
  flex: 1;
  min-height: 42px;
  padding: 8px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 550;
}
.auth-switch button[aria-selected="true"] {
  background: var(--surface);
  color: var(--text);
  box-shadow: 0 1px 3px #03081020;
}
.auth-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  margin-bottom: 17px;
  font-size: 14px;
  font-weight: 550;
}
.checkout-field input {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
}
.checkout-field input:focus {
  border-color: var(--accent);
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}
.verification-panel {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) minmax(160px, .72fr);
  align-items: center;
  gap: 12px;
  padding: 15px;
  margin: 6px 0 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--tint);
}
.verification-panel .service-glyph {
  width: 36px;
  height: 36px;
  background: var(--surface);
}
.verification-panel strong,
.verification-panel p {
  display: block;
}
.verification-panel p {
  margin-top: 3px;
  font-size: 12px;
}
.verification-panel .checkout-field {
  margin: 0;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.consent-field input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.consent-field a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.payment-provider-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}
.payment-provider-note .icon {
  width: 17px;
  height: 17px;
  color: var(--accent);
}
.checkout-status {
  min-height: 22px;
  margin: 15px 3px 0;
  font-size: 13px;
}
.checkout-status[data-kind="error"] {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}
.checkout-status[data-kind="success"] {
  color: var(--accent);
}
.checkout-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.checkout-summary h2 {
  font-size: 24px;
  margin-bottom: 18px;
}
.summary-service-line,
.summary-line,
.checkout-summary-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.summary-service-line {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.summary-service-line strong,
.summary-line strong,
.checkout-summary-total strong {
  font-variant-numeric: tabular-nums;
}
.checkout-summary > p,
.summary-muted {
  color: var(--muted);
  font-size: 12px;
}
#checkout-term-line {
  margin-top: 10px;
}
.checkout-summary-lines {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  margin-top: 5px;
  border-bottom: 1px solid var(--border);
}
.summary-line {
  color: var(--muted);
  font-size: 13px;
}
.summary-line strong {
  color: var(--text);
  font-size: 13px;
}
.checkout-summary-total {
  padding: 18px 0 8px;
  font-size: 14px;
  font-weight: 600;
}
.checkout-summary-total strong {
  font-size: 25px;
}
.checkout-summary-note {
  line-height: 1.6;
}
.summary-trust {
  display: flex;
  gap: 10px;
  padding: 16px 0 18px;
  margin: 21px 0 17px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.summary-trust > span {
  color: var(--accent);
}
.summary-trust .icon {
  width: 19px;
  height: 19px;
}
.summary-trust strong,
.summary-trust small {
  display: block;
}
.summary-trust strong {
  font-size: 13px;
}
.summary-trust small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.checkout-summary > .text-link {
  font-size: 13px;
}
.account-page .page-hero,
.admin-page .page-hero {
  padding: 42px 0 32px;
}
.account-state,
.admin-orders-state {
  min-height: 230px;
}
.loading-state {
  display: grid;
  gap: 12px;
  max-width: 530px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.loading-bar {
  display: block;
  width: 70%;
  height: 14px;
  border-radius: 3px;
  background: var(--raised);
  animation: loading-pulse 1.3s ease-in-out infinite alternate;
}
.loading-bar.short {
  width: 42%;
}
@keyframes loading-pulse {
  from { opacity: .45; }
  to { opacity: 1; }
}
.account-toolbar,
.admin-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}
.account-toolbar strong {
  display: block;
  margin-top: 3px;
  font-size: 16px;
}
.account-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
}
.account-notice p {
  font-size: 13px;
}
.account-services {
  display: grid;
  gap: 15px;
  margin-top: 21px;
}
.account-service {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.account-service-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.account-service-heading .service-glyph {
  width: 38px;
  height: 38px;
  background: var(--tint);
}
.account-service-heading strong,
.account-service-heading small {
  display: block;
}
.account-service-heading small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}
.status-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 3px 8px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.status-tag.active,
.status-tag.paid {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--tint);
  font-weight: 700;
}
.status-tag.pending,
.status-tag.provisioning,
.status-tag.awaiting-payment,
.status-tag.creating {
  color: var(--muted);
  border-style: dashed;
}
.status-tag.failed,
.status-tag.canceled,
.status-tag.cancelled,
.status-tag.expired,
.status-tag.error {
  color: var(--text);
  border-color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.account-service-grid .status-tag,
.admin-detail summary .status-tag {
  margin-left: 0;
  justify-self: start;
}
.account-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px 0 3px;
}
.account-service-grid small,
.account-service-grid strong {
  display: block;
}
.account-service-grid small {
  color: var(--muted);
  font-size: 13px;
}
.account-service-grid strong {
  margin-top: 4px;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.account-freebies {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}
.account-freebies > strong {
  color: var(--text);
}
.account-freebies > span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-freebies .icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
}
.account-empty {
  max-width: 650px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
}
.account-empty h2 {
  font-size: 24px;
  margin-bottom: 10px;
}
.account-empty .button,
.account-empty .text-link {
  margin-top: 20px;
}
.admin-toolbar {
  align-items: end;
}
.search-field {
  display: grid;
  gap: 7px;
  width: min(560px, 100%);
  color: var(--muted);
  font-size: 15px;
}
.search-field input {
  min-height: 46px;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
}
.admin-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
}
.admin-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  font-size: 13px;
  text-align: left;
}
.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.admin-table th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 550;
}
.admin-table tbody tr:last-child td {
  border-bottom: 0;
}
.admin-table td strong,
.admin-table td small {
  display: block;
}
.admin-table td small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
.admin-error {
  max-width: 190px;
  color: var(--text) !important;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.admin-actions button {
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
  color: var(--text);
  font-size: 13px;
}
.admin-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}
@media (max-width: 850px) {
  .checkout-hero-row {
    display: block;
  }
  .checkout-progress {
    margin-top: 24px;
  }
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
    order: -1;
  }
  .auth-fields {
    grid-template-columns: 1fr;
  }
  .account-service-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .checkout-page,
  .account-page,
  .admin-page {
    padding-bottom: 62px;
  }
  .checkout-hero {
    padding-top: 26px;
  }
  .checkout-hero .breadcrumb {
    margin-bottom: 25px;
  }
  .checkout-panel,
  .checkout-summary,
  .account-empty {
    padding: 21px;
  }
  .panel-heading {
    display: block;
  }
  .panel-heading .text-link,
  .panel-heading .text-button {
    display: inline-flex;
    margin-top: 13px;
  }
  .checkout-service-card {
    align-items: flex-start;
  }
  .checkout-service-status {
    display: none;
  }
  .addon-row {
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    padding: 13px;
  }
  .checkout-term-options {
    grid-template-columns: 1fr 1fr;
  }
  .addon-meta {
    grid-column: 2;
    text-align: left;
  }
  .addon-meta b,
  .addon-meta em {
    display: inline;
  }
  .addon-meta em:before {
    content: " · ";
    color: var(--muted);
  }
  .checkout-panel-actions,
  .account-toolbar,
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .checkout-panel-actions .button {
    width: 100%;
  }
  .verification-panel {
    grid-template-columns: 36px minmax(0, 1fr);
  }
  .verification-panel .checkout-field {
    grid-column: 1 / -1;
  }
  .checkout-progress {
    min-width: 0;
    gap: 4px;
    font-size: 13px;
  }
  .checkout-progress span + span:before {
    width: 16px;
  }
  .account-service {
    padding: 16px;
  }
  .account-service-heading {
    align-items: flex-start;
  }
  .account-service-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}
/* Website ticket type selector: radio-cards share the existing surface,
   border, tint, and accent system. No new palette. */
.ticket-category-group {
  border: 0;
  padding: 0;
  margin: 0 0 17px;
}
.ticket-category-group legend {
  padding: 0;
  font-size: 15px;
  font-weight: 550;
}
.ticket-category-group .field-note {
  margin: 6px 0 12px;
}
.ticket-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.ticket-category-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 72px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  cursor: pointer;
  transition: border-color 180ms, background 180ms;
}
.ticket-category-card:hover {
  border-color: var(--accent);
  background: var(--tint);
}
.ticket-category-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--tint);
}
.ticket-category-card:has(input:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}
.ticket-category-card input {
  width: 17px;
  height: 17px;
  margin: 3px 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.ticket-category-copy strong,
.ticket-category-copy small {
  display: block;
}
.ticket-category-copy strong {
  font-size: 14px;
  font-weight: 600;
}
.ticket-category-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}
@media (max-width: 560px) {
  .ticket-category-grid {
    grid-template-columns: 1fr;
  }
}

/* Visual refinement: a more architectural surface system and an image-led
   homepage, while keeping the existing slate and blue brand language. */
.site-header {
  background: var(--header);
  backdrop-filter: saturate(115%) blur(14px);
}

.service,
.support-card,
.controls,
.summary,
.tier-button {
  border-radius: 9px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(58px, 7vw, 96px) 0 54px;
}

.home-hero-copy {
  min-width: 0;
}

.home-hero .eyebrow {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-hero .eyebrow .icon {
  color: var(--accent);
}

.home-hero h1 {
  max-width: 740px;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.home-hero h1 span {
  color: var(--accent);
}

.home-hero p {
  max-width: 510px;
  margin: 22px 0 28px;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
}

.home-hero .actions {
  gap: 20px;
}

.home-hero .hero-bottom {
  justify-content: flex-start;
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: 36px;
  padding: 0;
  border: 0;
}

.home-hero .hero-bottom span {
  gap: 9px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
}

.home-hero .hero-bottom .icon {
  color: var(--accent);
}

.home-hero-visual {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 390px;
  aspect-ratio: 1.1;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--border) 78%, transparent);
  border-radius: 9px;
  background: #0b141c;
  box-shadow: var(--shadow);
}

.home-hero-visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #08111a24, transparent 46%);
  content: "";
  pointer-events: none;
}

.home-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  filter: saturate(0.68) contrast(1.06);
  transform: scale(1.025);
  transition: filter 420ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.services {
  grid-auto-flow: dense;
  align-items: stretch;
  gap: 18px;
}

.service {
  position: relative;
  min-height: 310px;
  border-color: color-mix(in srgb, var(--border) 86%, var(--accent));
  background: var(--surface);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--text) 4%, transparent);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service.featured {
  transform: translateY(-9px);
  border-color: var(--border);
  background: var(--raised);
  box-shadow: inset 3px 0 var(--accent), var(--shadow);
}

.service-top .icon {
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--surface);
}

.service.featured .service-top .icon {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--border));
}

.editorial {
  padding-top: 82px;
  border-top-color: var(--border);
}

.editorial > div > h2 {
  max-width: 20ch;
  font-size: clamp(32px, 3.5vw, 46px);
  letter-spacing: -0.045em;
}

.feature-list {
  gap: 0;
}

.feature-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-row h3 {
  font-size: 19px;
  letter-spacing: -0.025em;
}

.closing {
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 9px;
  background: var(--raised);
  box-shadow: var(--shadow);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .home-hero-visual:hover img {
    filter: saturate(0.84) contrast(1.06);
    transform: scale(1.055);
  }

  .service.featured:hover {
    transform: translateY(-12px);
    box-shadow: inset 3px 0 var(--accent), 0 28px 64px -40px color-mix(in srgb, var(--accent) 34%, transparent);
  }

  .service:not(.featured):hover {
    transform: translateY(2px);
  }
}

@media (max-width: 1023px) {
  .home-hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 30px;
  }

  .home-hero-visual {
    min-height: 330px;
  }
}

@media (max-width: 767px) {
  .home-hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 48px 0 38px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 10.5vw, 58px);
  }

  .home-hero-visual {
    min-height: 240px;
    aspect-ratio: 1.55;
  }

  .home-hero .hero-bottom {
    gap: 12px;
    align-items: flex-start;
    flex-direction: column;
  }

  .services {
    gap: 14px;
  }

  .service,
  .service.featured,
  .service:not(.featured) {
    min-height: 290px;
    transform: none;
  }

  .editorial {
    padding-top: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-visual img,
  .service {
    transition: none;
  }
}
