:root {
  color-scheme: dark;
  --bg: #070b09;
  --surface: #0d1511;
  --surface-raised: #111c16;
  --surface-soft: #0a100d;
  --border: rgba(190, 242, 211, 0.12);
  --border-strong: rgba(94, 230, 149, 0.34);
  --text: #f2fbf5;
  --muted: #9bada2;
  --muted-strong: #c8d7cd;
  --accent: #5ee695;
  --accent-bright: #86efac;
  --accent-ink: #052611;
  --amber: #f5c451;
  --red: #fb7185;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-small: 10px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 50% -20%, rgba(94, 230, 149, 0.09), transparent 38rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 3px solid rgba(94, 230, 149, 0.55);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.container-narrow {
  width: min(100% - 48px, 780px);
  margin: 0 auto;
}

.site-nav {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(7, 11, 9, 0.84);
  backdrop-filter: blur(18px);
}

.site-nav .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 780;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 28px;
  height: 28px;
}

.brand-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--text);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 760;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, opacity 150ms ease, border-color 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.button-disabled,
.button-disabled:hover {
  border-color: var(--border);
  background: var(--surface-raised);
  color: var(--muted-strong);
  cursor: default;
  opacity: 0.8;
  transform: none;
}

.button-small {
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 7px;
  font-size: 14px;
}

.button-secondary {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.button-block {
  width: 100%;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6.5vw, 74px);
  font-weight: 830;
  letter-spacing: -0.052em;
  line-height: 0.99;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 790;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 720;
  letter-spacing: -0.018em;
  line-height: 1.25;
}

.lede {
  max-width: 680px;
  color: var(--muted-strong);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.62;
}

.muted {
  color: var(--muted);
}

.accent {
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 94px 0 88px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(190, 242, 211, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 242, 211, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: 72px;
}

.hero-copy h1 {
  max-width: 720px;
}

.hero-copy .lede {
  margin-bottom: 30px;
}

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

.hero-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.dashboard {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  background: #f7f8f7;
  color: #18211b;
  box-shadow: var(--shadow), 0 0 0 8px rgba(94, 230, 149, 0.025);
  transform: rotate(1.2deg);
  overflow: hidden;
}

.dashboard::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.65);
  pointer-events: none;
  content: "";
}

.dashboard-bar {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border-bottom: 1px solid #dfe5e1;
  background: #ffffff;
  color: #5e6c63;
  font-size: 11px;
  font-weight: 700;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #cbd4ce;
}

.dashboard-body {
  padding: 20px;
}

.dash-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 17px;
}

.dash-kicker {
  display: block;
  margin-bottom: 2px;
  color: #718077;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dash-title {
  font-size: 17px;
  font-weight: 780;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border: 1px solid #b8e3c7;
  border-radius: 999px;
  background: #eaf8ef;
  color: #166534;
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.status-pill::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  content: "";
}

.progress-track {
  height: 7px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #e2e7e4;
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: #22a757;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.metric {
  padding: 10px;
  border: 1px solid #e0e6e2;
  border-radius: 8px;
  background: #fff;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: 15px;
  line-height: 1.2;
}

.metric span {
  margin-top: 3px;
  color: #758179;
  font-size: 9px;
}

.timeline-list {
  display: grid;
  gap: 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  border-top: 1px solid #e6ebe7;
  font-size: 11px;
}

.timeline-mark {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #def7e7;
  color: #16723a;
  font-size: 10px;
  font-weight: 800;
}

.timeline-row strong {
  display: block;
  font-size: 11px;
}

.timeline-row span {
  color: #77837b;
  font-size: 9px;
}

.timeline-time {
  color: #47534b !important;
  font-weight: 700;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(13, 21, 17, 0.5);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 30px;
  border-left: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: 0;
}

.icon-box {
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(94, 230, 149, 0.19);
  border-radius: 9px;
  background: rgba(94, 230, 149, 0.08);
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
}

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

.trust-item strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.trust-item span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-border {
  border-top: 1px solid var(--border);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 48px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card,
.feature-card,
.info-card,
.price-card,
.tutorial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 28, 22, 0.96), rgba(10, 16, 13, 0.96));
}

.process-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.process-card::after {
  position: absolute;
  right: -18px;
  bottom: -45px;
  color: rgba(94, 230, 149, 0.035);
  font-size: 132px;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 1;
  content: attr(data-step);
}

.process-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.process-card p,
.feature-card p,
.info-card p,
.tutorial-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 82px;
}

.split-copy p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 14px;
}

.check-list li::before {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(94, 230, 149, 0.11);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  content: "✓";
}

.recovery-file {
  padding: 24px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #f7f8f7;
  color: #172019;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.file-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.file-icon {
  width: 45px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd6ce;
  border-radius: 6px;
  background: #fff;
  color: #15803d;
  font-size: 11px;
  font-weight: 850;
}

