:root{
  --bg:#0b1220;
  --card:#121c33;
  --text:#eaf0ff;
  --muted:rgba(234,240,255,.72);
  --accent:#7c5cff;
  --accent2:#33d6ff;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}

*{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 10% -10%, rgba(124,92,255,.35), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(51,214,255,.25), transparent 50%),
    var(--bg);
  color:var(--text);
}

.container{max-width:1100px;margin:0 auto;padding:0 20px}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.7);
  border-bottom:1px solid var(--border);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  text-decoration:none; color:var(--text); font-weight:700;
}
.brand-dot{
  width:12px; height:12px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 5px rgba(124,92,255,.15);
}
.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); text-decoration:none}
.nav a:hover{color:var(--text)}

.hero{padding:44px 0 18px}
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:center;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .hero-media{order:-1}
}
.hero-copy h1{
  font-size: clamp(28px, 3.4vw, 46px);
  line-height:1.05;
  margin:0 0 14px;
}
.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lead{color:var(--muted); font-size: 16px; line-height:1.6; margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color:var(--text);
  text-decoration:none;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.07)}
.btn-primary{
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(51,214,255,.75));
}
.btn-ghost{background: transparent}

.trust-row{
  margin-top:18px;
  display:flex; gap:14px; flex-wrap:wrap;
}
.trust{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}
.trust img{width:18px; height:18px; opacity:.95}

.hero-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  box-shadow: var(--shadow);
  padding:14px;
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.hero-img{
  width:100%;
  height: 250px;
  object-fit: cover;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
}
.hero-img-2{height: 190px}

.section{padding:54px 0}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 55%);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
h2{margin:0 0 10px; font-size: 28px}
.sub{margin:0 0 22px; color:var(--muted); line-height:1.7}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 950px){ .cards{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 650px){ .cards{grid-template-columns: 1fr} }

.card{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); line-height:1.6}

.callout{
  margin-top:18px;
  padding:18px;
  border-radius:20px;
  border:1px solid rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.18), rgba(51,214,255,.10));
}
.callout-inner{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.callout-text h3{margin:0 0 6px}
.callout-text p{margin:0; color:var(--muted); line-height:1.6}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
@media (max-width: 950px){ .gallery{grid-template-columns: repeat(2, 1fr)} }
.gitem{
  margin:0;
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.gitem img{
  width:100%; height:210px; object-fit:cover; display:block;
  transform: scale(1.01);
  transition: transform .25s ease;
}
.gitem:hover img{transform: scale(1.06)}

.form{
  border:1px solid var(--border);
  border-radius:22px;
  background: rgba(255,255,255,.03);
  padding:18px;
}
.form .grid2{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
@media (max-width: 700px){ .form .grid2{grid-template-columns: 1fr} }

label{display:flex; flex-direction:column; gap:8px; margin-bottom:14px}
label span{color:var(--muted); font-size: 13px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(11,18,32,.35);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color: rgba(234,240,255,.45)}
textarea{resize: vertical; min-height:120px}

.form-actions{
  display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap;
}
.fineprint{color:var(--muted); font-size: 13px}

.site-footer{
  border-top:1px solid var(--border);
  padding:26px 0;
  margin-top:30px;
}
.footer-inner{
  display:flex; align-items:flex-start; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.footer-brand{font-weight:700}
.footer-meta{color:var(--muted); margin-top:6px}
.footer-links{display:flex; gap:16px; flex-wrap:wrap}
.footer-links a{color:var(--muted); text-decoration:none}
.footer-links a:hover{color:var(--text)}
