@font-face {
  font-family: "Inbox Sans";
  src: local("Avenir Next"), local("Inter"), local("Helvetica Neue");
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #0a2422;
  --ink-soft: #37504d;
  --paper: #f7f4ec;
  --paper-deep: #ebe7dc;
  --white: #fffef9;
  --signal: #d8ff66;
  --signal-deep: #9aca32;
  --mint: #bde8d5;
  --blue: #c9dcff;
  --sand: #f5d9a5;
  --danger: #a73f2c;
  --border: rgba(10, 36, 34, 0.16);
  --shadow: 0 30px 70px rgba(10, 36, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inbox Sans", "Avenir Next", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #315faa;
  outline-offset: 3px;
}

button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.secondary-button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 12px 18px;
  font-weight: 750;
}

.demo-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px dashed rgba(10, 36, 34, 0.34);
  border-radius: 14px;
  background: rgba(255, 254, 249, 0.55);
}

.demo-panel div {
  display: grid;
  gap: 3px;
}

.demo-panel span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.4;
}

.mock-banner {
  width: fit-content;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #e8e1ff;
  color: #3f2b72;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-card {
  max-width: 610px;
  text-align: center;
}

.checkout-card .mock-banner {
  margin-inline: auto;
}

.checkout-card h1 {
  font-size: clamp(38px, 6vw, 58px);
  letter-spacing: -0.055em;
}

.price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
}

.price strong {
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.07em;
}

.price span {
  text-align: left;
  color: var(--ink-soft);
  line-height: 1.4;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.dashboard-shell,
.admin-shell {
  width: min(1180px, calc(100% - 64px));
  min-height: 70vh;
  margin: 0 auto;
  padding: 55px 0 90px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}

.dashboard-heading h1,
.admin-shell h1 {
  margin-bottom: 12px;
  font-size: clamp(54px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.admin-shell h1 {
  font-size: clamp(48px, 6.1vw, 78px);
}

.dashboard-heading p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.5;
}

.dashboard-status {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  border-radius: 999px;
  background: var(--signal);
  padding: 12px 17px;
  font-weight: 750;
}

.dashboard-status.attention {
  background: var(--sand);
}

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

.dashboard-grid article,
.dashboard-lower > *,
.admin-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(10, 36, 34, 0.06);
  padding: 24px;
}

.dashboard-grid article > p {
  margin: 18px 0 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-grid article > strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.dashboard-grid small {
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
}

.placement-list {
  display: grid;
  gap: 11px;
}

.placement-list > span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--border);
}

.placement-list small {
  grid-column: 1 / -1;
}

.dashboard-lower {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 16px;
}

.dashboard-lower h2,
.admin-card h2 {
  font-size: 20px;
  letter-spacing: -0.03em;
}

.dashboard-lower aside {
  background: var(--ink);
  color: var(--white);
}

.dashboard-lower aside p {
  color: #c6d3d1;
  line-height: 1.5;
}

.dashboard-lower aside .secondary-button {
  border-color: var(--signal);
  color: var(--signal);
}

.dashboard-lower aside .text-button {
  display: block;
  margin-top: 18px;
  color: var(--white);
}

.activity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.activity-list time {
  color: var(--ink-soft);
  font-size: 13px;
}

.inline-alert {
  width: min(1180px, calc(100% - 64px));
  margin: -70px auto 60px;
  color: var(--danger);
}

.admin-shell > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.admin-card {
  overflow: hidden;
}

.admin-card dl {
  margin: 0 0 18px;
  padding: 12px;
  border-radius: 10px;
  background: var(--paper);
  font-size: 12px;
}

.admin-card dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8px;
}

.admin-card dt {
  color: var(--ink-soft);
}

.admin-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.sentinel-separation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid #b7d3ca;
  border-radius: 14px;
  background: var(--mint);
}

.sentinel-separation span {
  max-width: 650px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.admin-workflows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0;
}

.admin-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(10, 36, 34, 0.06);
}