.file-name {
  display: block;
  margin-top: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.verified-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid #a8dfbb;
  border-radius: 999px;
  background: #e9f8ef;
  color: #166534;
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.file-table {
  width: 100%;
  border-collapse: collapse;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.file-table th,
.file-table td {
  padding: 9px 8px;
  border-top: 1px solid #dde4df;
  text-align: left;
}

.file-table th {
  color: #637067;
  font-weight: 700;
}

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

.feature-card {
  min-height: 210px;
  padding: 25px;
}

.feature-card .icon-box {
  margin-bottom: 42px;
}

.boundary {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 50px;
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(110deg, rgba(94, 230, 149, 0.08), transparent 42%),
    var(--surface);
}

.boundary h2 {
  margin-bottom: 0;
}

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

.boundary-item {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(7, 11, 9, 0.55);
}

.boundary-label {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.boundary-item span:last-child {
  color: var(--muted-strong);
  font-size: 13px;
}

.cta-band {
  padding: 84px 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 110%, rgba(94, 230, 149, 0.16), transparent 32rem),
    var(--surface-soft);
  text-align: center;
}

.cta-band h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.cta-band p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 17px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--border);
  background: #060907;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* Interior page heroes */
.page-hero {
  padding: 80px 0 54px;
  text-align: center;
}

.page-hero h1 {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(40px, 6vw, 64px);
}

.page-hero .lede {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.price-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.price-card.featured {
  border-color: var(--border-strong);
  box-shadow: 0 22px 70px rgba(94, 230, 149, 0.075);
}

.price-card-head {
  padding: 31px;
  border-bottom: 1px solid var(--border);
}

.plan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 22px;
}

.plan-name {
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.plan-badge {
  padding: 4px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 750;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price-amount {
  color: var(--text);
  font-size: clamp(44px, 6vw, 61px);
  font-weight: 830;
  letter-spacing: -0.055em;
  line-height: 1;
}

.price-period {
  color: var(--muted);
  font-size: 15px;
}

.annual-price {
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 14px;
}

.annual-price strong {
  color: var(--accent);
}

.price-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 31px;
}

.plan-cap {
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: 16px;
  font-weight: 650;
}

.included-list {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--muted-strong);
  font-size: 14px;
}

.included-list li::before {
  color: var(--accent);
  font-weight: 900;
  content: "✓";
}

.price-card .button {
  margin-top: auto;
}

.price-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

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

.info-card {
  padding: 24px;
}

.info-card .icon-box {
  margin-bottom: 24px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.faq-item {
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin-bottom: 7px;
  font-size: 16px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Tutorial */
.tutorial-video-section {
  padding: 0 0 76px;
}

.tutorial-video-frame {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #030504;
  box-shadow: var(--shadow);
}

.tutorial-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
  object-fit: contain;
}

.tutorial-video-meta {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
}

.tutorial-video-meta strong {
  color: var(--text);
  font-weight: 700;
}

.tutorial-intro {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.tutorial-intro h2 {
  margin-bottom: 0;
  font-size: 28px;
}

.tutorial-intro p {
  margin-bottom: 0;
  color: var(--muted);
}

.tutorial-steps {
  display: grid;
  gap: 28px;
}

.tutorial-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: start;
  gap: 26px;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(17, 28, 22, 0.9), rgba(10, 16, 13, 0.9));
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--accent);
  font-size: 14px;
  font-weight: 850;
}

.step-copy p {
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 14px;
}

.step-copy p:last-child {
  margin-bottom: 0;
}

.step-tip {
  padding: 11px 13px;
  border-left: 2px solid var(--accent);
  background: rgba(94, 230, 149, 0.055);
  color: var(--muted-strong) !important;
  font-size: 12px !important;
}

.ui-panel {
  overflow: hidden;
  border: 1px solid #dce3df;
  border-radius: 11px;
  background: #f6f7f6;
  color: #202820;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
}

.ui-panel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid #e0e5e2;
  background: #fff;
  font-size: 10px;
  font-weight: 760;
}

.ui-panel-body {
  padding: 15px;
}

.ui-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.ui-field {
  min-height: 50px;
  padding: 8px 10px;
  border: 1px solid #d9e0dc;
  border-radius: 7px;
  background: #fff;
}

.ui-field.full {
  grid-column: 1 / -1;
}

.ui-label,
.ui-value {
  display: block;
}

.ui-label {
  margin-bottom: 4px;
  color: #77827b;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.ui-value {
  font-size: 10px;
  font-weight: 700;
}

.ui-button-row {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}

.ui-button {
  padding: 6px 10px;
  border: 1px solid #cfd8d2;
  border-radius: 6px;
  background: #fff;
  color: #344038;
  font-size: 9px;
  font-weight: 750;
}

.ui-button.primary {
  border-color: #1d7d42;
  background: #1d7d42;
  color: #fff;
}

