body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

body, h1, h2, h3, h4, h5, h6, button, input, .subtitle, .features-list, .quote {
  font-family: 'Montserrat', Arial, sans-serif;
}

.site-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px 0 0 32px;
  z-index: 10;
}
.site-logo {
  height: 54px;
  width: auto;
  display: block;
}
.hero-section {
  background: #181818;
  padding: 72px 24px 32px 24px; /* add top padding to account for header */
  text-align: center;
}
.hero-section h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 24px;
}
.cta-btn {
  background: #ffe066;
  color: #181818;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #ffd700;
}

.content-section {
  background: transparent;
  color: #fff;
  padding: 40px 24px 32px 24px;
  max-width: 800px;
  margin: -32px auto 0 auto;
  border-radius: 12px;
  box-shadow: none;
}
.content-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #fff;
}
.features-list {
  margin-top: 16px;
  margin-bottom: 0;
  padding-left: 20px;
}
.features-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #fff;
  position: relative;
}
.features-list li::marker {
  color: #ffe066;
  font-size: 1.2em;
}
.quote {
  font-style: italic;
  color: #ffe066;
  margin: 18px 0 0 0;
  font-size: 1rem;
  font-weight: 600;
}

footer {
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 32px 0 24px 0;
  margin-top: 40px;
}
.footer-content {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-btn {
  background: #ffe066;
  color: #181818;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 10px 28px;
  font-size: 1rem;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.footer-btn:hover {
  background: #ffd700;
}

.sub-headline {
  font-size: 1.35rem;
  color: #cfd8dc;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 24px;
}

.geo-highlight {
  color: #00eaff;
  font-weight: 600;
}

/* Subtle techy grid background overlay */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px),
              repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px);
  z-index: 0;
}

header, main {
  position: relative;
  z-index: 1;
}

.geo-badge {
  display: inline-block;
  margin-top: 0;
  margin-left: 0;
  margin-bottom: 28px;
  padding: 6px 18px;
  background: rgba(0, 234, 255, 0.12);
  color: #00eaff;
  border: 1px solid #00eaff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px 0 rgba(0,234,255,0.08);
  text-align: center;
}

main .geo-badge {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.soon-underline {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  font-weight: 700;
  color: #ffe066;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
}

.secondary-btn {
  background: transparent;
  color: #ffe066;
  border: 2px solid #ffe066;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.secondary-btn:hover {
  background: #ffe066;
  color: #181818;
}