.admin-form h2,
.admin-form p {
  margin: 0;
}

.admin-form p {
  color: var(--ink-soft);
  line-height: 1.5;
}

.admin-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
}

.admin-form select,
.admin-form input,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.admin-form textarea {
  min-height: 88px;
  resize: vertical;
}

@media (max-width: 800px) {
  .demo-panel,
  .dashboard-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-grid,
  .dashboard-lower,
  .admin-grid,
  .admin-workflows {
    grid-template-columns: 1fr;
  }

  .sentinel-separation {
    align-items: flex-start;
    flex-direction: column;
  }

  .dashboard-status {
    width: fit-content;
  }
}

@media (max-width: 520px) {
  .dashboard-shell,
  .admin-shell {
    width: min(100% - 32px, 1180px);
    padding-top: 28px;
  }

  .dashboard-heading h1,
  .admin-shell h1 {
    font-size: 50px;
  }

  .dashboard-grid article,
  .dashboard-lower > *,
  .admin-card {
    padding: 19px;
  }

  .activity-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #2b64e8;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header,
footer {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  height: 94px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  fill: var(--ink);
}

.brand-mark path:nth-child(2),
.brand-mark circle {
  fill: none;
  stroke: var(--signal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-note {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f906b;
  box-shadow: 0 0 0 4px rgba(47, 144, 107, 0.12);
}

.hero {
  width: min(1240px, calc(100% - 64px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.76fr);
  align-items: center;
  gap: clamp(56px, 8vw, 120px);
  padding: 52px 0 88px;
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.eyebrow span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-deep);
}

.eyebrow span + span {
  padding-left: 16px;
  border-left: 1px solid var(--border);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(52px, 5.2vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 em {
  position: relative;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 7px;
  background: var(--signal);
  border-radius: 50%;
  transform: rotate(-1.5deg);
  z-index: -1;
}

.lede {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.58;
}

.scan-form {
  max-width: 690px;
}

.scan-form > label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 680;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.input-shell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(10, 36, 34, 0.28);
  border-radius: 9px;
  background: var(--white);
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease;
}

.input-shell:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 36, 34, 0.1);
}

.input-shell svg {
  width: 20px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.input-shell input {
  width: 100%;
  min-width: 0;
  height: 58px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 16px;
}

.input-shell input::placeholder {
  color: #7e8c89;
}

.input-shell.invalid {
  border-color: var(--danger);
}

.primary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 9px;
  background: var(--ink);
  box-shadow: 0 5px 0 #001a18;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 720;
  transition:
    transform 130ms ease,
    box-shadow 130ms ease,
    background 130ms ease;
}

.primary-button:hover {
  background: #133c39;
  transform: translateY(-1px);
  box-shadow: 0 7px 0 #001a18;
}

.primary-button:active {
  transform: translateY(3px);
  box-shadow: 0 2px 0 #001a18;
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.primary-button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-hint,
.field-error {
  min-height: 18px;
  margin: 10px 0 0;
  font-size: 12px;
}

.form-hint {
  color: #61716f;
}

.field-error {
  display: none;
  color: var(--danger);
  font-weight: 650;
}

.field-error:not(:empty) {
  display: block;
}

.field-error:not(:empty) + .form-hint {
  display: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 12px;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: var(--mint);
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.health-preview {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: var(--white);
}

.health-preview::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(216, 255, 102, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 40px rgba(216, 255, 102, 0.025),
    0 0 0 80px rgba(216, 255, 102, 0.018);
}

.preview-top,
.preview-caption {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-label {
  margin: 0;
  color: inherit;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-date {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.status-orbit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 38px 8px 35px;
}

.orbit-ring {
  position: relative;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 255, 102, 0.32);
  border-radius: 50%;
  background: rgba(216, 255, 102, 0.07);
  box-shadow: 0 0 0 8px rgba(216, 255, 102, 0.03);
}

.orbit-ring svg {
  width: 34px;
  fill: none;
  stroke: var(--signal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.orbit-pulse {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--signal);
}

.status-orbit strong,
.status-orbit span {
  display: block;
}

.status-orbit strong {
  margin-bottom: 7px;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.status-orbit div > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.preview-grid {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.preview-grid > div {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 12px 15px;
}

.preview-grid > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.component-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.component-icon.mint {
  background: var(--mint);
}

.component-icon.sand {
  background: var(--sand);
}

.component-icon.blue {
  background: var(--blue);
}

.preview-grid small,
.preview-grid strong {
  display: block;
}

.preview-grid small {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.preview-grid strong {
  font-size: 12px;
}

.check-mark {
  color: var(--signal);
}

.preview-caption {
  padding: 20px 4px 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 14px;
}

.signal-bars i {
  width: 3px;
  border-radius: 2px;
  background: var(--signal);
}

.signal-bars i:nth-child(1) {
  height: 4px;
}

.signal-bars i:nth-child(2) {
  height: 7px;
}

.signal-bars i:nth-child(3) {
  height: 10px;
}

.signal-bars i:nth-child(4) {
  height: 14px;
}

.what-we-check {
  padding: 90px max(32px, calc((100vw - 1240px) / 2)) 100px;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 70px;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.section-index {
  margin-bottom: 20px;
  color: #657471;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.what-we-check h2 {
  max-width: 340px;
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.check-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.check-cards article {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--paper);
}

.card-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 10px;
}

.check-cards h3 {
  margin: 24px 0 10px;
  font-size: 17px;
  letter-spacing: -0.025em;
}

.check-cards p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.positioning {
  padding: 72px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--ink);
  color: white;
  text-align: center;
}

.positioning p {
  margin: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.positioning p:first-child {
  color: rgba(255, 255, 255, 0.34);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.positioning p + p {
  margin-top: 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.workflow-view {
  width: min(1080px, calc(100% - 64px));
  min-height: calc(100vh - 94px);
  margin: 0 auto;
  padding: 72px 0 110px;
}

.workflow-card {
  max-width: 650px;
  margin: 50px auto;
  padding: 60px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.centered {
  justify-content: center;
}

.scanner-visual {
  position: relative;
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: var(--ink);
}

.scanner-visual svg {
  width: 68px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.65);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.scanner-line {
  position: absolute;
  z-index: 1;
  width: 80%;
  height: 2px;
  background: var(--signal);
  box-shadow: 0 0 14px var(--signal);
  animation: scan 2.2s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-40px);
  }
  50% {
    transform: translateY(40px);
  }
}

.workflow-card h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.workflow-lede {
  max-width: 450px;
  margin: 0 auto 32px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.progress-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #536461;
  font-size: 11px;
}

.progress-steps span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--paper);
}

.progress-steps li.active {
  color: var(--ink);
  font-weight: 700;
}

.progress-steps li.active span {
  border-color: var(--ink);
  background: var(--signal);
}

.quiet-note,
.phase-note {
  margin: 0;
  color: #536461;
  font-size: 11px;
  line-height: 1.5;
}

.result-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
}

.partial-notice {
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid #e7c090;
  border-radius: 10px;
  background: #fff4e5;
  color: #6c421f;
  font-size: 12px;
  line-height: 1.55;
}

.results-section-title {
  margin: 0 0 12px;
  font-size: 14px;
}

.result-heading h1 {
  max-width: 700px;
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.result-domain {
  margin: 0;
  color: var(--ink-soft);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
}

.result-badge {
  flex: none;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 750;
}

.result-badge.needs-attention {
  background: var(--sand);
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 18px;
  margin-top: 30px;
}

.result-checks,
.provider-card,
.evidence-panel {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
}

.result-checks {
  margin: 0;
  padding: 0;
  list-style: none;
}

.result-check {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  min-height: 88px;
  padding: 18px 20px;
}

.result-check + .result-check {
  border-top: 1px solid var(--border);
}

.result-check-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.result-check.attention .result-check-icon {
  background: var(--sand);
}

.result-check.unknown .result-check-icon {
  background: var(--blue);
}

.result-check strong,
.result-check small {
  display: block;
}

.result-check strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.result-check small {
  color: var(--ink-soft);
  font-size: 11px;
}

.status-word {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 750;
  text-transform: capitalize;
}

.status-word::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3c9b74;
}

.attention .status-word::before {
  background: #c6732e;
}

.unknown .status-word::before {
  background: #537bc5;
}

.provider-card {
  height: fit-content;
  padding: 24px;
  background: var(--ink);
  color: white;
}

.provider-identity {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 24px 0;
}

.provider-identity > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--signal);
  color: var(--ink);
  font-size: 19px;
  font-weight: 800;
}

.provider-identity strong,
.provider-identity small {
  display: block;
}

.provider-identity strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.provider-identity small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
}

.provider-card > p:not(.mini-label, .phase-note) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.55;
}

.primary-button.full {
  width: 100%;
  margin: 12px 0 16px;
  border-color: var(--signal);
  background: var(--signal);
  box-shadow: none;
  color: var(--ink);
}

.primary-button.full:disabled {
  opacity: 0.6;
}

.provider-card .phase-note {
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.provider-card .provider-match {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.68);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 9px;
}

.provider-override {
  display: grid;
  gap: 8px;
  margin: 20px 0 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.provider-override label {
  font-size: 11px;
  font-weight: 700;
}

.provider-override select {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: #26312f;
  color: white;
}

.provider-update {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  color: white;
}

.evidence-panel {
  margin-top: 14px;
  padding: 0 20px;
}

.evidence-panel summary {
  padding: 18px 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.evidence-list {
  padding: 0 0 18px;
}

.evidence-intro {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.evidence-item {
  padding: 13px 0;
  border-top: 1px solid var(--border);
}

.evidence-item strong,
.evidence-item code,
.evidence-item span {
  display: block;
}

.evidence-item strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.evidence-item code {
  overflow-wrap: anywhere;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.evidence-item span {
  margin-top: 5px;
  color: #596866;
  font-size: 9px;
}

.text-button {
  margin-top: 24px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.next-steps {
  margin-top: 22px;
  padding: 26px;
  border-radius: 14px;
  background: var(--blue);
}

.next-steps h2 {
  max-width: 720px;
  margin: 10px 0;
  font-size: clamp(23px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.next-steps p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.6;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.error-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: #f6d8ce;
  color: var(--danger);
  font-size: 24px;
  font-weight: 800;
}

footer {
  min-height: 150px;
  gap: 24px;
  border-top: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 11px;
}

footer p {
  margin: 0;
}

[hidden] {
  display: none !important;
}

.permission-card {
  max-width: 820px;
}

.secure-step,
.verified-connection {
  width: fit-content;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #dff5ea;
  color: #175942;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 750;
}

.permission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 30px 0 20px;
  text-align: left;
}

.permission-grid > div,
.capability-note,
.approval-help {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  background: #fff;
}

.permission-grid h2,
.approval-help h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.permission-grid .plain-list {
  margin: 0;
}

.no-access li::before {
  content: "— ";
  color: var(--ink-soft);
}

.approval-help {
  margin: 24px 0;
  background: #fff7e6;
  border-color: #ead5a5;
  text-align: left;
}

.approval-help ol {
  margin-bottom: 0;
  padding-left: 22px;
}

.secure-checkout {
  max-width: 680px;
}

.consent-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
}

.consent-list legend {
  padding: 0 8px;
  font-weight: 750;
}

.consent-list label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 14px;
}

.consent-list input {
  width: 18px;
  height: 18px;
  accent-color: var(--ink);
}

.capability-note {
  display: grid;
  gap: 5px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
}

.approval-preview {
  display: grid;
  gap: 0.3rem;
  margin: 1rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  background: var(--white);
  color: var(--ink-soft);
  line-height: 1.5;
}

.approval-preview strong {
  color: var(--ink);
}

.adapter-demo,
.secure-activity {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  padding: 20px;
  text-align: left;
}

.adapter-demo {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.adapter-demo p,
.secure-activity h2 {
  margin: 0;
}

.adapter-demo span,
.secure-activity small {
  color: var(--ink-soft);
  font-size: 12px;
}

.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dashboard-actions span {
  color: var(--ink-soft);
  font-size: 13px;
}

.health-evidence dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 18px;
}

.health-evidence dl > div {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.health-evidence dt,
.health-evidence small {
  color: var(--ink-soft);
  font-size: 12px;
}

.health-evidence dd {
  margin: 4px 0 0;
  font-weight: 750;
}

@media (max-width: 560px) {
  .health-evidence dl {
    grid-template-columns: 1fr;
  }
}

.secure-activity > div {
  margin-bottom: 16px;
}

.secure-activity .eyebrow {
  margin-bottom: 6px;
}

.secure-activity h2 {
  font-size: 19px;
}

.secure-activity ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.secure-activity li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 13px 0;
}

.secure-activity li > span {
  display: grid;
  gap: 3px;
}

.secure-activity time {
  flex: 0 0 auto;
  color: var(--ink-soft);
  font-size: 12px;
}

@media (max-width: 520px) {
  .secure-activity li {
    display: grid;
    gap: 5px;
  }
}

.button-link {
  display: block;
  text-align: center;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 38px;
  }

  .hero-copy {
    max-width: none;
  }

  .health-preview {
    width: min(520px, 100%);
    justify-self: center;
  }

  .what-we-check {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .what-we-check h2 {
    max-width: 580px;
  }

  .result-layout {
    grid-template-columns: 1fr;
  }

  .provider-card {
    order: -1;
  }
}

@media (max-width: 680px) {
  .site-header,
  footer,
  .hero,
  .workflow-view {
    width: min(100% - 32px, 1240px);
  }

  .site-header {
    height: 76px;
  }

  .header-note {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 28px 0 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .lede {
    font-size: 16px;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .primary-button {
    width: 100%;
  }

  .trust-list {
    display: grid;
  }

  .what-we-check {
    padding: 65px 16px 72px;
  }

  .check-cards {
    grid-template-columns: 1fr;
  }

  .check-cards article {
    min-height: 205px;
  }

  .positioning {
    padding: 55px 16px;
  }

  .workflow-view {
    padding: 28px 0 70px;
  }

  .workflow-card {
    margin: 20px auto;
    padding: 42px 20px;
  }

  .result-heading {
    display: block;
  }

  .result-badge {
    display: inline-block;
    margin-top: 18px;
  }

  .result-check {
    grid-template-columns: auto 1fr;
  }

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

  footer {
    min-height: 180px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

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

@media (max-width: 360px) {
  .site-header,
  footer,
  .hero,
  .workflow-view {
    width: min(100% - 24px, 1240px);
  }

  .hero h1 {
    font-size: 42px;
  }

  .health-preview {
    padding: 18px;
  }

  .status-orbit {
    gap: 14px;
  }

  .orbit-ring {
    width: 66px;
    height: 66px;
  }

  .status-orbit strong {
    font-size: 23px;
  }

  .progress-steps {
    gap: 2px;
  }
}

.plan-grid {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 22px 0;
  padding: 0;
}

.plan-grid legend {
  font-weight: 700;
  margin-bottom: 10px;
}
.plan-grid label {
  align-items: center;
  border: 1px solid var(--line, #d9ded8);
  border-radius: 14px;
  cursor: pointer;
  display: grid;
  gap: 3px 10px;
  grid-template-columns: auto 1fr auto;
  padding: 14px;
}
.plan-grid label.selected {
  border-color: #18634b;
  box-shadow: 0 0 0 2px #d9eee6;
}
.plan-grid label small {
  grid-column: 2 / 4;
}
.target-control {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}
.target-control input {
  width: 100%;
}

.metric-row {
  display: grid;
  gap: 6px;
  margin: 12px 0;
}
.metric-row span {
  display: flex;
  gap: 6px;
}
.value-summary {
  background: #f4f7f2;
  border-radius: 16px;
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 18px;
}
.value-summary div {
  display: grid;
  gap: 4px;
}
.preflight-card {
  background: #fff;
  border: 1px solid var(--line, #d9ded8);
  border-radius: 20px;
  display: grid;
  gap: 16px;
  margin: 20px 0;
  padding: clamp(20px, 4vw, 32px);
}
.preflight-card label {
  display: grid;
  font-weight: 700;
  gap: 7px;
}
.preflight-card input,
.preflight-card textarea {
  border: 1px solid #aab4ad;
  border-radius: 10px;
  font: inherit;
  padding: 12px;
  resize: vertical;
}

@media (min-width: 768px) {
  .plan-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .plan-grid label {
    align-content: start;
    grid-template-columns: auto 1fr;
  }
  .plan-grid label span,
  .plan-grid label small {
    grid-column: 2;
  }
  .value-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.success-banner {
  border: 1px solid #54832b;
  border-radius: 12px;
  background: #efffd5;
  padding: 14px 16px;
  color: #23420d;
  line-height: 1.45;
}

.break-anywhere,
.secure-dashboard h1,
.admin-card dd,
.referral-card input {
  overflow-wrap: anywhere;
}

.dashboard-primary {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
}

.secure-dashboard > .secure-activity {
  margin: 0 0 18px;
}

.details-link {
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 12px 0;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.detail-drawer {
  display: grid;
  gap: 16px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

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

.account-detail-grid details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  padding: 16px;
}

.account-detail-grid summary {
  cursor: pointer;
  font-weight: 800;
}

.compact-records,
.flag-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.compact-records li,
.flag-list li {
  display: grid;
  gap: 3px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.compact-records time,
.compact-records span,
.flag-list small {
  color: var(--ink-soft);
  font-size: 13px;
}

.referral-card label {
  display: grid;
  gap: 7px;
  font-weight: 750;
}

.referral-card input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--paper);
  padding: 10px;
}

.privacy-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.danger-link {
  color: var(--danger);
}

.danger-button {
  border: 1px solid #7d281b;
  border-radius: 999px;
  background: #8f2f20;
  color: #fff;
  cursor: pointer;
  padding: 12px 18px;
  font-weight: 800;
}

.dialog-backdrop {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 22, 20, 0.7);
  padding: 20px;
}

.confirm-dialog {
  width: min(540px, 100%);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
}

.confirm-dialog h2 {
  margin-top: 0;
  font-size: 28px;
}

.confirm-dialog p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.admin-policy-summary {
  margin: 18px 0;
}

.admin-policy-summary dl div {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
}

.flag-list li {
  grid-template-columns: 1fr auto;
  align-items: center;
}

[dir="rtl"] .dashboard-heading,
[dir="rtl"] .activity-list li,
[dir="rtl"] .secure-activity li {
  direction: rtl;
}

[dir="rtl"] .price span {
  text-align: right;
}

@media (max-width: 900px) {
  .dashboard-shell,
  .admin-shell {
    width: min(100% - 40px, 1180px);
  }

  .dashboard-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 680px) {
  .dashboard-shell,
  .admin-shell {
    width: min(100% - 28px, 1180px);
    padding-top: 28px;
  }

  .dashboard-heading h1,
  .admin-shell h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .account-detail-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-primary,
  .privacy-actions,
  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard-primary > *,
  .privacy-actions > *,
  .dialog-actions > * {
    width: 100%;
  }

  .admin-policy-summary dl div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .dashboard-shell,
  .admin-shell {
    width: min(100% - 20px, 1180px);
  }

  .dashboard-grid article,
  .dashboard-lower > *,
  .admin-card,
  .confirm-dialog {
    padding: 18px;
  }
}
