/* Neighborhood Nerd Services — Brand Direction 01: Warm Local Tech Relief */
:root {
  --nerd-purple: #5E2A8E;
  --bright-violet: #7236AE;
  --signal-cyan: #1FA7C9;
  --sky-blue: #4A7DDB;
  --warm-cream: #FBF6EF;
  --sand-line: #EDE3D5;
  --muted-ink: #6E6577;
  --ink: #2A2433;
}

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

body {
  font-family: 'Hanken Grotesk', sans-serif;
  background: var(--warm-cream);
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.65;
}

h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; color: var(--nerd-purple); line-height: 1.2; }
h1 { font-size: 2.6rem; }
h2 { font-size: 1.9rem; margin-bottom: .75rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

a { color: var(--signal-cyan); }
img { max-width: 100%; }

.label {
  font-family: 'Space Mono', monospace;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--signal-cyan);
}

/* Header */
header {
  background: var(--warm-cream);
  border-bottom: 1px solid var(--sand-line);
  position: sticky; top: 0; z-index: 50;
}
.nav-wrap {
  max-width: 1080px; margin: 0 auto; padding: .8rem 1.25rem;
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo img { height: 64px; width: 64px; object-fit: contain; }
.logo span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--nerd-purple); font-size: 1.15rem; }
nav { display: flex; gap: 1.25rem; margin-left: auto; align-items: center; flex-wrap: wrap; }
nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .98rem; }
nav a:hover, nav a.active { color: var(--bright-violet); }

.btn {
  display: inline-block; background: var(--bright-violet); color: #fff !important;
  padding: .65rem 1.3rem; border-radius: 999px; text-decoration: none;
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; border: none;
  font-size: 1rem; cursor: pointer;
}
.btn:hover { background: var(--nerd-purple); }
.btn-outline {
  background: transparent; color: var(--bright-violet) !important;
  border: 2px solid var(--bright-violet);
}
.btn-outline:hover { background: var(--bright-violet); color: #fff !important; }

/* Hero */
.hero { text-align: center; padding: 4.5rem 1.25rem 3.5rem; }
.hero h1 { margin: .5rem 0 .75rem; }
.hero p.tagline { font-size: 1.3rem; color: var(--muted-ink); margin-bottom: 1.75rem; }

/* Synapse divider */
.synapse {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin: 2.5rem auto; max-width: 340px;
}
.synapse::before, .synapse::after { content: ""; flex: 1; height: 1px; background: var(--sand-line); }
.synapse .node { width: 8px; height: 8px; border-radius: 50%; margin: 0 10px; }
.synapse .node:nth-child(1) { background: var(--signal-cyan); }
.synapse .node:nth-child(2) { background: var(--sky-blue); }
.synapse .node:nth-child(3) { background: var(--bright-violet); }

/* Sections */
main { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem 3rem; }
section { margin-bottom: 3rem; }
.intro { max-width: 720px; margin: 0 auto; text-align: center; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--sand-line); border-radius: 14px;
  padding: 1.5rem; display: flex; flex-direction: column;
}
.card .price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--signal-cyan); font-size: 1.15rem; margin-bottom: .5rem; }
.card ul { padding-left: 1.2rem; margin: .5rem 0; color: var(--muted-ink); }
.card li { margin-bottom: .25rem; }
.card .note { font-size: .9rem; color: var(--muted-ink); font-style: italic; margin-top: .5rem; }
.card .cta { margin-top: auto; padding-top: 1rem; }

/* Testimonials */
blockquote {
  background: #fff; border-left: 4px solid var(--signal-cyan); border-radius: 0 14px 14px 0;
  padding: 1.25rem 1.5rem; margin-bottom: 1.25rem;
}
blockquote footer { font-family: 'Space Grotesk', sans-serif; font-weight: 600; color: var(--nerd-purple); margin-top: .5rem; }

/* Rates strip */
.rates { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.rates .card { flex: 1; min-width: 220px; text-align: center; }

/* Forms */
form { display: grid; gap: .9rem; max-width: 560px; }
input, textarea {
  font-family: 'Hanken Grotesk', sans-serif; font-size: 1rem;
  padding: .7rem .9rem; border: 1px solid var(--sand-line); border-radius: 10px;
  background: #fff; color: var(--ink); width: 100%;
}
input:focus, textarea:focus { outline: 2px solid var(--signal-cyan); border-color: transparent; }

/* Footer */
footer.site {
  background: var(--nerd-purple); color: #fff; margin-top: 2rem;
}
footer.site .foot-wrap {
  max-width: 1080px; margin: 0 auto; padding: 2.5rem 1.25rem;
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between;
}
footer.site h3 { color: #fff; }
footer.site a { color: #CDEBF4; }
footer.site .newsletter { max-width: 380px; }
footer.site input { border: none; }
footer.site .fineprint { font-size: .88rem; opacity: .85; margin-top: .5rem; }

@media (max-width: 640px) {
  h1 { font-size: 2rem; }
  .nav-wrap { gap: .8rem; }
  nav { gap: .9rem; }
}

/* Inline form confirmation messages (Web3Forms) */
.form-status { font-size: .92rem; margin: .1rem 0 0; }
.form-status.ok { color: #2E7D32; }
.form-status.err { color: #B0202F; }
footer.site .form-status.ok { color: #CDEBF4; }
footer.site .form-status.err { color: #FFD9D9; }
