/* WeHateAgencies.ai — landing page styles */
:root {
  --bg: #0b0d10;
  --bg-alt: #12151b;
  --card: #161a21;
  --text: #f2f4f7;
  --muted: #9aa3af;
  --accent: #ff4d2e;
  --accent-2: #ffb199;
  --border: #232936;
  --radius: 14px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.center { text-align: center; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11,13,16,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-weight: 800; font-size: 20px; color: var(--text); text-decoration: none; letter-spacing: -0.02em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  transition: transform .12s, box-shadow .12s, background .15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 24px rgba(255,77,46,.35);
}
.btn-primary:hover { background: #ff5f42; }
.btn-ghost { color: var(--text); border: 1px solid var(--border); background: transparent; }
.btn-ghost:hover { border-color: var(--muted); }
.btn-small { padding: 9px 18px; font-size: 14px; background: var(--accent); color: #fff !important; border-radius: 8px; }
.btn-big { padding: 18px 40px; font-size: 18px; }

/* HERO */
.hero {
  padding: 110px 0 90px;
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -50px, rgba(255,77,46,.14), transparent 70%);
}
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(255,77,46,.4); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 28px;
}
h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.06; letter-spacing: -0.03em; font-weight: 800; }
.accent { color: var(--accent); }
.subhead {
  max-width: 640px; margin: 26px auto 0; font-size: 19px; color: var(--muted);
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.trust-row {
  display: flex; gap: 32px; justify-content: center; margin-top: 52px;
  list-style: none; color: var(--muted); font-size: 14px; font-weight: 500; flex-wrap: wrap;
}

/* SECTIONS */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; margin-bottom: 20px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
}
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--accent-2); }
.card p { color: var(--muted); font-size: 15.5px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.step { position: relative; padding-top: 8px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* CTA */
.cta-section { background: radial-gradient(500px 240px at 50% 0%, rgba(255,77,46,.16), transparent 70%); }
.fineprint { margin-top: 20px; font-size: 14px; color: var(--muted); }
#pricing .subhead, .cta-section .subhead { margin-bottom: 34px; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer p { color: var(--muted); font-size: 14px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 820px) {
  .nav-links a:not(.btn) { display: none; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .hero { padding: 80px 0 64px; }
  .section { padding: 64px 0; }
  .trust-row { gap: 16px; }
}
