@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Press+Start+2P&display=swap');

:root {
  --bg: #fef3c7;
  --bg-alt: #ffedd5;
  --text: #111827;
  --muted: #4b5563;
  --accent: #ef4444;
  --accent-2: #2563eb;
  --card: #ffffff;
  --border: #111827;
  --shadow: 4px 4px 0 #111827;
  --grid: linear-gradient(transparent 23px, rgba(17, 24, 39, 0.08) 24px),
          linear-gradient(90deg, transparent 23px, rgba(17, 24, 39, 0.08) 24px);
  --radius: 6px;
  --transition: 220ms ease;
  --font-main: 'Space Grotesk', system-ui, sans-serif;
  --font-pixel: 'Press Start 2P', ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  background-image: var(--grid);
  background-size: 24px 24px;
}

img, svg {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  padding: 8px 12px;
  background: var(--accent);
  color: white;
  z-index: 50;
}

.skip-link:focus {
  left: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 241, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-2);
  color: #fff;
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-pixel);
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: var(--transition);
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
  font-family: var(--font-pixel);
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
  border: 2px solid #111827;
}

.btn.primary:hover {
  transform: translateY(-2px);
  background: #e58b13;
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  border-width: 2px;
  box-shadow: var(--shadow);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--accent-2);
  margin-bottom: 14px;
  font-family: var(--font-pixel);
}

h1 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
  font-family: var(--font-pixel);
}

.subhead {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.supporting {
  margin-top: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  border: 2px solid var(--border);
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.hero-card .stat {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.hero-card .stat:last-of-type {
  border-bottom: none;
}

.stat-value {
  font-weight: 700;
  font-size: 1.2rem;
}

.grid-line {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(17, 24, 39, 0.25);
  border-radius: var(--radius);
  transform: translate(10px, 10px);
}

.section-head {
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 8px;
  font-family: var(--font-pixel);
}

.services {
  padding: 70px 0;
  background: var(--bg-alt);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  min-height: 230px;
  box-shadow: none;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-family: var(--font-pixel);
}

.card ul {
  list-style: none;
  margin-top: 12px;
}

.card ul li {
  padding: 4px 0;
  color: var(--muted);
}

.guarantee {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.guarantee-block {
  margin-top: 28px;
  background: #111827;
  color: #f9fafb;
  border: 2px solid #111827;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
}

.guarantee-block h3 {
  font-family: var(--font-pixel);
  margin-bottom: 8px;
}

.guarantee-block .note {
  color: rgba(249, 250, 251, 0.7);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 12px;
}

.quiet {
  font-weight: 600;
}

.about {
  padding: 70px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: center;
}

.pill-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.pill-list li {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: 6px;
  padding: 10px 16px;
  font-weight: 500;
}

.contact {
  padding: 80px 0 90px;
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact-meta {
  margin-top: 20px;
  color: var(--muted);
}

.email-line {
  margin-top: 8px;
  font-weight: 600;
}

.footer {
  padding: 30px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-title {
  font-weight: 700;
  color: var(--text);
}

.easter-egg {
  position: fixed;
  bottom: 16px;
  right: 16px;
  padding: 10px 14px;
  background: #111827;
  color: #f9fafb;
  border-radius: 8px;
  opacity: 1;
  transition: var(--transition);
  font-family: var(--font-pixel);
  font-size: 0.7rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 70px;
  }
}
