:root{
  --bg:#0b0f19;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(0,0,0,.25);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --accent:#00aaff;
  --accent2:#7c3aed;
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* HERO */
.hero{
  position:relative;
  min-height: 92vh;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.88)),
    url("background.jpg");
  background-size: cover;
  background-position: center;
}
.hero .overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(0,170,255,.18), transparent 60%),
    radial-gradient(700px 420px at 80% 25%, rgba(124,58,237,.18), transparent 60%);
}

.nav{
  padding: 18px 22px;
}
.nav-center{
  display:flex;
  flex-direction:column;
  gap: 14px;
  align-items:center;
}
.nav-top{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.logo{width:34px;height:34px;border-radius:10px;object-fit:cover}
.logo-red{filter:hue-rotate(330deg) saturate(1.2)}

.nav-title{
  font-weight:800;
  letter-spacing:.3px;
}
.nav-bottom{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.nav-bottom a{
  color: var(--text);
  text-decoration:none;
  font-weight:700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav-bottom a:hover{
  background: rgba(255,255,255,.08);
}

.hero-content{
  padding: 44px 7% 54px;
  position:relative;
  z-index:2;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items:start;
}

.profile{
  width: 92px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.brand-title{
  margin: 14px 0 6px;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: .2px;
}
.founder-line{
  margin:0 0 12px;
  font-size: 16px;
  color: var(--muted);
  font-weight: 700;
}
.subtitle{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.hero-actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration:none;
  font-weight: 800;
}
.cta:hover{border-color: rgba(255,255,255,.28)}
.cta.ghost{background: transparent}
.cta.book{
  background: rgba(0,170,255,.16);
  border: 1px solid rgba(0,170,255,.35);
}
.cta.book:hover{border-color: rgba(0,170,255,.65)}

.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.badge{
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 12.5px;
  font-weight: 700;
}

/* RIGHT TEAM CARD */
.hero-team .team-card{
  background: rgba(0,0,0,.30);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  overflow:hidden;
}
.team-head{padding:16px 16px 10px}
.team-head h3{margin:0;font-size:18px}
.team-head p{margin:6px 0 0;color: var(--muted)}
.team-list{padding: 8px 12px 12px; display:flex; flex-direction:column; gap:10px}
.team-member{
  display:flex; gap:10px; align-items:center;
  padding:10px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.team-photo{width:44px;height:44px;border-radius:14px;object-fit:cover;border:1px solid rgba(255,255,255,.12)}
.team-name{font-weight:900}
.team-role{font-size:12.5px; color: var(--muted); font-weight:650}
.team-cta{padding: 0 12px 14px}
.mini-btn{
  display:inline-flex;
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration:none;
  font-weight: 900;
}

/* MAIN */
.wrap{width:min(1120px, 92vw); margin: 18px auto 60px}
.card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.section-head{margin-top:18px}
.section-title{margin:0}
.section-sub{margin:8px 0 0; color: var(--muted)}

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.service-card h3{margin:0 0 10px}
.list{margin:0; padding-left: 18px; color: var(--muted)}
.list li{margin:6px 0}

.project-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.project img{
  width:100%;
  height: 170px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
}
.project h3{margin:10px 0 6px}
.project p{margin:0; color: var(--muted)}

.buttons{display:flex; flex-wrap:wrap; gap:10px; margin-top:10px}
.btn{
  display:inline-flex;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--text);
  text-decoration:none;
  font-weight: 850;
}
.btn:hover{border-color: rgba(255,255,255,.28)}

.accent-link{color: #8bd6ff; font-weight: 800; text-decoration:none}
.accent-link:hover{text-decoration:underline}

.footer{
  width:min(1120px, 92vw);
  margin: 0 auto 26px;
  color: rgba(255,255,255,.72);
  text-align:center;
}

/* REVEAL ANIM */
.sdh-reveal{opacity:0; transform: translateY(12px); transition: .6s ease}
.sdh-reveal--show{opacity:1; transform:none}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-content{padding: 40px 18px 48px}
  .hero-grid{grid-template-columns: 1fr}
  .grid{grid-template-columns: 1fr}
  .project-grid{grid-template-columns: 1fr}
}
