/* KLD Hosting — minimal, fast, readable, static-only */
/* No external fonts, no JS required */

:root{
  --bg: #0b1020;
  --panel: #0f1730;
  --panel-2: #0c1328;
  --text: #e8eefc;
  --muted: #b8c3e6;
  --line: #37a2ff;
  --accent: #007ad6;
  --accent-2: #37a2ff;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1100px;
  --sidebar-w: 280px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(55,162,255,0.25), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  padding-left: var(--sidebar-w);
}

a{ color: inherit; text-underline-offset: 0.2em; }
a:hover{ text-decoration-thickness: 2px; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background: #fff;
  color:#000;
  padding: 10px 12px;
  border-radius: 10px;
}
.skip-link:focus{ left: 10px; z-index: 9999; }

/* Header */
.site-header{
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-w);
  z-index: 50;

  background: rgba(11,16,32,0.92);
  border-right: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.site-header .container{
  width: 100%;
  margin: 0;
}
.header-row{
  height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 14px;
  overflow: auto;
}
.brand{ display:flex; align-items:center; gap: 12px; text-decoration:none; }
.brand-logo{
  max-width: 100%;
  width: 100%;
  height: auto;
}
.site-nav{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.site-nav a{
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 12px;
  width: 100%;
}
.site-nav a:hover{
  background: rgba(255,255,255,0.06);
}
/* --- Mobile off-canvas behavior (no JS) --- */
.nav-toggle{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-toggle-btn{
  display: none; /* desktop hidden */
}

.nav-overlay{
  display: none; /* desktop hidden */
}
/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), rgb(209,224, 233));
  color: #1a0c00;
  font-weight: 800;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: var(--shadow);
}
.btn:hover{ filter: brightness(1.04); }
.btn:active{ transform: translateY(1px); }
.btn-small{ padding: 10px 12px; border-radius: 12px; }
.btn-wide{ width: 100%; }

.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover{ background: rgba(255,255,255,0.10); }

/* Layout */
.section{
  padding: 70px 0;
}
.section-alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03) 20%, transparent 95%);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section h2{
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  letter-spacing: -0.02em;
}
.section-lede{
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 70ch;
}

.grid{
  display:grid;
  gap: 18px;
}
.cards-3{ grid-template-columns: repeat(3, 1fr); }
.cards-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.22);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0 0 10px; color: var(--muted); }
.bullets{ margin: 10px 0 0; padding-left: 18px; color: var(--muted); }
.bullets li{ margin: 6px 0; }

.checklist{
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.checklist li{
  padding-left: 26px;
  margin: 10px 0;
  position: relative;
  color: var(--muted);
}
.checklist li::before{
  content: "✓";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

/* Hero */
.hero{ padding: 70px 0 40px; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  align-items: start;
}
.kicker{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  margin: 0 0 12px;
}
.hero h1{
  margin: 0 0 12px;
  font-size: clamp(2.0rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.lede{ color: var(--muted); max-width: 70ch; }
.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin: 18px 0 10px; }
.trust-list{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.hero-card .h3{ margin: 0 0 10px; font-size: 1.1rem; }
.mini-note{
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.15);
}
.mini-note p{ margin: 0; color: var(--muted); }

/* Pricing */
.pricing .price-card header{ margin-bottom: 10px; }
.price{ margin: 0; }
.price-big{ font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; }
.price-sub{ color: var(--muted); margin-left: 6px; }
.price-card .checklist{ margin-top: 10px; }
.featured{
  border-color: #37a2ff;
  box-shadow: 0 16px 60px #37a2ff;
}
.badge{
  display:inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), rgb(209, 224, 233));
  border: 1px solid #37a2ff;
  margin-bottom: 10px;
}
.fineprint{ margin-top: 16px; color: var(--muted); }

/* Steps */
.steps{
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.steps li{
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.steps h3{ margin: 0 0 8px; font-size: 1.05rem; }
.steps p{ margin: 0; color: var(--muted); }

/* FAQ */
.faq{
  margin: 12px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.03);
  padding: 12px 14px;
}
.faq summary{
  cursor: pointer;
  font-weight: 800;
}
.faq-body{ margin-top: 8px; color: var(--muted); }

/* Contact */
.contact-grid{
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.contact-line{ margin: 8px 0; color: var(--muted); }
.note{
  margin-top: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(55,162,255,0.35);
  background: rgba(55,162,255,0.10);
}
.note p{ margin: 0; color: var(--muted); }

.form label{
  display:block;
  margin: 12px 0;
  font-weight: 700;
}
input, select, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.18);
  color: var(--text);
  font: inherit;
}
textarea{ resize: vertical; }
input:focus, select:focus, textarea:focus{
  outline: 2px solid rgba(55,162,255,0.35);
  outline-offset: 2px;
}
.form-hint{
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer{
  padding: 30px 0 70px;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.small{ color: var(--muted); margin: 0; }
.site-footer p{ margin: 0; }

/* Sticky CTA (mobile) */
.sticky-cta{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display:none;
  gap: 10px;
  padding: 12px 12px;
  background: rgba(11,16,32,0.86);
  border-top: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
}
.sticky-btn{
  flex: 1;
  text-align:center;
  padding: 12px 12px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
}

/* Responsive */
@media (max-width: 920px){
	body{ padding-left: 0; } /* no permanent sidebar on mobile */
	.site-header{ width: min(84vw, 320px); transform: translateX(-100%); transition: transform 180ms ease;}
	.nav-toggle:checked ~ .site-header{ transform: translateX(0);}
	.nav-toggle-btn{ display: flex; position: fixed; left: 12px; top: 12px; z-index: 60; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 14px; border: 1px solid rgba(255,255,255,0.12); background: rgba(11,16,32,0.86); backdrop-filter: blur(10px); font-weight: 900; text-decoration: none;}
	.nav-overlay{ position: fixed; inset: 0; z-index: 55; background: rgba(0,0,0,0.45); }
	.nav-toggle:checked ~ .nav-overlay{ display: block; }
	.site-nav{ display: flex; }
  .cards-3{ grid-template-columns: 1fr; }
  .cards-2{ grid-template-columns: 1fr; }
  .hero-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .site-nav{ display:none; } /* Keep it minimal; mobile uses sticky CTAs */
  .sticky-cta{ display:flex; }
  .site-footer{ padding-bottom: 90px; }
}
