:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #5e6966;
  --panel: #ffffff;
  --paper: #f6f7f3;
  --paper-strong: #ebece5;
  --line: #d9ded6;
  --line-dark: #bfc7bd;
  --teal: #097f78;
  --teal-dark: #075d58;
  --brass: #b98223;
  --carbon: #242927;
  --carbon-soft: #343b38;
  --mist: #e8f2ef;
  --danger: #9d3a2f;
  --shadow: 0 24px 70px rgba(26, 34, 32, 0.14);
  --radius: 8px;
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(24, 32, 31, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(24, 32, 31, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(135deg, rgba(9, 127, 120, 0.12), transparent 28%),
    linear-gradient(315deg, rgba(185, 130, 35, 0.11), transparent 30%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.8), transparent 46%);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: var(--carbon);
  color: #fff;
  transition: transform 180ms ease;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(160px, auto) 1fr auto;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(191, 199, 189, 0.8);
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(246, 247, 243, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--carbon);
  border-radius: 7px;
  background: var(--carbon);
  color: #fbfcf7;
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-weight: 800;
}

.brand strong,
h1,
h2,
h3,
.score-block strong,
.price-card h3 {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 15px;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a,
.footer a {
  position: relative;
}

.nav-links a::after,
.footer a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--teal);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.footer a:hover::after,
.footer a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--carbon);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--carbon);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--carbon);
}

.section-band {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: clamp(650px, 82svh, 860px);
  align-items: center;
  padding-top: clamp(44px, 6vw, 78px);
  padding-bottom: clamp(36px, 5vw, 58px);
}

.hero-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}

.hero-copy {
  min-width: 0;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(54px, 8.8vw, 124px);
  line-height: 0.88;
}

.hero-line {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: clamp(26px, 3.3vw, 44px);
  font-weight: 800;
  line-height: 1.04;
}

.lead,
.section-heading p,
.download-panel p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
}

.actions,
.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  border-color: var(--teal-dark);
  background: var(--teal);
  color: #fff;
  box-shadow: 4px 4px 0 var(--carbon);
}

.button.secondary {
  border-color: var(--line-dark);
  background: #fff;
  color: var(--ink);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--teal-dark);
  box-shadow: 6px 6px 0 var(--carbon);
}

:focus-visible {
  outline: 3px solid rgba(9, 127, 120, 0.45);
  outline-offset: 3px;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.signal-row span,
.pill {
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.workstation {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--carbon);
  border-radius: var(--radius);
  background: var(--carbon);
  box-shadow: var(--shadow), 10px 10px 0 rgba(185, 130, 35, 0.28);
  color: #f8fbf7;
  overflow: hidden;
}

.window-bar {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 14px;
  background: #1b201e;
}

.traffic {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 10px;
  border-radius: 0;
  background:
    radial-gradient(circle at 5px 50%, var(--danger) 0 5px, transparent 5.5px),
    radial-gradient(circle at 22px 50%, var(--brass) 0 5px, transparent 5.5px),
    radial-gradient(circle at 39px 50%, var(--teal) 0 5px, transparent 5.5px);
  box-shadow: none;
}

.window-title,
.window-status {
  color: rgba(248, 251, 247, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.window-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.window-status {
  justify-self: end;
  white-space: nowrap;
}

.machine-panel {
  display: grid;
  grid-template-columns: minmax(120px, 0.8fr) 1fr;
  gap: 18px;
  padding: 22px;
}

.score-block {
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(9, 127, 120, 0.28), transparent),
    #303734;
}

.score-label,
.score-block small,
.recommendation-card small,
.status-kicker {
  display: block;
  color: rgba(248, 251, 247, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.score-block strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 76px;
  line-height: 0.9;
}

.meter-stack {
  display: grid;
  align-content: center;
  gap: 18px;
}

.meter-stack span {
  position: relative;
  height: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.meter-stack span::before {
  display: block;
  width: var(--level);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), #6fb6a2, var(--brass));
  content: "";
}

.recommendation-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: #f8fbf7;
  color: var(--ink);
}

.recommendation-card small {
  margin-bottom: 5px;
  color: var(--teal-dark);
}

.recommendation-card strong {
  display: block;
  line-height: 1.3;
}

.terminal-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0 22px 22px;
  list-style: none;
}

.terminal-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 251, 247, 0.82);
  font-size: 14px;
}

.terminal-list strong {
  color: #f3c46d;
  font-size: 12px;
  text-transform: uppercase;
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
}

.section-heading.compact {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.download-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
}

.section-heading p,
.download-panel p {
  margin: 18px 0 0;
}

