* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0f172a;
  background: #0b1120;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-weight: 700;
  color: #e2e8f0;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #cbd5f5;
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1rem 3rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15, 23, 42, 0.8),
    rgba(15, 23, 42, 0.9)
  );
}

.hero-inner {
  position: relative;
  max-width: 800px;
  text-align: center;
  color: #f9fafb;
  z-index: 1;
}

.hero-logo {
  width: 8rem;
  height: 8rem;
  border-radius: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-subtext {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #eab308;
  color: #1f2937;
}

.btn-secondary {
  background: #1d4ed8;
  color: #e5e7eb;
}

.btn-outline {
  background: transparent;
  border-color: #64748b;
  color: #e2e8f0;
}

.btn.full {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
}

/* Sections */

.section {
  background: #020617;
  color: #e2e8f0;
}

.section-muted {
  background: #020617;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.section-inner.narrow {
  max-width: 720px;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-subtext {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 640px;
  color: #9ca3af;
}

/* Grids/cards */

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #020617;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  color: #9ca3af;
}

.card.center {
  text-align: center;
}

.logo-small {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 0.75rem;
  border-radius: 1rem;
}

/* Checklist */

.checklist {
  list-style: none;
  margin-top: 1.25rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e;
  font-weight: 700;
}

/* Business info */

.business-grid {
  margin-top: 1rem;
}

.label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.value a {
  color: #38bdf8;
}

.value a:hover {
  text-decoration: underline;
}

/* Footer */

.footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  color: #9ca3af;
  text-align: center;
  padding: 2rem 1rem 2.5rem;
}

.footer-small {
  font-size: 0.75rem;
  max-width: 700px;
  margin: 0.5rem auto 0;
}

/* Responsive */

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 4.5rem;
  }
}