/* PlatenFlow attack-page shared stylesheet.
   Used by /one-price and /vs-* landing pages.
   Brand color: #0066cc. Matches platenflow.com chrome. */

:root {
  --brand: #0066cc;
  --brand-dark: #0052a3;
  --brand-soft: #e8f1fb;
  --ink: #0b1220;
  --ink-2: #2a3344;
  --ink-3: #5a6478;
  --ink-4: #8a92a3;
  --line: #e4e8ee;
  --line-2: #eef1f5;
  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #fafbfd;
  --good: #178a4d;
  --bad: #c0392b;
  --warn: #b87b00;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
.mono { font-family: 'JetBrains Mono', 'SF Mono', Menlo, monospace; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---------- Top nav ---------- */
.nav {
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--brand);
  border-radius: 6px;
  display: grid; place-items: center;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a { color: inherit; text-decoration: none; }
.nav-links a:hover { color: var(--brand); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-link {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  text-decoration: none;
}
.nav-link:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.nav-cta:hover { background: var(--brand-dark); text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--bg);
  padding: 72px 28px 56px;
  border-bottom: 1px solid var(--line);
}
.hero-inner { max-width: 1180px; margin: 0 auto; }
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.headline {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  max-width: 20ch;
  color: var(--ink);
}
.headline .underline { color: var(--brand); }
.headline .strike { color: var(--ink-3); text-decoration: line-through; text-decoration-thickness: 3px; text-decoration-color: var(--brand); }
.sub {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 13px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s ease;
}
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-secondary {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
}
.btn-secondary:hover { border-color: var(--ink-3); text-decoration: none; }
.hero-tags {
  display: flex;
  gap: 18px;
  color: var(--ink-3);
  font-size: 13px;
  flex-wrap: wrap;
}
.hero-tags span::before {
  content: "✓";
  color: var(--brand);
  margin-right: 6px;
  font-weight: 600;
}

/* ---------- Section base ---------- */
section { padding: 72px 28px; }
.container { max-width: 1180px; margin: 0 auto; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 16px;
  max-width: 22ch;
  color: var(--ink);
}
.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 64ch;
  margin: 0 0 44px;
  line-height: 1.55;
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 28px;
}
.stat-strip-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat .stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat .stat-num .stat-suffix {
  font-size: 16px;
  color: var(--ink-3);
  font-weight: 500;
  margin-left: 2px;
}
.stat .stat-label {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}

/* ---------- Comparison table ---------- */
.compare-wrap { background: var(--bg); }
.compare-table {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
table.compare th,
table.compare td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.compare tr:last-child td { border-bottom: none; }
table.compare thead th {
  background: var(--bg-2);
  color: var(--ink-3);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px 14px;
}
table.compare th.col-product {
  color: var(--ink);
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
table.compare th.col-product .price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-top: 6px;
  letter-spacing: -0.01em;
}
table.compare th.col-product .price-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}
table.compare th.col-product.featured {
  background: var(--brand-soft);
  color: var(--brand);
  position: relative;
}
table.compare th.col-product.featured .price { color: var(--brand); }
table.compare th.col-product.featured .price-note { color: var(--brand-dark); }
table.compare td.featured { background: var(--brand-soft); }
table.compare td.label {
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-3);
  border-right: 1px solid var(--line);
  width: 36%;
}
table.compare td.mono { font-family: 'JetBrains Mono', monospace; }
table.compare td .muted { color: var(--ink-3); font-size: 13px; display: block; margin-top: 2px; font-weight: 400; }

.check, .x, .partial {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 8px;
  vertical-align: -3px;
}
.check { background: var(--good); }
.x { background: var(--bad); }
.partial { background: var(--warn); }

.table-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.55;
}

table.compare .total-row td {
  background: var(--bg-2);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  border-top: 2px solid var(--line) !important;
}
table.compare .total-row td.featured {
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-weight: 800;
}
table.compare .total-row td.label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- "What you don't get" ---------- */
.miss-wrap {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.miss-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.miss-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
}
.miss-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--brand);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.miss-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.miss-body {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.miss-body em {
  color: var(--ink);
  font-style: normal;
  font-weight: 600;
}

/* ---------- Math callout ---------- */
.math {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}
.math-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.math-body { color: var(--ink-2); font-size: 15px; margin: 0; }
.math-stack {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}
.math-stack .row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  color: var(--ink-2);
}
.math-stack .row.total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.math-stack .row.diff {
  color: var(--good);
  font-weight: 600;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--bg);
  padding: 88px 28px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.cta p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 auto 32px;
}
.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.cta-foot {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-3);
}

/* ---------- Footer ---------- */
footer {
  background: var(--bg-2);
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 32px 28px;
  font-size: 13px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stat-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .miss-grid { grid-template-columns: 1fr; }
  .math { grid-template-columns: 1fr; }
  section { padding: 56px 22px; }
  .hero { padding: 56px 22px 40px; }
  table.compare { font-size: 13px; }
  table.compare th, table.compare td { padding: 12px 14px; }
  table.compare th.col-product .price { font-size: 18px; }
}
@media (max-width: 640px) {
  .compare-table { overflow-x: auto; }
  table.compare { min-width: 560px; }
}

/* ---------- FAQ section ---------- */
.faq-wrap { background: var(--bg); border-top: 1px solid var(--line); }
.faq-list { display: grid; gap: 16px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 28px;
}
.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.faq-answer {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Cross-link strip ---------- */
.crosslinks {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 28px;
}
.crosslinks-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.crosslinks h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.crosslinks-sub {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 24px;
}
.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.crosslinks-grid a {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: border-color 0.15s, background 0.15s;
}
.crosslinks-grid a:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  text-decoration: none;
}
.crosslinks-grid a strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.crosslinks-grid a span {
  color: var(--ink-3);
  font-size: 12px;
}
@media (max-width: 900px) {
  .crosslinks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .crosslinks-grid { grid-template-columns: 1fr; }
}