.workflow-steps,
.pricing-grid,
.trust-grid,
.use-case-grid,
.account-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.hero-grid > *,
.workflow-steps > *,
.pricing-grid > *,
.trust-grid > *,
.use-case-grid > *,
.account-grid > *,
.download-panel > *,
.trust-panel > * {
  min-width: 0;
}

.workflow-steps {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.step-card,
.price-card,
.use-card,
.form-panel,
.status-panel,
.trust-panel,
.download-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 38px rgba(26, 34, 32, 0.07);
}

.step-card {
  min-height: 260px;
  padding: 18px;
}

.step-card:nth-child(even) {
  transform: translateY(28px);
}

.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: var(--brass);
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-weight: 900;
}

.step-card h3,
.use-card h3,
.trust-grid h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1;
}

.step-card h3 {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
}

.step-card p,
.price-card p,
.price-card li,
.use-card p,
.trust-grid p,
.faq-list p,
.account .section-heading p {
  color: var(--muted);
  line-height: 1.55;
}

.trust {
  padding-top: clamp(84px, 10vw, 136px);
}

.trust-panel {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.75fr) 1fr;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 4vw, 44px);
  background:
    linear-gradient(135deg, rgba(9, 127, 120, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.88);
}

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

.trust-grid article {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 16px;
}

.trust-grid h3 {
  margin-top: 0;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.price-card {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
}

.price-card.featured {
  border-color: var(--carbon);
  background:
    linear-gradient(180deg, rgba(9, 127, 120, 0.12), transparent 42%),
    #fff;
  box-shadow: 6px 6px 0 var(--carbon), 0 18px 46px rgba(26, 34, 32, 0.12);
}

.plan-label {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.use-case-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.use-card {
  min-height: 250px;
  padding: 20px;
}

.icon-box {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--carbon);
  border-radius: 7px;
  background: var(--paper-strong);
  color: var(--carbon);
  font-family: "Bahnschrift", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.download-panel {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  border-color: var(--carbon);
  padding: clamp(24px, 5vw, 52px);
}

.download-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.account-grid {
  grid-template-columns: minmax(280px, 0.95fr) minmax(260px, 0.7fr);
  align-items: stretch;
}

.account-cta-panel {
  display: grid;
  width: min(920px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--carbon);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 6px 6px 0 rgba(36, 41, 39, 0.18), var(--shadow);
}

.account-cta-panel h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.account-cta-panel p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.account-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.form-panel,
.status-panel {
  padding: clamp(18px, 3vw, 28px);
}

.form-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.tab-button {
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 900;
}

.tab-button.is-active {
  border-color: var(--carbon);
  background: var(--carbon);
  color: #fff;
}

.account-form {
  display: none;
  gap: 14px;
}

.account-form.is-active {
  display: grid;
}

.account-tools {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.account-tools details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.account-tools summary {
  padding: 13px 14px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.account-tools summary::-webkit-details-marker {
  display: none;
}

.mini-form {
  display: grid;
  gap: 12px;
  padding: 0 14px 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0 13px;
  background: #fff;
  color: var(--ink);
}

input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  accent-color: var(--teal);
}

input::placeholder {
  color: #87918d;
}

.status-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  background: var(--carbon);
  color: #fff;
}

.status-kicker {
  color: rgba(255, 255, 255, 0.64);
}

.status-actions {
  display: grid;
  gap: 10px;
}

pre {
  min-height: 210px;
  margin: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: #1b201e;
  color: #e9efe9;
  font: 600 13px/1.6 "Cascadia Code", "Consolas", monospace;
  white-space: pre-wrap;
}

.account-dashboard {
  width: min(1180px, 100%);
  margin: 18px auto 0;
}

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

.dashboard-card,
.dashboard-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.dashboard-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.dashboard-card h3 {
  margin: 0;
  font-size: 18px;
}

.metric-row,
.activation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
  color: var(--muted);
  line-height: 1.45;
}

.metric-row strong {
  color: var(--ink);
  text-align: right;
}

.activation-row .button {
  min-height: 36px;
  flex: 0 0 auto;
  color: var(--ink);
}

.activation-row .button.ghost {
  border-color: var(--line-dark);
  background: #fff;
}

.dashboard-rule {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line-dark);
}

.muted-line {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.account-page .topbar {
  background: rgba(246, 247, 243, 0.9);
}

.account-main {
  min-height: calc(100svh - 88px);
}

.account-hero {
  padding-top: clamp(54px, 7vw, 92px);
}

.account-shell {
  display: grid;
  width: min(1080px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 72px);
}

.account-copy {
  position: sticky;
  top: 96px;
}

.account-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
}

