:root {
        --bg: #07111f;
        --bg-soft: #0d1b2f;
        --card: rgba(255, 255, 255, 0.08);
        --card-border: rgba(255, 255, 255, 0.14);
        --text: #eef4ff;
        --muted: #aac1df;
        --accent: #6ed6ff;
        --accent-2: #8b7cff;
        --success: #86efac;
        --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
        --radius: 24px;
        --max: 1160px;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        color: var(--text);
        background:
          radial-gradient(circle at top left, rgba(110, 214, 255, 0.16), transparent 28%),
          radial-gradient(circle at top right, rgba(139, 124, 255, 0.18), transparent 24%),
          linear-gradient(180deg, #081221 0%, #07111f 45%, #09172b 100%);
        min-height: 100vh;
      }

      a {
        color: inherit;
        text-decoration: none;
      }

      .container {
        width: min(calc(100% - 32px), var(--max));
        margin: 0 auto;
      }

      .site-header {
        position: sticky;
        top: 0;
        z-index: 20;
        backdrop-filter: blur(14px);
        background: rgba(7, 17, 31, 0.7);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 16px 0;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        letter-spacing: 0.02em;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        display: grid;
        place-items: center;
        color: #04111c;
        font-weight: 900;
        box-shadow: var(--shadow);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 18px;
        color: var(--muted);
        font-size: 0.96rem;
      }

      .nav-links a:hover {
        color: var(--text);
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 0 20px;
        border-radius: 999px;
        border: 1px solid transparent;
        font-weight: 700;
        transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
      }

      .button:hover {
        transform: translateY(-1px);
      }

      .button-primary {
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        color: #07111f;
        box-shadow: 0 16px 40px rgba(110, 214, 255, 0.22);
      }

      .button-secondary {
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
      }

      .hero {
        padding: 80px 0 56px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        gap: 36px;
        align-items: center;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: var(--muted);
        font-size: 0.92rem;
        margin-bottom: 18px;
      }

      h1 {
        margin: 0;
        font-size: clamp(2.7rem, 6vw, 5.4rem);
        line-height: 0.95;
        letter-spacing: -0.05em;
      }

      .gradient-text {
        background: linear-gradient(135deg, #ffffff 0%, #a7e9ff 40%, #b7acff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .hero p {
        margin: 22px 0 0;
        color: var(--muted);
        font-size: 1.08rem;
        line-height: 1.7;
        max-width: 62ch;
      }

      .hero-actions {
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
      }

      .hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 28px;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .phone-card {
        position: relative;
        padding: 22px;
        border-radius: 36px;
        background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.04));
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow);
        overflow: hidden;
      }

      .phone-card::before,
      .phone-card::after {
        content: "";
        position: absolute;
        border-radius: 999px;
        filter: blur(10px);
      }

      .phone-card::before {
        width: 220px;
        height: 220px;
        top: -60px;
        right: -70px;
        background: rgba(110, 214, 255, 0.15);
      }

      .phone-card::after {
        width: 180px;
        height: 180px;
        bottom: -40px;
        left: -40px;
        background: rgba(139, 124, 255, 0.16);
      }

      .phone-shell {
        position: relative;
        z-index: 1;
        width: min(100%, 360px);
        margin: 0 auto;
        border-radius: 34px;
        padding: 14px;
        background: #0a1627;
        border: 1px solid rgba(255, 255, 255, 0.14);
      }

      .phone-notch {
        width: 40%;
        height: 26px;
        background: #040913;
        border-radius: 999px;
        margin: 0 auto 14px;
      }

      .phone-screen {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        min-height: 620px;
        background:
          radial-gradient(circle at 20% 15%, rgba(110, 214, 255, 0.28), transparent 20%),
          radial-gradient(circle at 80% 10%, rgba(139, 124, 255, 0.26), transparent 18%),
          linear-gradient(180deg, #0d1c31 0%, #0b1527 100%);
        padding: 18px;
      }

      .map-panel {
        height: 270px;
        border-radius: 22px;
        background:
          linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
          repeating-linear-gradient(
            45deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.04) 18px,
            transparent 18px,
            transparent 36px
          );
        border: 1px solid rgba(255,255,255,0.08);
        position: relative;
        overflow: hidden;
      }

      .map-line,
      .map-line-2 {
        position: absolute;
        background: rgba(255,255,255,0.11);
        border-radius: 999px;
      }

      .map-line {
        width: 170%;
        height: 14px;
        top: 52%;
        left: -34%;
        transform: rotate(19deg);
      }

      .map-line-2 {
        width: 150%;
        height: 10px;
        top: 30%;
        left: -22%;
        transform: rotate(-24deg);
      }

      .pin {
        position: absolute;
        width: 18px;
        height: 18px;
        border-radius: 999px 999px 999px 0;
        transform: rotate(-45deg);
        background: linear-gradient(135deg, var(--accent), var(--accent-2));
        box-shadow: 0 0 0 8px rgba(110, 214, 255, 0.1);
      }

      .pin::after {
        content: "";
        position: absolute;
        inset: 4px;
        border-radius: 999px;
        background: #07111f;
      }

      .pin.one { top: 30%; left: 24%; }
      .pin.two { top: 53%; left: 62%; }
      .pin.three { top: 62%; left: 40%; }

      .search-pill {
        margin-top: 18px;
        padding: 14px 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255,255,255,0.1);
        color: var(--muted);
      }

      .location-card {
        margin-top: 14px;
        padding: 16px;
        border-radius: 18px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
      }

      .location-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        font-weight: 700;
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-radius: 999px;
        padding: 6px 10px;
        background: rgba(134, 239, 172, 0.14);
        color: var(--success);
        font-size: 0.82rem;
      }

      .stats {
        padding: 24px 0 8px;
      }

      .stats-grid,
      .features-grid,
      .steps-grid {
        display: grid;
        gap: 18px;
      }

      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .card {
        background: var(--card);
        border: 1px solid var(--card-border);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
      }

      .stat-card,
      .feature-card,
      .step-card,
      .cta-card {
        padding: 24px;
      }

      .stat-number {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: -0.04em;
      }

      .stat-label,
      .feature-card p,
      .step-card p,
      .section-intro {
        color: var(--muted);
        line-height: 1.7;
      }

      section {
        padding: 42px 0;
      }

      .section-header {
        max-width: 760px;
        margin-bottom: 22px;
      }

      .section-title {
        font-size: clamp(2rem, 4vw, 3.1rem);
        margin: 0 0 10px;
        letter-spacing: -0.04em;
      }

      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .feature-icon,
      .step-number {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        display: grid;
        place-items: center;
        font-weight: 800;
        background: linear-gradient(135deg, rgba(110,214,255,0.18), rgba(139,124,255,0.18));
        border: 1px solid rgba(255,255,255,0.12);
        margin-bottom: 16px;
      }

      .feature-card h3,
      .step-card h3 {
        margin: 0 0 8px;
        font-size: 1.18rem;
      }

      .steps-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .cta {
        padding-bottom: 72px;
      }

      .cta-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 22px;
        background:
          radial-gradient(circle at top left, rgba(110,214,255,0.14), transparent 30%),
          radial-gradient(circle at bottom right, rgba(139,124,255,0.14), transparent 34%),
          rgba(255,255,255,0.06);
      }

      .cta-copy h2 {
        margin: 0 0 8px;
        font-size: clamp(1.7rem, 3vw, 2.6rem);
      }

      .site-footer {
        padding: 26px 0 44px;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .footer-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 18px;
      }

      @media (max-width: 980px) {
        .hero-grid,
        .features-grid,
        .steps-grid,
        .stats-grid,
        .cta-card {
          grid-template-columns: 1fr;
        }

        .phone-shell {
          width: min(100%, 420px);
        }
      }

      @media (max-width: 760px) {
        .nav-links {
          display: none;
        }

        .hero {
          padding-top: 52px;
        }

        .hero-actions {
          flex-direction: column;
          align-items: stretch;
        }

        .button {
          width: 100%;
        }

        .footer-row {
          flex-direction: column;
          align-items: flex-start;
        }
      }
	  
	  .footer-link {
		  color: var(--accent);
		  font-weight: 600;
		  transition: opacity 0.2s ease, text-decoration 0.2s ease;
		}

		.footer-link:hover {
		  opacity: 0.8;
		  text-decoration: underline;
		}
		
		.image-panel {
		  background-image: url("/images/homescreen.jpg");
		  background-size: cover;
		  background-position: center;
		  background-repeat: no-repeat;
		}
		
		.map-image {
		  width: 100%;
		  height: 100%;
		  object-fit: cover;
		  border-radius: 22px;
		}
		.image-panel::after {
		  content: "";
		  position: absolute;
		  inset: 0;
		  background: linear-gradient(
			to bottom,
			rgba(7, 17, 31, 0.1),
			rgba(7, 17, 31, 0.6)
		  );
		}
		
		.image-modal {
		  position: fixed;
		  inset: 0;
		  background: rgba(0, 0, 0, 0.85);
		  display: none;
		  align-items: center;
		  justify-content: center;
		  z-index: 999;
		}

		.image-modal img {
		  max-width: 90%;
		  max-height: 90%;
		  border-radius: 16px;
		  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
		  animation: zoomIn 0.2s ease;
		}

		@keyframes zoomIn {
		  from {
			transform: scale(0.9);
			opacity: 0;
		  }
		  to {
			transform: scale(1);
			opacity: 1;
		  }
		}
		
		.close-btn {
		  position: absolute;
		  top: 30px;
		  right: 40px;
		  font-size: 40px;
		  color: white;
		  cursor: pointer;
		}
		
		.brand-logo {
		  width: 42px;
		  height: 42px;
		  object-fit: contain;
		  border-radius: 12px; /* optional */
		}