:root {
  color-scheme: light;
  --ink: #14171a;
  --ink-soft: #303943;
  --muted: #64707d;
  --surface: #ffffff;
  --canvas: #f5f7f9;
  --line: #d9e0e7;
  --line-strong: #b8c4cf;
  --blue: #245cbd;
  --green: #23745a;
  --amber: #9a6a1e;
  --red: #b33a32;
  --shadow: 0 18px 44px rgba(20, 23, 26, 0.09);
  --shadow-soft: 0 12px 28px rgba(20, 23, 26, 0.07);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--canvas);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 224, 231, 0.82);
  background: rgba(245, 247, 249, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100vw - 32px));
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a,
.button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.button {
  border-color: var(--line);
  background: var(--surface);
}

.button.primary {
  border-color: #11161c;
  background: #11161c;
  color: #fff;
}

.button[aria-disabled="true"],
.button-disabled,
button:disabled {
  cursor: not-allowed;
  border-color: #dededb;
  color: #777d84;
  background: #eeeeec;
  box-shadow: none;
}

.page {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 150px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 42px;
  align-items: center;
  padding: 54px 0;
}

.hero h1,
.page-title h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.page-title p {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

.product-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
}

.proof-column {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
}

.proof-column.cleaned {
  background: #fff;
}

.proof-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-column p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.proof-arrow {
  align-self: center;
  color: var(--muted);
  font-weight: 800;
}

.proof-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 16px;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.trust-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 720;
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e35e57;
}

.dot:nth-child(2) {
  background: #e8b44d;
}

.dot:nth-child(3) {
  background: #55b86f;
}

.mock-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.menu-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfc;
  font-size: 13px;
  font-weight: 760;
}

.bars {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: end;
  gap: 3px;
  width: 24px;
  height: 22px;
}

.bars span {
  width: 4px;
  border-radius: 999px;
}

.bars span:nth-child(1) { height: 12px; background: var(--blue); }
.bars span:nth-child(2) { height: 20px; background: #ef7344; }
.bars span:nth-child(3) { height: 15px; background: #71808e; }

.transcript {
  min-height: 176px;
  display: grid;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.transcript .line {
  height: 10px;
  border-radius: 999px;
  background: #dfe6ed;
}

.transcript .line:nth-child(2) { width: 92%; }
.transcript .line:nth-child(3) { width: 78%; }
.transcript .line:nth-child(4) { width: 84%; }

.mode-row,
.tier-row,
.feature-grid,
.card-grid,
.account-grid {
  display: grid;
  gap: 14px;
}

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

.mode,
.card,
.tier,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.mode,
.card,
.tier,
.panel {
  padding: 18px;
}

.mode strong,
.card strong,
.tier strong {
  display: block;
  margin-bottom: 6px;
}

.mode p,
.card p,
.tier p,
.panel p,
.security-table td,
.pricing-table td {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.section h2,
.page-title h1 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-lead {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.tier-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.tier .price {
  margin: 8px 0;
  font-size: 28px;
  font-weight: 850;
}

.tier.highlight {
  border-color: rgba(36, 92, 189, 0.26);
  box-shadow: var(--shadow-soft);
}

.tier ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.tier li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.tier li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.tier li.locked::before {
  content: "-";
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.badge.available {
  border-color: rgba(35, 116, 90, 0.35);
  color: var(--green);
  background: rgba(35, 116, 90, 0.08);
}

.badge.soon {
  border-color: rgba(154, 106, 30, 0.35);
  color: var(--amber);
  background: rgba(154, 106, 30, 0.08);
}

.billing-note {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(154, 106, 30, 0.24);
  border-radius: 8px;
  background: rgba(154, 106, 30, 0.07);
}

.billing-note strong {
  color: var(--ink);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

th,
td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink-soft);
  font-size: 13px;
}

tr:last-child td {
  border-bottom: 0;
}

.page-title {
  padding: 56px 0 38px;
}

.site-footer {
  margin-top: 64px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(1120px, calc(100vw - 32px));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 auto;
  padding: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

button {
  font: inherit;
}

.status-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 840px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .hero,
  .hero-proof,
  .feature-grid,
  .card-grid,
  .tier-row,
  .mode-row,
  .trust-strip,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .proof-arrow {
    display: none;
  }
}
