@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@400;700;800;900&display=swap');

:root{
  --bg: #0b1020;
  --card: rgba(255,255,255,.06);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: "Heebo", system-ui, -apple-system, Segoe UI, Arial;
  background: radial-gradient(1200px 800px at 10% 10%, rgba(124,58,237,.15), transparent 60%),
              radial-gradient(900px 700px at 80% 20%, rgba(34,197,94,.10), transparent 60%),
              var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; height:auto; }

.container{
  width: min(1100px, calc(100% - 34px));
  margin-inline:auto;
}

.section{
  padding: 64px 0;
}

.section-head{
  margin-bottom: 18px;
}
.section-head h2{
  margin:0 0 6px;
  font-size: clamp(22px, 3vw, 32px);
}
.section-head p{
  margin:0;
  color: var(--muted);
  font-weight:700;
}

/* Background blobs */
.bg{ position:fixed; inset:0; z-index:-1; }
.blob{
  position:absolute;
  width: 420px;
  height: 420px;
  filter: blur(40px);
  opacity:.7;
  border-radius: 999px;
}
.b1{ right:-120px; top: 80px; background: rgba(124,58,237,.35); }
.b2{ left:-160px; top: 260px; background: rgba(34,197,94,.22); }
.b3{ left: 30%; bottom:-180px; background: rgba(6,182,212,.18); }
.grid{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity:.12;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 60%);
}

/* Glass */
.glass{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hover{ transition: transform .18s ease, border-color .18s ease; }
.hover:hover{ transform: translateY(-4px); border-color: rgba(255,255,255,.22); }

/* Nav + Hero */
.hero{ padding: 24px 0 50px; }
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 999px;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
}
.brand-dot{
  width: 12px; height:12px; border-radius:999px;
  background: rgba(34,197,94,.9);
  box-shadow: 0 0 18px rgba(34,197,94,.35);
}
.nav-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content:flex-start;
  font-weight: 800;
  color: rgba(255,255,255,.86);
}
.nav-links a{ padding: 8px 10px; border-radius: 999px; }
.nav-links a:hover{ background: rgba(255,255,255,.06); }
.pill{ background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }

.hero-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}

.hero-card{ padding: 22px; }
.kicker{
  margin:0 0 8px;
  color: rgba(255,255,255,.72);
  font-weight: 900;
  letter-spacing:.06em;
}
.hero-card h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.08;
}
.accent{
  background: linear-gradient(90deg, rgba(124,58,237,.95), rgba(6,182,212,.85));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin:0 0 14px;
  color: var(--muted);
  font-weight: 700;
  line-height:1.6;
}

.cta{ display:flex; gap:10px; flex-wrap:wrap; margin: 12px 0 10px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.btn:hover{ border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.10); }
.primary{
  background: linear-gradient(135deg, rgba(124,58,237,.95), rgba(6,182,212,.85));
  border-color: rgba(255,255,255,.18);
}
.ghost{ background: rgba(255,255,255,.06); }
.soft{ background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.22); }

.quick{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px; }
.chip{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 800;
}
.chip a{ text-decoration: underline; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.card{ padding: 16px; }
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color: var(--muted); font-weight:700; line-height:1.6; }

.timeline{ padding: 10px; }
.step{
  display:flex;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin: 10px;
}
.badge{
  width: 32px; height:32px; border-radius: 12px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(124,58,237,.25);
  border: 1px solid rgba(124,58,237,.35);
  font-weight: 900;
}

/* Contact */
.contact{ padding: 18px; }
.contact h2{ margin:0 0 6px; }
.contact p{ margin:0 0 12px; color: var(--muted); font-weight:700; }
.contact-row{ display:flex; gap:10px; flex-wrap:wrap; }
.contact-meta{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px; }
.meta{ color: rgba(255,255,255,.82); font-weight: 800; }

/* Footer */
.footer{
  padding: 22px 0;
  color: rgba(255,255,255,.72);
}
.footer-inner{
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
}
.sep{ opacity:.4; }

/* ===== HERO IMAGE (Portrait) ===== */
.hero-media{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.portrait{
  position:relative;
  overflow:hidden;
  padding: 12px;
  transform: translate3d(0,0,0);
  animation: portraitFloat 6.5s ease-in-out infinite;
}
@keyframes portraitFloat{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.portrait img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  display:block;
  border: 1px solid rgba(255,255,255,.10);
}

.portrait-glow{
  position:absolute;
  inset:-60px;
  background:
    radial-gradient(520px 220px at 20% 15%, rgba(124,58,237,.22), transparent 55%),
    radial-gradient(420px 220px at 85% 25%, rgba(34,197,94,.16), transparent 60%);
  opacity:1;
  pointer-events:none;
}

.portrait-badge{
  position:absolute;
  left: 18px;
  bottom: 18px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-weight: 900;
  letter-spacing:.06em;
  font-size: 12px;
}
.portrait-badge .dot{
  width:10px; height:10px; border-radius:999px;
  background: rgba(34,197,94,.95);
  box-shadow: 0 0 16px rgba(34,197,94,.35);
}

.hero-side{ display:grid; gap: 10px; }
.stat{ padding: 14px; }
.stat-num{ font-weight: 900; font-size: 18px; }
.stat-text{ color: var(--muted); font-weight: 700; }

/* ===== MEDIA GRID (Videos/Instagram) ===== */
.media-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.media-card{ overflow:hidden; }

.media-frame{
  position:relative;
  width:100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.media-frame iframe{ width:100%; height:100%; display:block; }

.media-meta{ padding: 14px 16px 18px; }
.media-meta h3{ margin:0 0 6px; font-size: 16px; }
.media-meta p{ margin:0; color: var(--muted); font-weight:700; }

.media-card.insta{ padding: 16px; }
.insta-top{ display:flex; align-items:center; gap: 12px; margin-bottom: 12px; }
.insta-icon{
  width:46px; height:46px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(124,58,237,.85), rgba(6,182,212,.7));
  border: 1px solid rgba(255,255,255,.14);
}
.insta-note{ margin: 12px 0 0; color: var(--muted); font-weight: 700; }

/* ===== GALLERY ===== */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.g-item{
  position:relative;
  border: 0;
  padding: 0;
  cursor:pointer;
  border-radius: 22px;
  overflow:hidden;
  background: transparent;
  outline: none;
  box-shadow: var(--shadow);
}

.g-item img{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .25s ease;
}

.g-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding: 14px;
  color: rgba(255,255,255,.92);
  font-weight: 900;
  letter-spacing:.06em;
  opacity:0;
  transition: opacity .2s ease;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
}

.g-item:hover img{ transform: scale(1.06); }
.g-item:hover .g-overlay{ opacity:1; }

/* ===== Lightbox ===== */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.78);
  z-index: 9999;
  padding: 22px;
}
.lightbox.is-open{ display:flex; }
.lb-img{
  max-width: min(1100px, 95vw);
  max-height: 85vh;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}
.lb-close{
  position:fixed;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: white;
  font-size: 18px;
  cursor:pointer;
}
.lb-close:hover{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}

/* Responsive */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .media-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .portrait img{ height: 300px; }
  .nav-links{ display:none; }
}
