:root{
  --bg:#0b1220;
  --card:#101a2e;
  --text:#e6eefc;
  --muted:#a9b7d1;
  --accent:#4aa3ff;
  --accent2:#7c5cff;
  --ring:rgba(74,163,255,.35);
  --shadow: 0 20px 50px rgba(0,0,0,.45);
  --radius: 18px;
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 700px at 90% 10%, rgba(74,163,255,.25), transparent 55%),
    linear-gradient(180deg, #070b14, var(--bg) 40%, #060a12);
  line-height:1.5;
}

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

.container{ width:min(var(--max), calc(100% - 48px)); margin:0 auto; }

header{
  position:sticky;
  top:0;
  z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.62);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 0 6px rgba(74,163,255,.10);
}

.navlinks{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.navlinks a{
  color:var(--muted);
  padding:10px 14px;
  border-radius:999px;
  background: transparent;
  box-shadow:none;
  transition: background-color .15s ease, color .15s ease, box-shadow .15s ease, transform .08s ease;
}

/* Hover = clearly "lit" */
.navlinks a:hover,
.navlinks a:focus-visible{
  color:var(--text);
  background: rgba(255,255,255,.16);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transform: translateY(-1px);
  text-decoration:none;
  outline:none;
}

/* Active page: subtle (not always "on") */
.navlinks a.active{
  color:var(--text);
  background: rgba(255,255,255,.06);
  box-shadow:none;
  text-decoration:none;
}
.hero{
  padding:56px 0 20px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
}

@media (max-width: 900px){
  .heroGrid{ grid-template-columns:1fr; }
}

.card{
  background: rgba(16,26,46,.75);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.heroText{
  padding:28px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size:14px;
  letter-spacing:.2px;
  padding:8px 12px;
  background: rgba(255,255,255,.06);
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.08);
}
.kicker span{
  color: var(--text);
  font-weight:600;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(32px, 4vw, 46px);
  line-height:1.12;
}
.sub{
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch;
  margin: 0 0 18px;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 6px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight:600;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease,
              box-shadow .15s ease, transform .08s ease, filter .15s ease;
}

/* "Primary" should NOT look permanently lit — just a slightly stronger border */
.btn.primary{
  background: rgba(255,255,255,.06);
  border-color: rgba(74,163,255,.45);
  box-shadow: none;
}

.btn:hover,
.btn:focus-visible{
  text-decoration:none;
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
  transform: translateY(-1px);
  outline:none;
}

/* On hover/focus, primary gets the gradient "lit up" look */
.btn.primary:hover,
.btn.primary:focus-visible{
  background: linear-gradient(135deg, rgba(74,163,255,.95), rgba(124,92,255,.95));
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(74,163,255,.22);
}

.btn:focus-visible{
  box-shadow: 0 0 0 5px var(--ring), 0 8px 18px rgba(0,0,0,.18);
}
.heroImage{
  overflow:hidden;
  position:relative;
}
.heroImage img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 1 / 1;
}
.badge{
  position:absolute;
  left:16px;
  bottom:16px;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(11,18,32,.68);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 13px;
}
.badge strong{ color: var(--text); }

.section{
  padding: 26px 0 60px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
@media (max-width: 900px){
  .grid3{ grid-template-columns:1fr; }
}

.smallCard{
  padding:18px 18px 16px;
}
.smallCard h3{ margin: 6px 0 8px; }
.smallCard p{ margin:0; color:var(--muted); }

footer{
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 26px 0 44px;
  color: var(--muted);
}

.pageTitle{
  padding: 34px 0 12px;
}
.pageTitle h2{ margin:0; font-size: 30px; }
.pageTitle p{ margin:8px 0 0; color: var(--muted); max-width: 65ch; }

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  padding: 16px 0 60px;
}
.gItem{
  grid-column: span 6;
  overflow:hidden;
}
.gItem.wide{ grid-column: span 12; }
.gItem img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 16 / 9;
}
@media (max-width: 900px){
  .gItem{ grid-column: span 12; }
}

.form{
  padding: 18px;
  display:grid;
  gap:12px;
}
label{ font-size: 14px; color: var(--muted); }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  font-family: var(--font);
}
textarea{ min-height: 140px; resize: vertical; }
.note{
  color: var(--muted);
  font-size: 13px;
}
