:root{
  --bg: #05070C;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --line: rgba(255,255,255,.14);
  --radius: 14px;

  --chipBg: rgba(255,255,255,.08);
  --chipBorder: rgba(255,255,255,.16);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

.hero{
  position:relative;
  min-height: 100vh;
  overflow:hidden;
}

.heroVideo{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  background:#000;
  transform: scale(1.01);
}

.pageOverlay{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.06) 0%,
      rgba(0,0,0,.24) 55%,
      rgba(5,7,12,.95) 100%
    );
}

/* Top-right chip only */
.topbar{
  position:relative;
  z-index:2;
  display:flex;
  justify-content:flex-end;
  padding: 18px 18px;
}

.chip{
  font-size:12px;
  padding:8px 10px;
  border-radius:999px;
  background: var(--chipBg);
  border: 1px solid var(--chipBorder);
  color: var(--muted);
  backdrop-filter: blur(10px);
}

/* Bottom reveal */
.heroBottom{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 0 18px 18px;
  z-index:2;
}

.heroReveal{
  max-width: 980px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  opacity:0;
  transform: translateY(10px);
  transition: opacity .75s ease, transform .75s ease;
  pointer-events:none;
}
.heroReveal.revealed{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}

/* The extra polish divider */
.divider{
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0),
    rgba(255,255,255,.28),
    rgba(255,255,255,0)
  );
  margin-bottom: 14px;

  /* tiny glow, very subtle */
  box-shadow: 0 0 18px rgba(255,255,255,.06);
}

.metaStack{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.metaTitle{
  font-size: 13px;
  color: rgba(255,255,255,.82);
  letter-spacing: .2px;
}

.metaSub{
  font-size: 13px;
  color: var(--muted);
}

.metaLink{
  margin-top: 4px;
  width: fit-content;
  color: var(--text);
  text-decoration:none;
  font-weight:600;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 2px;
}
.metaLink:hover{
  border-bottom-color: rgba(255,255,255,.42);
}

/* CONTACT SECTION */
.contact{
  background: var(--bg);
  padding: 56px 18px 72px;
}

.container{
  max-width: 980px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.contactHeader h2{
  margin:0;
  font-size: 16px;
  font-weight:600;
}
.contactHeader p{
  margin:8px 0 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 640px;
}

.form{
  margin-top: 18px;
  display:grid;
  gap: 12px;
}

.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}

label{
  display:block;
  font-size: 12px;
  color: var(--muted);
  margin-bottom:6px;
}

input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline:none;
  font-size: 14px;
}
input:focus, textarea:focus{
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
}

textarea{
  min-height: 120px;
  resize: vertical;
}

.actions{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap:wrap;
  margin-top: 6px;
}

button{
  border:none;
  cursor:pointer;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text);
  font-weight:600;
  transition: transform .2s ease, background .2s ease;
}
button:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.14);
}

.alt, .alt a{
  font-size: 12px;
  color: var(--muted);
  text-decoration:none;
}
.alt a{
  border-bottom: 1px dashed rgba(255,255,255,.25);
}
.alt a:hover{
  color: var(--text);
  border-bottom-color: rgba(255,255,255,.45);
}

.footer{
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: var(--muted);
  font-size: 12px;
}

/* Autoplay fallback */
.playOverlay{
  position:absolute;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:3;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.playOverlay.show{ display:flex; }
.playOverlay button{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

/* Mobile */
@media (max-width: 760px){
  .grid2{ grid-template-columns: 1fr; }
}