/* Global reset-ish */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-color: #000000;
  --panel-color: #0a0a0a;
  --accent: #00ff88; /* matrix neon but a touch warmer than pure #00ff00 */
  --text-primary: #eaeaea;
  --text-dim: #7a7a7a;
  --border-color: rgba(0,255,136,0.3);
  --radius-lg: 1rem;
  --radius-sm: .5rem;
  --shadow-card: 0 20px 40px rgba(0, 255, 136, 0.07);
  --max-width: 1200px;
  --font-main: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4rem;
}

/* Layout helpers */
.wrapper {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* NAVBAR */
.site-header {
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(circle at 20% 20%, rgba(0,255,136,0.08) 0%, rgba(0,0,0,0) 70%);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text-primary);
  font-size: .9rem;
  text-decoration: none;
  transition: color .15s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO SECTION */
.hero {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background: radial-gradient(circle at 0% 0%, rgba(0,255,136,0.08) 0%, rgba(0,0,0,0) 70%);
}

.hero h1 {
  font-size: clamp(1.9rem, 2.2vw, 2.4rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  max-width: 800px;
  letter-spacing: -0.04em;
}

.hero p.subhead {
  margin-top: 1rem;
  color: var(--text-dim);
  max-width: 720px;
  font-size: .95rem;
  line-height: 1.5;
}

/* SERVICES GRID */
.section-header {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px,100%), 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.service-card {
  background-color: var(--panel-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow-card);
  position: relative;
}

.service-card h2 {
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  letter-spacing: -0.03em;
}

.service-card ul {
  list-style: none;
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.service-card ul li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: .4rem;
}

.service-card ul li::before {
  content: "â–¸";
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
}

/* CTA BUTTON */
.cta-wrap {
  margin-top: 2rem;
}

.button-accent {
  appearance: none;
  display: inline-block;
  border: 1px solid var(--accent);
  background: rgba(0,255,136,0.08);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.15), 0 0 30px rgba(0,255,136,0.3) inset;
  color: var(--accent);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  min-width: 200px;
  text-align: center;
  line-height: 1.2;
  transition: all .15s ease;
  cursor: pointer;
}

.button-accent:hover {
  background: rgba(0,255,136,0.12);
  box-shadow: 0 24px 50px rgba(0, 255, 136, 0.22), 0 0 40px rgba(0,255,136,0.4) inset;
  text-shadow: 0 0 8px rgba(0,255,136,0.6);
}

/* CONTACT FORM */
.form-section {
  padding-top: 4rem;
}

.form-card {
  background-color: var(--panel-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  max-width: 600px;
}

.form-card label {
  font-size: .8rem;
  color: var(--accent);
  display: block;
  margin-bottom: .4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.form-card input,
.form-card textarea {
  width: 100%;
  background-color: #000;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: .9rem;
  line-height: 1.4;
  padding: .75rem .75rem;
  outline: none;
  box-shadow: 0 0 20px rgba(0,255,136,0.07);
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  color: var(--text-dim);
  font-size: .7rem;
  margin-top: .5rem;
  line-height: 1.4;
}

/* SIMPLE PAGE WRAPPER (About, Terms, Privacy) */
.simple-page {
  padding-top: 4rem;
  max-width: 800px;
}

.simple-page h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.simple-page h2 {
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: .75rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.simple-page p,
.simple-page li {
  font-size: .85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.simple-page ul {
  padding-left: 1rem;
}

.simple-page ul li {
  list-style: none;
  position: relative;
  padding-left: 1.1rem;
}

.simple-page ul li::before {
  content: "â–¸";
  color: var(--accent);
  position: absolute;
  left: 0;
  top: 0;
}

/* FOOTER */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: radial-gradient(circle at 80% 20%, rgba(0,255,136,0.05) 0%, rgba(0,0,0,0) 70%);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr));
  gap: 2rem;
}

.footer-block h3 {
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: .75rem;
  letter-spacing: -0.03em;
}

.footer-block p,
.footer-block a {
  color: var(--text-dim);
  font-size: .75rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-block a:hover {
  color: var(--accent);
}

/* micro footer bottom */
.footer-bottom {
  text-align: center;
  color: var(--text-dim);
  font-size: .7rem;
  margin-top: 2rem;
  line-height: 1.4;
}