* { margin: 0; box-sizing: border-box; }
body {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  background: rgb(0,0,0);
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.6) 70.72%, rgba(243,107,33,0.55) 178.74%);
  z-index: 1;
}
.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.6vw, 40px) clamp(24px, 4.3vw, 82px);
  box-sizing: border-box;
}
a { color: rgb(255,255,255); text-decoration: none; }
a:hover { color: rgb(243,111,33); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.d0 { animation-delay: 0s; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.35s; }
.d4 { animation-delay: 0.5s; }
.d5 { animation-delay: 0.6s; }
.d6 { animation-delay: 0.65s; }
.d7 { animation-delay: 0.7s; }
.d8 { animation-delay: 0.75s; }

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 3.5vw, 56px);
  max-width: 1086px;
}
.logo { width: clamp(140px, 11.2vw, 215px); height: auto; display: block; }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(24px, 3vw, 48px);
  padding: clamp(20px, 4vw, 60px) 16px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
}
.heading {
  width: 100%;
  max-width: 780px;
  height: auto;
  display: block;
  margin: 0 auto;
}
p {
  margin: 0 auto;
  max-width: 679px;
  font-weight: 300;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.5;
  color: rgb(255,255,255);
}
.cta {
  font-weight: 700;
  font-size: clamp(14px, 0.83vw, 16px);
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.9vw, 56px);
  flex-wrap: wrap;
  padding-top: clamp(16px, 2vw, 32px);
}
.footer span {
  font-weight: 600;
  font-size: clamp(12px, 0.73vw, 14px);
  color: rgb(243,111,33);
}
