/* Working Copy WP — site styles */
:root {
  --ink: #0f172a;
  --ink-soft: #475569;
  --ink-faint: #94a3b8;
  --line: #e2e8f0;
  --bg-soft: #f8fafc;
  --brand: #0f3460;
  --brand-bright: #1d4ed8;
  --accent: #d97706;
  --good: #15803d;
  --radius: 10px;
  --max: 1080px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: #fff;
}
a { color: var(--brand-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
header { border-bottom: 1px solid var(--line); background: #fff; position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 18px; color: var(--ink); letter-spacing: -0.3px; }
.logo span { color: var(--brand-bright); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.btn {
  display: inline-block; background: var(--brand-bright); color: #fff !important;
  padding: 10px 22px; border-radius: 8px; font-weight: 700; font-size: 14px;
  border: none; cursor: pointer;
}
.btn:hover { background: #1e40af; text-decoration: none !important; }
.btn.ghost { background: #fff; color: var(--brand-bright) !important; border: 1.5px solid var(--brand-bright); }
.btn.ghost:hover { background: #eff6ff; }
.btn.big { padding: 14px 32px; font-size: 16px; }

/* Hero */
.hero { padding: 88px 0 72px; text-align: center; }
.hero .kicker { color: var(--brand-bright); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; }
.hero h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.12; letter-spacing: -1px; margin: 14px auto 18px; max-width: 780px; }
.hero p.lead { font-size: 19px; color: var(--ink-soft); max-width: 640px; margin: 0 auto 32px; }
.hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .sub { margin-top: 14px; font-size: 13px; color: var(--ink-faint); }

/* Mock diff visual */
.mock { max-width: 860px; margin: 56px auto 0; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 20px 60px rgba(15,23,42,.10); text-align: left; }
.mock-bar { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 10px 16px; font-size: 12px; color: var(--ink-faint); display: flex; gap: 6px; }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); display: inline-block; }
.mock-cols { display: grid; grid-template-columns: 1fr 1fr; }
.mock-col { padding: 18px; font-size: 13px; }
.mock-col:first-child { border-right: 1px solid var(--line); }
.mock-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 12px; }
.mock-col.mine h4 { color: var(--brand-bright); }
.mock-col.live h4 { color: var(--accent); }
.blk { border: 1.5px dashed transparent; border-radius: 6px; padding: 10px 12px; margin-bottom: 10px; color: var(--ink-soft); background: var(--bg-soft); }
.blk.conflict { border-color: #f59e0b; background: #fffbeb; position: relative; }
.blk .tag { position: absolute; top: -9px; right: 8px; background: #fde68a; color: #92400e; font-size: 9px; font-weight: 800; text-transform: uppercase; padding: 1px 7px; border-radius: 3px; letter-spacing: .4px; }
.blk.chosen { border: 1.5px solid var(--good); background: #f0fdf4; }
.blk .chk { color: var(--good); font-weight: 800; margin-right: 4px; }
.blk.dim { opacity: .45; }

/* Sections */
section.band { padding: 72px 0; }
section.band.alt { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band h2 { font-size: 32px; letter-spacing: -0.6px; text-align: center; margin-bottom: 10px; }
.band .band-sub { text-align: center; color: var(--ink-soft); max-width: 620px; margin: 0 auto 48px; }
.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card .ico { font-size: 26px; margin-bottom: 12px; }
.card h3 { font-size: 17px; margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--ink-soft); }

/* Steps */
.steps { counter-reset: step; max-width: 720px; margin: 0 auto; }
.step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:last-child { border-bottom: none; }
.step::before {
  counter-increment: step; content: counter(step);
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand-bright); color: #fff; font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { font-size: 14px; color: var(--ink-soft); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 920px; margin: 0 auto; }
.plan { background: #fff; border: 1.5px solid var(--line); border-radius: 14px; padding: 32px 28px; display: flex; flex-direction: column; }
.plan.featured { border-color: var(--brand-bright); box-shadow: 0 12px 40px rgba(29,78,216,.12); position: relative; }
.plan.featured .flag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand-bright); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .6px; padding: 3px 14px; border-radius: 20px; }
.plan h3 { font-size: 18px; }
.plan .price { font-size: 40px; font-weight: 800; letter-spacing: -1px; margin: 12px 0 2px; }
.plan .price small { font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.plan .per { font-size: 13px; color: var(--ink-faint); margin-bottom: 20px; }
.plan ul { list-style: none; margin-bottom: 26px; flex-grow: 1; }
.plan li { font-size: 14px; color: var(--ink-soft); padding: 7px 0; border-bottom: 1px solid var(--bg-soft); }
.plan li::before { content: "✓  "; color: var(--good); font-weight: 800; }
.plan .btn { text-align: center; }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { font-weight: 700; font-size: 15px; cursor: pointer; }
.faq details p { margin-top: 10px; font-size: 14px; color: var(--ink-soft); }

/* Success page */
.license-box { max-width: 560px; margin: 40px auto; background: var(--bg-soft); border: 1.5px solid var(--line); border-radius: 12px; padding: 32px; text-align: center; }
.license-key { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 20px; font-weight: 700; background: #fff; border: 1.5px dashed var(--brand-bright); border-radius: 8px; padding: 16px; margin: 18px 0; letter-spacing: 1px; word-break: break-all; }
.copy-btn { font-size: 13px; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 40px; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--ink-faint); }
.foot a { color: var(--ink-soft); margin-left: 18px; }

@media (max-width: 720px) {
  .mock-cols { grid-template-columns: 1fr; }
  .mock-col:first-child { border-right: none; border-bottom: 1px solid var(--line); }
  .nav-links { gap: 16px; }
  .nav-links a.hide-sm { display: none; }
}
