body { outline: 12px solid hotpink !important; }

:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --border: rgba(255,255,255,.12);
  --accent: #39d98a;
  --accent2: #3aa0ff;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
  --radius: 18px;
}

/* ------------------ BASE ------------------ */

*{ box-sizing:border-box; }

html,body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height:1.55;
  background: var(--bg);
  overflow-x:hidden;
}

/* Geo city background (applied by JS) */
body.geo-bg{
  background:
    linear-gradient(rgba(11,16,32,.86), rgba(11,16,32,.86)),
    var(--geo-bg) no-repeat center center fixed;
  background-size: cover;
}

a{
  color: inherit;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

.container{
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* ------------------ HEADER ------------------ */

.site-header{
  position: sticky;
  top:0;
  z-index:100;
  background: rgba(11,16,32,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
}

.brand-logo{
  width: 90px;
  height: auto;
}

.brand-name{
  font-weight: 700;
  font-size: 1.05rem;
}

.tm{
  font-size:.7em;
  vertical-align:super;
  opacity:.85;
}

/* ------------------ NAV ------------------ */

.nav{
  display:flex;
  gap: 18px;
}

.nav a{
  color: var(--muted);
  font-weight: 500;
}

.nav a:hover{
  color: var(--text);
}

/* ------------------ BUTTONS ------------------ */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #051018;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor:pointer;
}

.btn:hover{
  filter: brightness(1.05);
  text-decoration:none;
}

.btn--ghost{
  background: transparent;
  color: var(--text);
  box-shadow:none;
}

.btn--sm{
  padding: 10px 14px;
  font-size:.95rem;
}

/* ------------------ HERO ------------------ */

.hero{
  padding: 72px 0 48px;
  position: relative;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
}

.eyebrow{
  display:inline-block;
  padding: 8px 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  margin-bottom: 14px;
}

h1{
  font-size: clamp(36px, 4vw, 56px);
  line-height:1.05;
  letter-spacing:-0.6px;
  margin:0 0 12px;
}

.accent{ color: var(--accent); }

.lead{
  color: var(--muted);
  font-size:1.1rem;
  max-width: 60ch;
  margin-bottom:18px;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:16px;
}

.pill-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.pill{
  padding:8px 14px;
  border-radius:999px;
  background: var(--panel2);
  border:1px solid var(--border);
  color: var(--muted);
  font-size:.95rem;
}

/* Hero card */

.hero-card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.hero-card-top{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
}

.badge{
  padding:7px 12px;
  border-radius:999px;
  background: var(--panel2);
  border:1px solid var(--border);
  color: var(--muted);
  font-size:.9rem;
}

.badge--soft{
  border-color: rgba(57,217,138,.4);
}

.checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.checklist li{
  padding-left:26px;
  position:relative;
  margin:10px 0;
  color: var(--muted);
}

.checklist li::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:14px;
  height:14px;
  border-radius:4px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}

.mini-note{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--border);
  color: var(--muted);
}

/* ------------------ SECTIONS ------------------ */

.section{
  padding: 64px 0;
}

.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

h2{
  font-size: clamp(26px, 2.4vw, 36px);
  margin:0 0 12px;
  letter-spacing:-0.3px;
}

.subhead{
  color: var(--muted);
  margin-bottom:26px;
  max-width: 80ch;
}

/* Grids */

.grid-3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}

.grid-2{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:16px;
}

/* Cards */

.card{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:20px;
}

.card h3{
  margin-top:0;
  margin-bottom:8px;
}

.card p{
  color: var(--muted);
}

/* Steps */

.steps{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}

.step{
  background: var(--panel);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:20px;
  display:flex;
  gap:14px;
}

.step-num{
  width:36px;
  height:36px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#051018;
}

/* Pricing */

.price{
  font-size:2.1rem;
  margin:10px 0 12px;
}

.price span{
  font-size:.95rem;
  color: var(--muted);
}

.fineprint{
  margin-top:18px;
  color: rgba(255,255,255,.55);
  font-size:.95rem;
}

/* ------------------ FOOTER ------------------ */

.site-footer{
  padding: 28px 0;
  border-top:1px solid var(--border);
  background: rgba(0,0,0,.2);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer-note{
  color: rgba(255,255,255,.6);
}

/* ------------------ RESPONSIVE ------------------ */

@media (max-width: 900px){

  .hero-grid{
    grid-template-columns:1fr;
  }

  .grid-3,
  .grid-2,
  .steps{
    grid-template-columns:1fr;
  }

  .nav{
    display:none;
  }

  .brand-logo{
    width:70px;
  }
}
body { outline: 12px solid hotpink !important; }