.ui-banner {
  margin-bottom: 11px;
  padding: 10px 11px;
  border: 1px solid #b9dec5;
  border-radius: 7px;
  background: #eaf7ee;
  color: #245d37;
  font-size: 9px;
  font-weight: 650;
}

.ui-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ui-stat {
  padding: 9px;
  border: 1px solid #dce3df;
  border-radius: 7px;
  background: #fff;
}

.ui-stat strong,
.ui-stat span {
  display: block;
}

.ui-stat strong {
  font-size: 13px;
}

.ui-stat span {
  color: #77827b;
  font-size: 8px;
}

.ui-list {
  display: grid;
  gap: 8px;
}

.ui-list-spaced {
  margin-top: 8px;
}

.ui-list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #dce3df;
  border-radius: 7px;
  background: #fff;
  font-size: 9px;
}

.ui-list-row strong,
.ui-list-row span {
  display: block;
}

.ui-list-row span {
  color: #77827b;
  font-size: 8px;
}

.ui-pill {
  padding: 4px 7px;
  border-radius: 999px;
  background: #e7f7ec;
  color: #16703a !important;
  font-size: 8px !important;
  font-weight: 800;
}

.ui-pill.amber {
  background: #fff6d8;
  color: #8a6414 !important;
}

.term-table,
.recovery-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.term-table th,
.term-table td,
.recovery-table th,
.recovery-table td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.term-table th,
.recovery-table th {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.term-table td:first-child,
.recovery-table td:first-child {
  color: var(--accent);
  font-weight: 700;
}

.term-table td:last-child,
.recovery-table td:last-child {
  color: var(--muted-strong);
}

/* Documentation and legal */
.doc-page {
  padding: 72px 0 96px;
}

.doc-page h1 {
  margin-bottom: 14px;
  font-size: clamp(40px, 6vw, 58px);
}

.doc-page h2 {
  margin-top: 48px;
  margin-bottom: 12px;
  font-size: 24px;
}

.doc-page p,
.doc-page li {
  color: var(--muted-strong);
}

.doc-page a:not(.button) {
  color: var(--accent);
}

.doc-meta {
  margin-bottom: 38px;
  color: var(--muted) !important;
  font-size: 13px;
}

.doc-callout {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-small);
  background: rgba(94, 230, 149, 0.06);
}

.doc-callout p:last-child {
  margin-bottom: 0;
}

code {
  padding: 2px 5px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface-raised);
  color: var(--accent-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.support-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 30px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.support-card h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
    gap: 58px;
  }

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

  .dashboard {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .process-grid,
  .feature-grid,
  .safety-grid,
  .detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tutorial-step {
    grid-template-columns: 50px 1fr;
  }

  .tutorial-step .ui-panel {
    grid-column: 2;
  }
}

@media (max-width: 720px) {
  .container,
  .container-narrow {
    width: min(100% - 36px, var(--container));
  }

  .site-nav .container {
    min-height: 64px;
    gap: 12px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .hero {
    padding: 68px 0 64px;
  }

  .section {
    padding: 78px 0;
  }

  .section-compact {
    padding: 60px 0;
  }

  .trust-grid,
  .pricing-grid,
  .tutorial-intro,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .trust-item:first-child {
    border-top: 0;
  }

  .file-table th:nth-child(2),
  .file-table td:nth-child(2) {
    display: none;
  }

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

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

  .page-hero {
    padding-top: 60px;
  }

  .tutorial-intro h2 {
    margin-bottom: 12px;
  }

  .tutorial-video-section {
    padding-bottom: 60px;
  }

  .tutorial-video-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 42px;
  }

  .site-nav .button-small {
    min-width: 72px;
    padding: 8px 12px;
    font-size: 0;
  }

  .site-nav .button-small::after {
    font-size: 14px;
    content: "Install";
  }

  .site-nav .button-small.button-disabled::after {
    content: "Soon";
  }

  .hero-grid {
    gap: 48px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .process-grid,
  .feature-grid,
  .safety-grid,
  .detail-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-body,
  .process-card,
  .feature-card,
  .price-card-head,
  .price-card-body {
    padding: 22px;
  }

  .recovery-file {
    padding: 17px;
  }

  .file-top {
    align-items: stretch;
    flex-direction: column;
  }

  .verified-stamp {
    align-self: flex-start;
  }

  .boundary {
    padding: 28px;
  }

  .tutorial-step {
    grid-template-columns: 1fr;
    padding: 23px;
  }

  .tutorial-step .ui-panel {
    grid-column: 1;
  }

  .ui-field-grid {
    grid-template-columns: 1fr;
  }

  .ui-field.full {
    grid-column: auto;
  }

  .ui-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .term-table,
  .term-table tbody,
  .term-table tr,
  .term-table td {
    display: block;
    width: 100%;
  }

  .term-table thead {
    display: none;
  }

  .term-table tr {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .term-table td {
    padding: 4px 16px;
    border: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
