/* mono — page-specific layer on top of assets/100k31d.css */

:root {
  --accent: #454e57;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #aab5bd;
  }
}

/* ---------- popup mockup ----------
   Colours are mono's own popup tokens (see popup.css), not the site's —
   the point of the mockup is to show the real product, not a themed
   reskin of it. It stays dark regardless of the page theme, the same way
   the actual popup does when dark mode is on. */
.mono-preview {
  width: 100%;
  max-width: 360px;
  padding: 22px;
  border: 1px solid #2b2b2b;
  border-radius: var(--r-lg);
  background: #101010;
  color: #f2f2f2;
  box-shadow: var(--shadow);
}

/* The mockup is mono's own popup-dark (#101010), which sits almost on top
   of --paper's dark value (#171915) — on its own the card would nearly
   vanish into the page. A faint rim light stands in for the shadow that
   would normally separate a raised surface from the page behind it. */
@media (prefers-color-scheme: dark) {
  .mono-preview {
    border-color: #3a3a3a;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 30px 70px rgba(0, 0, 0, 0.5);
  }
}

.mono-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mono-brand {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.mono-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px 5px 8px;
  border-radius: var(--r-pill);
  background: #202020;
  color: #a1a1a1;
  font-size: 11px;
  font-weight: 600;
}

.mono-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eee;
}

.mono-card {
  padding: 16px;
  border-radius: 16px;
  background: #181818;
}

.mono-card + .mono-card {
  margin-top: 10px;
}

.mono-label {
  margin: 0 0 10px;
  color: #a1a1a1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mono-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.mono-row strong {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.mono-row span {
  color: #a1a1a1;
  font-size: 12px;
  font-weight: 600;
}

.mono-switch {
  position: relative;
  width: 100%;
  height: 46px;
  border-radius: var(--r-pill);
  background: #f2f2f2;
}

.mono-switch i {
  position: absolute;
  top: 4px;
  right: 4px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #101010;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2), 0 4px 10px -4px rgba(0, 0, 0, 0.28);
  font-size: 15px;
}

.mono-follow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: #202020;
}

.mono-check {
  display: grid;
  flex: none;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: #f2f2f2;
  color: #101010;
  font-size: 11px;
}

.mono-follow strong {
  display: block;
  font-size: 12.5px;
  font-weight: 650;
}

.mono-follow small {
  display: block;
  margin-top: 1px;
  color: #a1a1a1;
  font-size: 11px;
}

.mono-gray {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mono-dots {
  display: flex;
  flex: none;
  gap: 4px;
}

.mono-dots i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mono-dots i:nth-child(1) { background: #f2f2f2; }
.mono-dots i:nth-child(2) { background: #a1a1a1; }
.mono-dots i:nth-child(3) { background: #5a5a5a; }
.mono-dots i:nth-child(4) { background: #1c1c1c; border: 1px solid #383838; }

.mono-gray-copy {
  flex: 1;
}

.mono-gray-copy strong {
  display: block;
  font-size: 13px;
  font-weight: 650;
}

.mono-gray-copy small {
  display: block;
  margin-top: 1px;
  color: #a1a1a1;
  font-size: 11px;
}

.mono-toggle {
  flex: none;
  width: 40px;
  height: 24px;
  border-radius: var(--r-pill);
  background: #f2f2f2;
}

.mono-toggle i {
  display: block;
  width: 18px;
  height: 18px;
  margin: 3px 3px 3px auto;
  border-radius: 50%;
  background: #101010;
}

/* ---------- pricing ---------- */

.plan {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: color-mix(in srgb, var(--paper-raised) 62%, transparent);
}

.plan.highlight {
  border-color: var(--accent-line);
  background: var(--paper-raised);
  box-shadow: var(--shadow);
}

.plan-price {
  margin: 16px 0 8px;
  font-size: 40px;
  font-weight: 650;
  letter-spacing: -0.05em;
}

.plan-price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 580;
  letter-spacing: 0;
}

.plan ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.plan li {
  margin: 10px 0;
  color: var(--muted);
  font-size: 15px;
}

.plan li::before {
  margin-right: 10px;
  color: var(--accent);
  content: "✓";
  font-weight: 700;
}

.plan .actions {
  margin-top: 20px;
}

/* ---------- privacy callout ---------- */

.callout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: end;
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--r-lg);
  background: var(--slab);
  color: #f4f2ea;
}

.callout .eyebrow {
  color: color-mix(in srgb, var(--accent) 66%, #f4f2ea);
}

.callout h2 {
  margin-bottom: 14px;
  font-size: var(--fs-subtitle);
  letter-spacing: -0.045em;
}

.callout p {
  max-width: 620px;
  margin: 0;
  color: rgba(244, 242, 234, 0.66);
  line-height: 1.65;
}

.callout-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  font-size: 15px;
  font-weight: 620;
}

/* A product that isn't published yet gets a static CTA rather than a
   button that behaves like a live link. */
.btn.coming-soon {
  cursor: default;
  user-select: none;
}

.btn.coming-soon:hover {
  filter: none;
  transform: none;
}

@media (max-width: 860px) {
  .callout {
    grid-template-columns: minmax(0, 1fr);
  }

  .callout-links {
    justify-items: start;
  }
}

@media (max-width: 620px) {
  .mono-preview {
    max-width: none;
  }
}
