:root{
  --bg: #070a10;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --line: rgba(255,255,255,.14);
  --glass: rgba(255,255,255,.12);
  --glass2: rgba(0,0,0,.22);
  --accent1: #7c5cff;
  --accent2: #22d3ee;
  --shadow: 0 22px 80px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container{
  width: min(980px, 92vw);
  margin: 0 auto;
}

.hero{
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  filter: contrast(1.08) saturate(1.12);
}

.hero__shade{
  position:absolute;
  inset:0;
  /* Lighter overlay so the photo stays visible */
  background:
    linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.38) 65%, rgba(0,0,0,.55) 100%),
    radial-gradient(900px 520px at 50% 30%, rgba(0,0,0,.10), transparent 65%),
    radial-gradient(820px 520px at 30% 20%, rgba(124,92,255,.10), transparent 60%),
    radial-gradient(720px 520px at 70% 30%, rgba(34,211,238,.08), transparent 60%);
}

.hero__content{
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 42px 0;
}

.hero__panel{
  display: inline-block;
  padding: 26px 26px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  max-width: 860px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,.82);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

h1{
  margin: 18px 0 10px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.sub{
  margin: 0 auto 22px;
  max-width: 60ch;
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

.actions{
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration:none;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
  box-shadow: 0 10px 36px rgba(0,0,0,.25);
}

.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn--primary{
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  border-color: rgba(255,255,255,.14);
}

.btn--glass{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.contact{
  margin-top: 10px;
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.contact__label{
  color: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact__value{
  color: rgba(255,255,255,.95);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255,255,255,.35);
}
.contact__value:hover{
  border-bottom-color: rgba(255,255,255,.78);
}

.note{
  margin-top: 18px;
  color: rgba(255,255,255,.70);
  font-weight: 700;
  font-size: 14px;
}

.scroll-hint{
  position:absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(10px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top: 8px;
}

.scroll-dot{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  animation: bob 1.2s ease-in-out infinite;
}

@keyframes bob{
  0%,100%{ transform: translateY(0); opacity:.65; }
  50%{ transform: translateY(10px); opacity:1; }
}

@media (max-width: 520px){
  .hero{ min-height: 560px; }
  .hero__panel{ padding: 22px 18px 18px; border-radius: 20px; }
  .btn{ width: 100%; }
  .actions{ width: 100%; }
  .contact{ width: 100%; justify-content:center; }
}