/* LinkedIn Cleanup - landing page tokens mirror app/src/index.css */
:root {
  --bg: #f6f7f9;
  --panel: #ffffff;
  --panel-soft: #fafbfc;
  --border: #e3e6eb;
  --border-strong: #cdd2d8;
  --text: #14181f;
  --text-soft: #2c333d;
  --muted: #5b6470;
  --muted-soft: #747e8a;

  --accent: #0a66c2;
  --accent-hover: #084a8e;
  --accent-soft: #e7f0fa;

  --remove: #b42318;
  --keep: #027a48;
  --uncertain: #b54708;
  --remove-bg: #fef3f2;
  --remove-border: #fecdca;
  --keep-bg: #ecfdf3;
  --keep-border: #a6f4c5;
  --uncertain-bg: #fffaeb;
  --uncertain-border: #fec84b;

  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.08);
  --shadow-lg: 0 8px 28px rgba(15,23,42,0.12);

  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 0.92em; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,247,249,0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 650;
  letter-spacing: -0.005em;
}
.brand:hover { text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: var(--radius-sm); box-shadow: var(--shadow-xs); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 550;
}
.nav-links a:hover { color: var(--text); text-decoration: none; }
.nav-links .btn-pill {
  background: var(--accent);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
}
.nav-links .btn-pill:hover { background: var(--accent-hover); color: white; }

.hero {
  padding: 70px 0 52px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  gap: 46px;
  align-items: center;
}
.eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 -20px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 50px;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-weight: 750;
}
.hero .lede {
  font-size: 18px;
  color: var(--text-soft);
  margin: 0 0 28px;
  max-width: 35em;
}
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: var(--radius-md);
  font-weight: 650;
  font-size: 15px;
  border: 1px solid var(--border-strong);
  background: white;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-xs);
  transition: background 140ms, border-color 140ms, transform 140ms, box-shadow 140ms;
}
.btn:hover { background: #f3f5f8; border-color: var(--muted-soft); text-decoration: none; }
.btn:focus-visible, .nav a:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: white; }
.btn-secondary { width: 100%; margin-top: 10px; }
.btn .price { opacity: 0.86; font-weight: 550; margin-left: 4px; }
.cta-microcopy {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.cta-microcopy + .cta-microcopy { margin-top: 4px; }
.cta-microcopy strong { color: var(--text-soft); font-weight: 650; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}
.trust-strip div {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-xs);
}
.trust-strip strong, .proof-grid strong {
  display: block;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}
.trust-strip span, .proof-grid span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.4;
  margin-top: 2px;
}

.hero-art, .safety-shot, .run-shot {
  background: #eef3f8;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px;
  box-shadow: var(--shadow-lg);
}
.hero-art img, .safety-shot img, .run-shot img {
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 8px 24px rgba(15,23,42,0.10);
}

section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
section h2, .founder h2 {
  font-size: 30px;
  line-height: 1.18;
  margin: 0 0 10px;
  font-weight: 750;
  letter-spacing: -0.015em;
}
section .section-lede {
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 42em;
  font-size: 16px;
}

.why {
  background: var(--panel);
  padding: 58px 0;
}
.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 42px;
  align-items: center;
}
.why-copy .section-lede {
  margin-bottom: 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.proof-grid div {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  padding: 16px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-xs);
}
.step-num {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 14px;
}
.step h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.step p { margin: 0; color: var(--text-soft); font-size: 15px; }
.step p + p { margin-top: 8px; color: var(--muted); font-size: 13.5px; }

.safety {
  background: linear-gradient(180deg, var(--accent-soft) 0%, #ffffff 100%);
}
.safety-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
}
.safety-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
}
.safety-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.safety-list .check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--keep-bg);
  border: 1px solid var(--keep-border);
  color: var(--keep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 750;
  margin-top: 1px;
}
.safety-list .head {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.safety-list .body {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.safety-features {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.safety-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(360px, 1.22fr);
  gap: 24px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.safety-feature h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.safety-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.safety-feature img {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-md);
}

.run-preview { background: var(--panel); }
.run-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(520px, 1.28fr);
  gap: 42px;
  align-items: center;
}

.pricing { background: var(--bg); }
.pricing-lede {
  font-size: 18px;
  line-height: 1.5;
}
.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: 44px;
  align-items: center;
}
.price-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
}
.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.price-amount {
  font-size: 56px;
  font-weight: 750;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.price-tag .period { color: var(--muted); font-size: 15px; }
.price-card .one-time {
  display: inline-block;
  background: var(--keep-bg);
  color: var(--keep);
  border: 1px solid var(--keep-border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 18px;
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.price-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.price-list li:last-child { border-bottom: none; }
.price-list .check {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--keep-bg);
  border: 1px solid var(--keep-border);
  color: var(--keep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 750;
}
.price-card .btn { width: 100%; }
.price-card .reassure {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 12px 0 0;
}

.founder {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-xs);
}
.founder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.founder p { margin: 0 0 10px; color: var(--text-soft); }
.founder .signature { color: var(--muted); font-size: 14px; }
.founder .links { margin-top: 10px; display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 0;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 18px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--muted);
  font-weight: 400;
  font-size: 22px;
  transition: transform 140ms;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 18px 16px;
  color: var(--text-soft);
  font-size: 15px;
}
.faq-item .faq-body p { margin: 0 0 8px; }
.faq-item .faq-body p:last-child { margin-bottom: 0; }
.faq-item ol { margin: 8px 0 10px; padding-left: 22px; }

.footer {
  border-top: 1px solid var(--border);
  background: var(--panel);
  padding: 28px 0;
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }

/* Legal page */
.legal {
  padding: 56px 24px 80px;
  max-width: 720px;
  margin: 0 auto;
}
.legal h1 { font-size: 32px; letter-spacing: -0.02em; margin: 0 0 4px; }
.legal .updated { color: var(--muted); font-size: 13px; margin: 0 0 36px; }
.legal h2 {
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 36px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal h3 { font-size: 16px; margin: 22px 0 6px; font-weight: 650; }
.legal p, .legal li { color: var(--text-soft); font-size: 15px; line-height: 1.6; }
.legal ul { padding-left: 22px; }
.legal .toc {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 32px;
  font-size: 14px;
}
.legal .toc strong { color: var(--text); margin-right: 10px; }
.legal .placeholder {
  background: var(--uncertain-bg);
  border: 1px solid var(--uncertain-border);
  color: #7a4f01;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 13px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

@media (max-width: 940px) {
  .hero-grid,
  .why-inner,
  .safety-feature,
  .run-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps { grid-template-columns: 1fr; }
  .hero-art, .safety-shot, .run-shot { max-width: 680px; }
  .safety-feature img { justify-self: start; max-width: 100%; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .nav-links a:not(.btn-pill) { display: none; }
  .hero { padding: 46px 0 40px; }
  .hero h1 { font-size: 38px; }
  .hero .lede { font-size: 16px; }
  .trust-strip, .proof-grid, .steps, .safety-list { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
  section h2, .founder h2 { font-size: 25px; }
  .founder { grid-template-columns: 1fr; gap: 14px; }
  .price-amount { font-size: 48px; }
}

@media (max-width: 460px) {
  .brand span { font-size: 14px; }
  .nav-links .btn-pill { padding: 6px 12px; }
  .hero h1 { font-size: 34px; }
  .cta-row .btn { width: 100%; }
  .hero-art, .safety-shot, .run-shot { padding: 8px; border-radius: var(--radius-md); }
  .price-card, .founder { padding: 22px 18px; }
}
