:root{
  --bg:#0b1020;
  --surface:rgba(255,255,255,.06);
  --surface2:rgba(255,255,255,.10);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --brand:#7c5cff;
  --brand2:#00d4ff;
  --ok:#2ee59d;
  --warn:#ffcc66;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius:18px;
  --radius2:28px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 900px at 20% -10%, rgba(124,92,255,.35), transparent 60%),
              radial-gradient(1000px 800px at 100% 20%, rgba(0,212,255,.25), transparent 55%),
              radial-gradient(900px 700px at 50% 120%, rgba(46,229,157,.18), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}
img{max-width:100%; height:auto; display:block}

a{color:inherit; text-decoration:none}

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

/* Header */
.site-header{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(14px);
  background: rgba(11,16,32,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex; gap:12px; align-items:center;
}
.brand-logo{
  width:44px; height:44px; border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.35), rgba(0,212,255,.22));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.brand-logo img{width:100%; height:100%; object-fit:cover}
.brand-title{display:flex; flex-direction:column; line-height:1.15}
.brand-title strong{font-size:16px; letter-spacing:.2px}
.brand-title span{font-size:12px; color:var(--muted)}

.nav-toggle{
  display:none;
  background:transparent; border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  padding:10px 12px;
  color:var(--text);
}
.nav-toggle:focus{outline:2px solid rgba(124,92,255,.6); outline-offset:2px}

.nav{
  display:flex; align-items:center; gap:10px;
}
.nav a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.nav a:hover{color:var(--text); border-color:rgba(255,255,255,.12); background:rgba(255,255,255,.04)}
.nav a.active{color:var(--text); background:rgba(124,92,255,.14); border-color:rgba(124,92,255,.35)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  box-shadow:none;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.22)}
.btn.primary{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(0,212,255,.75));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 50px rgba(124,92,255,.28);
}
.btn.primary:hover{transform: translateY(-2px)}
.btn.small{padding:10px 12px; border-radius:14px; font-size:14px}

/* Hero */
.hero{
  padding: 64px 0 28px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:26px;
  align-items:stretch;
}
.hero-card{
  border-radius: var(--radius2);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-card::before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 260px at 20% 20%, rgba(124,92,255,.35), transparent 70%),
              radial-gradient(520px 260px at 70% 0%, rgba(0,212,255,.22), transparent 70%);
  opacity:.9;
  pointer-events:none;
}
.hero-card > *{position:relative}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size: 13px;
}
.kicker .dot{width:8px; height:8px; border-radius:50%; background: linear-gradient(135deg, var(--brand), var(--brand2))}

h1{font-size:44px; line-height:1.05; margin:14px 0 10px; letter-spacing:-.6px}
.lead{font-size:16px; color:var(--muted); margin:0 0 18px; max-width: 62ch}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:14px}

.hero-stats{
  display:grid; gap:12px;
  grid-template-columns:1fr 1fr;
}
.stat{
  border-radius: var(--radius);
  padding: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}
.stat strong{display:block; font-size:20px; letter-spacing:-.2px}
.stat span{display:block; color:var(--muted); font-size:13px; margin-top:2px}

.hero-media{
  border-radius: var(--radius2);
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.hero-media img{width:100%; height:100%; object-fit:cover}
.hero-media .badge{
  position:absolute; left:16px; top:16px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(11,16,32,.55);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  font-size:13px;
  backdrop-filter: blur(10px);
}

/* Sections */
section{padding: 34px 0}
.section-head{display:flex; justify-content:space-between; align-items:flex-end; gap:18px; margin-bottom: 14px}
.section-head h2{margin:0; font-size:26px; letter-spacing:-.3px}
.section-head p{margin:0; color:var(--muted); max-width: 72ch}

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

.card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  padding: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0; color:var(--muted)}

.pill-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.pill{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size: 13px;
}

.media-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
}
.media-card .media{aspect-ratio: 16 / 10; background: rgba(255,255,255,.06)}
.media-card img{width:100%; height:100%; object-fit:cover}
.media-card .content{padding:16px 18px}
.media-card .content h3{margin:0 0 6px}
.media-card .content p{margin:0; color:var(--muted)}

.callout{
  border-radius: var(--radius2);
  padding: 18px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(124,92,255,.20), rgba(0,212,255,.12));
  box-shadow: 0 16px 55px rgba(0,0,0,.25);
}
.callout strong{display:block; font-size:18px; margin-bottom:6px}
.callout p{margin:0; color:var(--muted)}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.g-item{
  grid-column: span 4;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
  position:relative;
  cursor:pointer;
}
.g-item img{width:100%; height:100%; object-fit:cover; aspect-ratio: 4/3}
.g-item .label{
  position:absolute; left:12px; bottom:12px;
  padding:8px 10px;
  border-radius: 999px;
  background: rgba(11,16,32,.65);
  border:1px solid rgba(255,255,255,.14);
  font-size: 13px;
  color: var(--text);
  backdrop-filter: blur(10px);
}

/* Modal */
.modal{
  position:fixed; inset:0; z-index:50;
  display:none;
  place-items:center;
  padding: 18px;
  background: rgba(0,0,0,.62);
}
.modal.open{display:grid}
.modal-card{
  width:min(1100px, 100%);
  border-radius: var(--radius2);
  overflow:hidden;
  background: rgba(11,16,32,.92);
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
}
.modal-top{
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.modal-title{color:var(--muted); font-size:14px}
.modal-close{background:transparent; border:1px solid rgba(255,255,255,.16); color:var(--text); border-radius:14px; padding:10px 12px; cursor:pointer}
.modal-media{background: rgba(255,255,255,.06)}
.modal-media img{width:100%; height:auto}

/* Contact */
.form{
  display:grid; gap:12px;
}
.field{display:grid; gap:6px}
.label{font-size:13px; color:var(--muted)}
.input,
.textarea{
  width:100%;
  padding: 12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
}
.textarea{min-height: 160px; resize: vertical}
.input:focus, .textarea:focus{border-color: rgba(124,92,255,.55); box-shadow: 0 0 0 4px rgba(124,92,255,.18)}
.help{font-size:13px; color:var(--muted)}
.alert{
  border-radius: 16px;
  padding: 12px 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--muted);
}
.alert.ok{border-color: rgba(46,229,157,.35); background: rgba(46,229,157,.10)}
.alert.bad{border-color: rgba(255,102,102,.35); background: rgba(255,102,102,.10)}

/* Footer */
.footer{
  padding: 26px 0 40px;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(11,16,32,.35);
}
.footer-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start}
.small{color:var(--muted); font-size:13px}
.footer-logos{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.footer-logos img{height:34px; width:auto; opacity:.9; border-radius:10px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04); padding:6px}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;}
  .hero-stats{grid-template-columns: 1fr 1fr}
  h1{font-size:38px}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .g-item{grid-column: span 6}
  .footer-grid{grid-template-columns: 1fr}
}
@media (max-width: 720px){
  .nav-toggle{display:inline-flex}
  .nav{
    position:fixed; left:14px; right:14px; top:70px;
    display:none; flex-direction:column; align-items:stretch;
    padding: 10px;
    border-radius: var(--radius2);
    background: rgba(11,16,32,.92);
    border:1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{padding:12px 12px}
  .hero{padding-top: 40px}
  .hero-stats{grid-template-columns: 1fr}
  .g-item{grid-column: span 12}
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .btn{transition:none}
}
