/* Shared styles for SEO landing pages — keeps them visually consistent
   with index.html without bundling its 1600 lines of animations. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0f;
  --surface:   #141418;
  --surface2:  #1c1c22;
  --border:    #2a2a33;
  --text:      #e8e8ec;
  --muted:     #7a7a8c;
  --accent:    #e05c3a;
  --green:     #3adb76;
  --mono:      "JetBrains Mono", "Fira Code", "Courier New", monospace;
  --sans:      "Onest", "Golos Text", system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
em { color: var(--accent); font-style: normal; }

.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: var(--mono); }
.muted { color: var(--muted); }

nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
nav .container { display: flex; align-items: center; justify-content: space-between; }
nav .logo { font-family: var(--mono); font-weight: 700; color: var(--text); }
nav .logo::before { content: "● "; color: var(--accent); }
nav .nav-cta {
  background: var(--accent); color: #fff; padding: 8px 16px;
  border-radius: 6px; font-size: 14px; font-weight: 600;
}
nav .nav-cta:hover { background: #f07c5a; text-decoration: none; }

header.hero { padding: 80px 0 40px; }
header.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
header.hero .lead {
  font-size: 20px;
  color: var(--muted);
  max-width: 640px;
}

main { padding: 40px 0 80px; }
main section { margin-bottom: 64px; }
main h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
main h3 {
  font-size: 20px;
  margin: 32px 0 12px;
  color: var(--text);
}
main p { margin-bottom: 16px; color: var(--text); }
main ul { padding-left: 24px; margin-bottom: 16px; }
main li { margin-bottom: 8px; color: var(--text); }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 0;
}
.btn:hover { background: #f07c5a; text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--muted); background: var(--surface); }

.callout {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 4px;
}

table.compare {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--surface);
  border-radius: 8px;
  overflow: hidden;
}
table.compare th, table.compare td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
table.compare th {
  background: var(--surface2);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
table.compare td:first-child { font-weight: 500; }
table.compare .yes { color: var(--green); }
table.compare .no { color: var(--accent); }

footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
footer a { color: var(--muted); }
footer a:hover { color: var(--text); }

.cta-block {
  background: linear-gradient(135deg, #1a1a22, #0d0d0f);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  margin: 48px 0;
  text-align: center;
}
.cta-block h2 { margin-bottom: 12px; }
.cta-block p { color: var(--muted); margin-bottom: 24px; }