.account-value-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.account-value-list span {
  width: fit-content;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.account-card-stack {
  display: grid;
  gap: 14px;
}

.account-view,
.account-status-panel,
.account-context-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(26, 34, 32, 0.07);
}

.account-view {
  display: none;
  padding: clamp(20px, 3vw, 30px);
}

.account-view.is-active {
  display: block;
}

.account-view-heading {
  margin-bottom: 20px;
}

.account-view-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}

.account-view-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.account-view .account-form {
  display: grid;
}

.ux-form {
  gap: 14px;
}

.compact-form {
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.form-switch {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-switch a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-row-between {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-row-between a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checkbox-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.secondary-step {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.secondary-step[hidden],
[hidden] {
  display: none !important;
}

.form-message {
  margin: 0;
  border: 1px solid rgba(9, 127, 120, 0.28);
  border-radius: var(--radius);
  padding: 14px 16px;
  background: rgba(232, 242, 239, 0.86);
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.45;
}

.button.ghost-light {
  border-color: var(--line-dark);
  background: transparent;
  color: var(--muted);
}

.account-status-panel {
  padding: 18px;
  background: var(--carbon);
  color: #fff;
}

.account-status-panel pre {
  min-height: 138px;
  margin-top: 12px;
}

.account-context-panel {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(9, 127, 120, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.9);
}

.context-meter {
  display: grid;
  gap: 10px;
  border: 1px solid var(--carbon);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--carbon);
  color: #fff;
}

.context-meter span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.context-meter strong {
  font-family: "Bahnschrift", "Aptos Display", "Segoe UI", sans-serif;
  font-size: 42px;
  line-height: 0.95;
}

.context-list {
  display: grid;
  gap: 14px;
}

.context-list article {
  border-left: 3px solid var(--teal);
  padding-left: 14px;
}

.context-list h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.context-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.mock-dashboard {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mock-dashboard .dashboard-card {
  box-shadow: none;
}

.primary-dashboard-card {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(9, 127, 120, 0.16), transparent 38%),
    #fff;
}

.primary-dashboard-card h3 {
  font-size: clamp(26px, 3vw, 38px);
  overflow-wrap: anywhere;
}

.dashboard-actions-card {
  grid-column: 1 / -1;
}

.dashboard-actions-card .button {
  margin-top: 8px;
}

.faq-list {
  display: grid;
  width: min(860px, 100%);
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  padding: 0;
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: var(--teal-dark);
  content: "+";
  display: grid;
  place-items: center;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.reveal {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-ready .reveal:not(.is-visible) {
  transform: translateY(8px);
  opacity: 0.94;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

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

  .reveal {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1100px) {
  .workflow-steps,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card:nth-child(even) {
    transform: none;
  }

  .use-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .account-shell {
    grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1fr);
  }

  .account-context-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .trust-panel,
  .download-panel,
  .account-grid,
  .account-shell,
  .account-cta-panel {
    grid-template-columns: 1fr;
  }

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

  .account-copy {
    position: static;
  }

  .account-cta-actions {
    justify-content: flex-start;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .section-band {
    padding: 56px 18px;
  }

  .hero-grid,
  .workflow-steps,
  .pricing-grid,
  .trust-grid,
  .use-case-grid,
  .account-grid,
  .account-shell,
  .account-cta-panel,
  .download-panel,
  .trust-panel,
  .faq-list {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .topbar {
    gap: 14px;
    padding: 12px 16px;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 78px);
  }

  .hero-line {
    font-size: 25px;
  }

  .account-hero {
    padding-top: 76px;
  }

  .account-copy h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .lead {
    font-size: 16px;
  }

  .workstation {
    box-shadow: var(--shadow);
  }

  .machine-panel,
  .recommendation-card {
    grid-template-columns: 1fr;
  }

  .window-bar {
    grid-template-columns: 48px minmax(0, 1fr);
    row-gap: 8px;
  }

  .window-status {
    grid-column: 2;
  }

  .window-status {
    justify-self: start;
  }

  .machine-panel {
    padding: 16px;
  }

  .recommendation-card {
    align-items: flex-start;
    margin: 0 16px 14px;
  }

  .terminal-list {
    padding: 0 16px 16px;
  }

  .workflow-steps,
  .pricing-grid,
  .trust-grid,
  .use-case-grid,
  .mock-dashboard {
    grid-template-columns: 1fr;
  }

  .price-card,
  .use-card,
  .step-card {
    min-height: auto;
  }

  .actions,
  .download-actions,
  .account-cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .topbar {
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }
}
