:root{
  --bg:#0b0d12;
  --card:#121623;
  --alt:#0f1420;
  --text:#e9ecf1;
  --muted:#b5bfd1;
  --border:rgba(255,255,255,.10);
  --shadow: 0 16px 50px rgba(0,0,0,.35);
  --radius: 20px;
  --radius2: 28px;
  --max: 1100px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 0%, rgba(130,80,255,.22), transparent 55%),
              radial-gradient(900px 500px at 90% 20%, rgba(0,180,255,.18), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
code{ background: rgba(255,255,255,.08); padding:.12rem .35rem; border-radius:8px; }

.container{
  width:100%;
  max-width: var(--max);
  margin:0 auto;
  padding: 0 18px;
}

.site-header{
  position: sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.72);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.brand-logo{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:14px;
  padding:6px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
}

.brand-name{ font-weight:750; letter-spacing:.2px; }
.brand-sub{ font-size:.86rem; color:var(--muted); }

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  font-size:.95rem;
  color:var(--muted);
  padding:8px 10px;
  border-radius: 12px;
}
.nav a:hover{
  color:var(--text);
  background: rgba(255,255,255,.06);
}

.hero{
  padding: 56px 0 10px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:stretch;
}

h1{
  font-size: clamp(28px, 4.2vw, 44px);
  line-height:1.1;
  margin:0 0 12px;
  letter-spacing:-.6px;
}
.lead{
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 18px;
}

.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin: 10px 0 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:650;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn:hover{ background: rgba(255,255,255,.10); }
.btn.primary{
  background: linear-gradient(135deg, rgba(130,80,255,.95), rgba(0,180,255,.75));
  border: 1px solid rgba(255,255,255,.22);
}
.btn.primary:hover{ filter: brightness(1.03); }
.btn.ghost{
  background: rgba(255,255,255,.04);
}

.small-note{
  margin-top: 10px;
  color: var(--muted);
  font-size: .92rem;
}

.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 360px;
}

.hero-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border);
}

.badge{
  font-size:.82rem;
  font-weight:700;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--border);
}

.dots span{
  display:inline-block;
  width:9px;
  height:9px;
  border-radius:99px;
  margin-left:6px;
  background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.12);
}

.slideshow{
  flex:1;
  max-height: 430px;   
  background: rgba(0,0,0,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
}

.slideshow img{
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.hero-card-bottom{
  padding: 12px 14px;
  border-top: 1px solid var(--border);
}

.section{
  padding: 56px 0;
}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2{
  margin:0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing:-.3px;
}
.muted{ color: var(--muted); }

/* ✅ FEATURES: 5 cards in one row on desktop */
.cards{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.card{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.card h3{ margin:0 0 8px; font-size: 1.03rem; }
.card p{ margin:0; color: var(--muted); }

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.panel{
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.checklist{
  margin: 12px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery .shot{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.22);
  overflow:hidden;
  min-height: 180px;
}
.gallery .shot img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
}

.link-cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.link-card{
  display:block;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.05);
}
.link-card:hover{ background: rgba(255,255,255,.08); }
.lc-title{ font-weight:750; margin-bottom:4px; }
.lc-sub{ color: var(--muted); font-size:.92rem; }

.site-footer{
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer-brand{ font-weight:800; }
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  color: var(--muted);
}
.footer-links a:hover{ color: var(--text); }

/* ✅ new breakpoint: prevent squishing before tablet */
@media (max-width: 1100px){
  .cards{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .link-cards{ grid-template-columns: repeat(2, 1fr); }
  .grid-2{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .link-cards{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
