/* WiFi Scout — shared styles (matches clicksolutionspro.com design system) */
:root {
  --blue:       #4A9FFF;
  --blue-bright:#6FB8FF;
  --blue-deep:  #1A6FD4;
  --green:      #4ADE80;
  --orange:     #FB923C;
  --red:        #EF4444;
  --amber:      #FACC15;
  --bg:         #060C1A;
  --bg2:        #0A1228;
  --bg3:        #0F1A35;
  --border:     rgba(74,159,255,0.13);
  --border-mid: rgba(74,159,255,0.22);
  --text:       #E8F0FF;
  --text-mid:   rgba(200,218,255,0.70);
  --text-dim:   rgba(200,218,255,0.45);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ambient orbs */
.orb {
  position: fixed; border-radius: 50%;
  pointer-events: none; filter: blur(80px);
  animation: orbFloat 20s ease-in-out infinite;
  z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(74,159,255,0.09) 0%, transparent 70%); top: -180px; left: -180px; }
.orb-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(74,222,128,0.05) 0%, transparent 70%); bottom: 15%; right: -80px; animation-delay: -7s; }
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(35px,-50px) scale(1.04); }
  66%      { transform: translate(-25px,25px) scale(0.96); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.25;} }

/* nav */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,12,26,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { font-size: 16px; font-weight: 600; letter-spacing: -0.3px; }
.nav-brand em { font-style: normal; color: var(--blue); }
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-dim); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-bright); }

.page { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; padding: 0 24px 100px; }

/* hero */
.hero { padding: 80px 0 56px; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-bright);
  background: rgba(74,159,255,0.08);
  border: 1px solid var(--border-mid);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}
.pill-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
.hero h1 {
  font-size: clamp(34px, 6vw, 58px);
  font-weight: 300; line-height: 1.12;
  letter-spacing: -2px; color: #fff;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.13s both;
}
.hero h1 strong {
  font-weight: 600;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 16px; color: var(--text-mid); line-height: 1.75;
  max-width: 540px; margin: 0 auto; font-weight: 300;
  opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.21s both;
}
.hero-cta {
  margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.29s both;
}
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'DM Mono', monospace;
  font-size: 12px; letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: 12px; padding: 14px 26px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  cursor: pointer; border: none;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 6px 24px rgba(26,111,212,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(26,111,212,0.5); }
.btn-ghost {
  color: var(--blue-bright);
  background: rgba(74,159,255,0.06);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover { background: rgba(74,159,255,0.12); }

/* divider */
.divider { display: flex; align-items: center; gap: 16px; margin: 64px 0 36px; }
.div-line { flex: 1; height: 1px; background: var(--border); }
.div-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--text-dim); white-space: nowrap;
}

/* feature grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tile {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 24px 22px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.tile:hover {
  border-color: var(--border-mid);
  transform: translateY(-3px);
  box-shadow: 0 10px 34px rgba(0,0,0,0.35);
}
.tile-ico {
  width: 40px; height: 40px; border-radius: 11px;
  background: rgba(74,159,255,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tile-ico svg { width: 19px; height: 19px; }
.tile h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 7px; letter-spacing: -0.2px; }
.tile p  { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.7; }

/* audience cards */
.aud {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 26px;
}
.aud-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.aud h3 { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 10px; letter-spacing: -0.3px; }
.aud p  { font-size: 13.5px; color: var(--text-mid); font-weight: 300; line-height: 1.8; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step {
  position: relative;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 22px 22px;
}
.step-n {
  font-family: 'DM Mono', monospace;
  font-size: 12px; color: var(--blue-bright);
  border: 1px solid var(--border-mid);
  background: rgba(74,159,255,0.08);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 15px;
}
.step h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 7px; }
.step p  { font-size: 13px; color: var(--text-mid); font-weight: 300; line-height: 1.7; }

/* pricing */
.price-card {
  max-width: 460px; margin: 0 auto;
  background: var(--bg3);
  border: 1px solid var(--border-mid);
  border-radius: 24px; padding: 44px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(74,159,255,0.08);
}
.price-badge {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--green);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 22px;
}
.price-amount { font-size: 56px; font-weight: 300; color: #fff; letter-spacing: -2px; line-height: 1; }
.price-amount sup { font-size: 24px; font-weight: 400; vertical-align: 18px; margin-right: 4px; }
.price-term { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); margin: 12px 0 30px; }
.price-list { list-style: none; text-align: left; margin-bottom: 32px; }
.price-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--text-mid); font-weight: 300;
  padding: 9px 0; border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; }
.check { color: var(--green); flex-shrink: 0; font-weight: 600; }
.price-note { font-size: 12px; color: var(--text-dim); font-weight: 300; margin-top: 18px; line-height: 1.7; }

/* prose pages (privacy / terms) */
.prose { max-width: 760px; margin: 0 auto; }
.prose-updated { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 36px; }
.prose h2 { font-size: 19px; font-weight: 600; color: #fff; letter-spacing: -0.3px; margin: 38px 0 12px; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { font-size: 14px; color: var(--text-mid); font-weight: 300; line-height: 1.85; margin-bottom: 12px; }
.prose ul { padding-left: 22px; margin-bottom: 12px; }
.prose strong { color: var(--text); font-weight: 500; }
.prose a { color: var(--blue-bright); }
.prose a:hover { text-decoration: underline; }

/* footer */
footer {
  border-top: 1px solid var(--border);
  margin-top: 88px; padding-top: 36px;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { font-size: 15px; font-weight: 600; letter-spacing: -0.3px; }
.footer-brand em { font-style: normal; color: var(--blue); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1px; color: var(--text-dim); margin-top: 3px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }

/* phone mockup */
.phone-wrap { display: flex; justify-content: center; padding: 12px 0 8px; }
.phone {
  width: 250px; background: var(--bg2);
  border: 1.5px solid var(--border-mid);
  border-radius: 28px; padding: 12px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.55), 0 0 0 1px rgba(74,159,255,0.08);
}
.phone-screen { border-radius: 18px; overflow: hidden; background: #04070F; }

@media (max-width: 720px) {
  nav { padding: 0 18px; }
  .nav-links { gap: 14px; }
  .page { padding: 0 16px 80px; }
  .grid-3, .steps { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .price-card { padding: 34px 24px; }
  footer { flex-direction: column; align-items: flex-start; }
}
