:root{
  --bg:#0b1220;
  --surface:#10192b;
  --text:#0f1420;
  --ink:#0e1a2a;
  --white:#ffffff;
  --muted:#6b7280;
  --primary:#1e68ff;
  --primary-600:#1554d6;
  --accent:#19c37d;
  --ok:#10b981;
  --warn:#f59e0b;
  --danger:#ef4444;
  --ring:rgba(30,104,255,.35);
  --radius:12px;
  --shadow:0 8px 30px rgba(2,6,23,.15);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color: #e5e7eb;
  background: #0b1220;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}

.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}

.roboto-condensed-regular {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.parkinsans-regular {
  font-family: "Parkinsans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.gudea-regular {
  font-family: "Gudea", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.gudea-bold {
  font-family: "Gudea", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.gudea-regular-italic {
  font-family: "Gudea", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.hubot-sans-regular {
  font-family: "Hubot Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 150;
}

.georama-regular {
  font-family: "Georama", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.urbanist-regular {
  font-family: "Urbanist", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


img{max-width:100%;display:block;height:auto}

.container{max-width:1120px;margin:0 auto;padding:0 20px}
.section{
  padding:64px 0;
  background: #0b1220;
}
.section.alt{background: #10192b;}

.skip-link{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip-link:focus{left:16px;top:16px;width:auto;height:auto;background:#fff;padding:10px 14px;border-radius:8px;box-shadow:var(--shadow)}

.site-header{
  position:sticky;top:0;z-index:50;background: rgba(16,25,43,0.85);backdrop-filter:saturate(150%) blur(8px);
  border-bottom: 1px solid #1f2937;
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:64px}
.brand{display:flex;align-items:center;gap:10px;color:inherit;text-decoration:none}
.logo{width:28px;height:28px;border-radius:50%}
.brand-text{font-weight:700}
.site-nav ul{display:flex;gap:20px;list-style:none;margin:0;padding:0}
.site-nav a{color:#e5e7eb;text-decoration:none;font-weight:600}
.site-nav .btn{margin-left:8px}

.nav-toggle{display:none;background:none;border:0;padding:8px;border-radius:8px}
.nav-toggle:focus{outline:2px solid var(--ring)}

.hero{position:relative;min-height:72vh;display:grid;place-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:contrast(1.05) saturate(1.1)}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom, rgba(6,12,23,.55), rgba(6,12,23,.65))}
.hero-content{position:relative;color: #ffffff;;text-align:center;padding:80px 0}
.hero h1{font-size:clamp(28px,4.2vw,48px);line-height:1.1;margin:0 0 12px}
.subhead{font-size:clamp(16px,2.2vw,20px);color: #94a3b8;margin:0 auto 24px;max-width:760px}
.hero-ctas{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.trust-strip{display:flex;gap:28px;opacity:.9;align-items:center;justify-content:center;margin-top:28px}
.trust-strip img{height:24px;opacity:.85;filter:grayscale(100%) contrast(1.1)}

.btn{display:inline-block;padding:12px 16px;border-radius:10px;border:1px solid transparent;font-weight:700;text-decoration:none;cursor:pointer;transition:.18s ease-in-out}
.btn:focus-visible{outline:2px solid var(--ring);outline-offset:2px}
.btn-primary{background:var(--primary);color:#fff;border-color:transparent;box-shadow:0 6px 20px rgba(30,104,255,.25)}
.btn-primary:hover{background:var(--primary-600)}
.btn-ghost{background:transparent;color:#fff;border-color:#c7d2fe}
.btn-ghost:hover{background:rgba(255,255,255,.08)}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.card,.feature{
  background: #10192b;border:1px solid #1f2937;border-radius:var(--radius);padding:20px;box-shadow:var(--shadow);color: #e5e7eb;
}
.card h3,.feature h3{margin-top:0;color: #ffffff;}

.screenshot{margin-top:24px}
.screenshot figcaption{color:#64748b;font-size:14px;margin-top:8px}

.checklist{list-style:none;padding:0;margin:16px 0}
.checklist li{margin:8px 0}
.metrics{list-style:none;padding:0;margin:0}
.metrics li{margin:6px 0}

.map img{border-radius:12px;border:1px solid #e5e7eb;box-shadow:var(--shadow)}

.contact{background:#0b1220;color:#e5e7eb}
.contact h2{color:#fff}
.contact .contact-form{
  background:#0f172a;border:1px solid #1f2937;border-radius:14px;padding:18px;box-shadow:var(--shadow)
}
.contact .contact-form input,
.contact .contact-form textarea{
  width:100%;margin:8px 0;padding:12px 12px;border:1px solid #334155;border-radius:10px;background:#0b1220;color:#e5e7eb
}
.contact .contact-form input:focus,
.contact .contact-form textarea:focus{outline:2px solid var(--ring);border-color:var(--primary)}
.contact .contact-form .honeypot{position:absolute;left:-9999px}
.contact .form-note{font-size:13px;color:#94a3b8}
.contact .btn-primary{width:100%}
.contact .btn.btn-ghost{border-color:#334155;color:#e5e7eb}
.sample{margin-top:16px;background:#0f172a;border:1px solid #1f2937;border-radius:12px;padding:16px}

.site-footer{background:#0b1220;color:#cbd5e1;padding:28px 0;border-top:1px solid #1f2937}
.footer-inner{display:flex;gap:20px;justify-content:space-between;align-items:center;flex-wrap:wrap}
.footer-nav a{color:#94a3b8;text-decoration:none;margin-right:14px}
.footer-nav a:hover{text-decoration:underline; color: #ffffff;}

details{background:#10192b;border:1px solid #1f2937;border-radius:12px;padding:12px;margin:10px 0;color: #e5e7eb;}
details > summary{cursor:pointer;font-weight:700;outline:none; color: #ffffff;}
details[open]{box-shadow:var(--shadow)}

@media (max-width: 960px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 768px){
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .site-nav {
    background: #10192b;
    border-bottom: 1px solid #1f2937;
  }
  .site-nav.open{display:block}
  .site-nav ul{flex-direction:column;padding:12px}
  .nav-toggle{display:inline-flex}
}
@media (prefers-reduced-motion: reduce){
  *{animation:none !important;transition:none !important;scroll-behavior:auto !important}
}

a:link {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: white;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}



.coverage-text,
.map-card {
  display: flex;
  flex-direction: column;
  justify-content: center; 
}

.map-card {
  background: #10192b;
  border: 1px solid #1f2937;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 100%;        
  object-fit: cover;   
  display: block;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start; /* align text and map top edges */
}

.coverage-text h2 {
  margin-top: 0;
  margin-bottom: 12px; 
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.2;
}

.form-wrapper {
  max-width: 500px;   
  margin: 0 auto;     
}

.contact-form input,
.contact-form textarea,
.contact-form button {
  width: 100%;      
  box-sizing: border-box;
}

/* Layout + hierarchy */
#contact .section-header {
  max-width: 60ch;
  margin: 0 auto 2rem;
  text-align: center;
}
#contact .h-section {
  margin: 0 0 0.5rem;
  line-height: 1.2;
}
#contact .lead {
  margin: 0;
  opacity: 0.9;
}


/* The form as a centered card */
.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.5rem 1.75rem 2rem;
  background: #fdfcf9;                
  border: 1px solid rgba(15, 23, 42, 0.12); 
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

/* Fields */
.contact-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.contact-form label {
  font-weight: 600;
  font-size: 0.95rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(0,0,0,0.14);
  border-radius: 10px;
  background: #fff;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  box-sizing: border-box;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(0,0,0,0.45);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;             
  box-shadow: 0 0 0 3px rgba(59,130,246,0.2);
}
/* Button */
.contact-form .btn.btn-primary {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  background: #0f172a;
  color: #fff;
  transition: background 220ms ease,
              box-shadow 220ms ease,
              transform 120ms ease,
              opacity 120ms ease;
}

.contact-form .btn.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.55);       
  transform: translateY(-1px);
  opacity: 1;
}

.contact-form .btn.btn-primary:active {
  background: linear-gradient(135deg, #2563eb, #3b82f6); /* deeper gradient when pressed */
  box-shadow: 0 0 8px rgba(37, 99, 235, 0.55);
  transform: translateY(0);
}

.honeypot {
  display: none !important;
}


/* Status text */
.form-status {
  margin-top: 0.75rem;
  min-height: 1.25rem;
  font-size: 0.95rem;
}

/* tighter section spacing on small screens */
@media (max-width: 640px) {
  .contact-card {
    padding: 1rem;
    border-radius: 10px;
  }
}

.phone {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}