/* styles.css */
:root{
  --bg: #0b0d12;
  --panel:#121624;
  --panel2:#0f1320;
  --text:#e9eefc;
  --muted:#aab3d6;
  --line:#232a44;
  --accent:#6aa7ff;
  --accent2:#7af0c5;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(106,167,255,.18), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(122,240,197,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 18px}

.site-header{
  position:sticky; top:0; z-index:10;
  background: rgba(11,13,18,.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(35,42,68,.7);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:70px;
}

.brand{display:flex; align-items:center; gap:10px}
.brand-mark{
  width:14px; height:14px; border-radius:4px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(106,167,255,.10);
}
.brand-name{font-weight:700; letter-spacing:.3px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted)}
.nav a:hover{color:var(--text)}

.nav-toggle{
  display:none;
  background:transparent;
  color:var(--text);
  border:1px solid rgba(35,42,68,.9);
  padding:8px 10px;
  border-radius:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(106,167,255,.95), rgba(122,240,197,.85));
  color:#07101a;
  font-weight:700;
  border:0;
  box-shadow: var(--shadow);
}
.btn:hover{filter:brightness(1.03)}
.btn.ghost{
  background:transparent;
  border:1px solid rgba(106,167,255,.55);
  color:var(--text);
  box-shadow:none;
}
.btn.small{padding:10px 14px; border-radius:12px}

.hero{padding:60px 0 30px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:stretch;
}
.badge{
  display:inline-block;
  padding:6px 10px;
  border:1px solid rgba(35,42,68,.9);
  border-radius: 999px;
  color:var(--muted);
  background: rgba(18,22,36,.55);
}
h1{font-size: clamp(34px, 4vw, 52px); line-height:1.08; margin:14px 0}
.subhead{color:var(--muted); max-width:58ch}

.hero-actions{display:flex; gap:12px; margin:18px 0 12px; flex-wrap:wrap}
.hero-points{
  margin:18px 0 0; padding:0;
  list-style:none;
  display:flex; gap:14px; flex-wrap:wrap;
  color:var(--muted);
}
.hero-points li{
  padding:8px 10px;
  border:1px solid rgba(35,42,68,.9);
  border-radius:999px;
  background: rgba(18,22,36,.45);
}

.hero-card{
  border:1px solid rgba(35,42,68,.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18,22,36,.75), rgba(15,19,32,.75));
  box-shadow: var(--shadow);
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 320px;
}
.card-top{display:flex; gap:12px; align-items:stretch}
.img-ph{
  flex:1;
  height:180px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(78, 100, 92, 0)),
    url("/assets/Stock 2.jpeg");
  background-size: cover;
  background-position: center;
}

.img-ph.small{
  flex:0.55;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0), rgba(78, 100, 92, 0)),
    url("/assets/Fixed Stock Adapter.jpeg");
  background-size: cover;
  background-position: center;
}

.card-bottom{padding-top:14px}
.line{
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  margin-bottom:10px;
}
.line.short{width:65%}
.chip-row{display:flex; gap:10px; flex-wrap:wrap}
.chip{
  font-size: 13px;
  color: var(--muted);
  padding:7px 10px;
  border-radius: 999px;
  border:1px solid rgba(35,42,68,.9);
  background: rgba(18,22,36,.45);
}

.section{padding:52px 0}
.section.alt{background: rgba(255,255,255,.02); border-top:1px solid rgba(35,42,68,.6); border-bottom:1px solid rgba(35,42,68,.6)}
.section-head{margin-bottom:18px}
.section-head h2{margin:0 0 6px; font-size:28px}
.section-head p{margin:0; color:var(--muted)}

.grid.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(35,42,68,.9);
  background: rgba(18,22,36,.55);
  box-shadow: 0 10px 26px rgba(0,0,0,.20);
}
.card-img-1, .card-img-2, .card-img-3 {
  height:200px;
  border-radius: 14px;
  margin-bottom:12px;
}

.card-img-1 {
  border-radius: 14px;
  background: url("/assets/Close Up View.jpg");
  background-size: cover;
  background-position: center;
  margin-bottom:12px;
}

.card-img-2 {
  border-radius: 14px;
  background:url("/assets/Stock 1.png");
  background-size: cover;
  background-position: center;
  margin-bottom:12px;
}
.card-img-3 {
  border-radius: 14px;
  background:url("/assets/Angle 2.jpeg");
  background-size: cover;
  background-position: center;
  margin-bottom:12px;
}
.card h3{margin:6px 0 6px}
.card p{margin:0 0 10px; color:var(--muted)}
.link{color: var(--accent); font-weight:650}
.link:hover{text-decoration:underline}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.panel{
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(35,42,68,.9);
  background: rgba(18,22,36,.55);
  box-shadow: var(--shadow);
}
.muted{color:var(--muted)}
.kpis{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:18px;
}
.kpi{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(35,42,68,.9);
  background: rgba(18,22,36,.45);
}
.kpi-num{font-weight:800; font-size:18px}
.kpi-label{color:var(--muted); font-size:13px; margin-top:4px}

.check{margin:12px 0 14px; padding-left:18px; color:var(--muted)}
.check li{margin:6px 0}

.accordion details{
  border:1px solid rgba(35,42,68,.9);
  border-radius: 16px;
  background: rgba(18,22,36,.45);
  padding:12px 14px;
  margin-bottom:10px;
}
.accordion summary{cursor:pointer; font-weight:700}
.accordion p{color:var(--muted); margin:10px 0 0}

.form{
  display:grid;
  gap:12px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(35,42,68,.9);
  background: rgba(18,22,36,.55);
  box-shadow: var(--shadow);
}
label{display:grid; gap:6px; color:var(--muted); font-size:14px}
input, textarea{
  background: rgba(11,13,18,.7);
  border:1px solid rgba(35,42,68,.9);
  border-radius: 14px;
  padding:12px 12px;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{border-color: rgba(106,167,255,.8)}
.tiny{font-size:12px}

.site-footer{
  padding:24px 0 40px;
  color: var(--muted);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid rgba(35,42,68,.6);
  padding-top:16px;
}
.footer-links{display:flex; gap:14px}
.footer-links a:hover{color:var(--text)}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid.cards{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .kpis{grid-template-columns:1fr}
  .nav-toggle{display:inline-flex}
  .nav{
    position:absolute;
    right:18px; top:70px;
    display:none;
    flex-direction:column;
    gap:10px;
    padding:14px;
    border:1px solid rgba(35,42,68,.9);
    border-radius: 16px;
    background: rgba(11,13,18,.92);
  }
  .nav.open{display:flex}
}

/* Mobile default: nav hidden */
.nav {
  display: none;
}

/* When opened */
.nav.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Desktop: always show nav, hide toggle button */
@media (min-width: 768px) {
  .nav {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }
  .nav-toggle {
    display: none;
  }
}


