*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #09090f;
  --red: #c8102e;
  --white: #fff;
  --cream: #e8e5de;
  --gold: #b8965a;
  --f-disp: "Barlow Condensed", sans-serif;
  --f-sans: "Barlow", sans-serif;
  --f-body: "Inter", sans-serif;
}

html,
body {
  height: 100%;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
  font-family: Montserrat, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── BACKGROUND ── */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgb(9 9 15 / 62%);
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 15% 60%,
      rgb(200 16 46 / 10%) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 60% 80% at 85% 30%,
      rgb(184 150 90 / 6%) 0%,
      transparent 55%
    );
}

/* ── LAYOUT ── */
.splash {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 32px max(5vw, 24px);
}

/* ── TOP BAR ── */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.2s forwards;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 74px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-toggle button {
  background: none;
  border: none;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgb(255 255 255 / 35%);
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}

.lang-toggle button.active {
  color: var(--white);
}

.lang-toggle button:hover {
  color: rgb(255 255 255 / 70%);
}

.lang-toggle span {
  color: rgb(255 255 255 / 15%);
  font-size: 0.625rem;
}

/* ── CENTRE ── */
.centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}

.eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.6s forwards;
}

.headline {
  font-size: clamp(3.25rem, 9vw, 7.125rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--white);
  max-width: 960px;
  margin-bottom: 56px;
  text-shadow: 0 2px 40px rgb(0 0 0 / 50%);
}

/* Letter-by-letter animation */
.word-group {
  display: inline-block;
  white-space: nowrap;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
}

.cta-wrap {
  opacity: 0;
  animation: fadeUp 0.8s ease 2.6s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.btn-enter {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 44px;
  border: 2px solid rgb(255 255 255 / 25%);
  border-radius: 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.btn-enter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-enter:hover {
  border-color: var(--red);
}

.btn-enter:hover::before {
  transform: translateX(0);
}

/* shine sweep element */
.btn-enter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgb(200 16 46 / 75%) 50%,
    transparent 80%
  );
  transform: translateX(-200%);
  z-index: 2;
  pointer-events: none;
}

@keyframes btnShine {
  from {
    transform: translateX(-200%);
  }

  to {
    transform: translateX(200%);
  }
}

@keyframes arrowNudge {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0);
  }
}

.btn-enter.pulse::after {
  animation: btnShine 2.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.btn-enter.pulse svg {
  animation: arrowNudge 0.55s ease 1.2s both;
}

.btn-enter span,
.btn-enter svg {
  position: relative;
  z-index: 1;
}

/* ── BOTTOM ── */
.bottom-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  opacity: 0;
  animation: fadeIn 0.8s ease 2.2s forwards;
}

.since {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: rgb(255 255 255 / 18%);
}

.since strong {
  color: rgb(255 255 255 / 35%);
}

.scroll-nudge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.scroll-nudge span {
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgb(255 255 255 / 20%);
}

.scroll-nudge-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgb(255 255 255 / 30%), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

/* ── KEYFRAMES ── */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.9;
  }
}

/* ── RESPONSIVE ── */
@media (width <= 600px) {
  .logo-type .full {
    display: none;
  }

  .bottom-bar .since {
    display: none;
  }
}
