:root {
  --bg-black: #0c0c0d;
  --bg-deep: #0c0c0d;
  --text: #ffffff;
  --muted: #ffffff;
  --accent: #ff5f1f;
  --glow: #b6f3ff;
}

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

body {
  background: #0c0c0d;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.shell {
  width: 100%;
  max-width: none;
  padding-inline: clamp(1rem, 3vw, 2rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #0c0c0d;
  border-bottom: 0;
}

.nav-row {
  min-height: 102px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-block: 0;
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  height: 100%;
  color: var(--accent);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  font-size: clamp(0.92rem, 2.8vw, 1.1rem);
  line-height: 1;
  text-align: left;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(39px, 4.3vw, 56px);
}

.mobile-nav {
  display: block;
  grid-column: 3;
  justify-self: end;
  text-align: right;
  align-self: center;
  line-height: 1;
}

.mobile-nav .nav-item {
  display: inline-block;
  text-decoration: none;
  color: var(--accent);
  font-size: clamp(0.92rem, 2.8vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0;
  margin: 0 0.45rem;
  line-height: 1;
  position: relative;
  padding-bottom: 0.2rem;
}

.mobile-nav .nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 180ms ease;
}

.mobile-nav .nav-item:hover {
  color: var(--accent);
}

.mobile-nav .nav-item:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 2.2rem;
  height: 2.2rem;
  position: relative;
  border: 0;
  background: transparent;
  padding: 0;
  justify-self: end;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.44rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.6rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform-origin: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 40px;
  display: grid;
  align-items: center;
}

.video-slot {
  position: absolute;
  inset: 0;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-slot span {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
  padding-block: clamp(3.2rem, 7vw, 5.6rem);
  transform: translateY(clamp(-34px, -3.4vh, -18px));
}

.hero h1,
.glow-title {
  position: relative;
  display: inline-block;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.96;
  color: #ffffff;
  text-shadow: 0 0 10px rgba(182, 243, 255, 0.62), 0 0 22px rgba(182, 243, 255, 0.28);
  animation: glowPulse 3.2s ease-in-out infinite;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}


.hero h1:hover,
.glow-title:hover {
  transform: translate3d(0, -3px, 0) scale(1.012);
  filter: brightness(1.08);
}

.partner .glow-title:hover {
  transform: translate3d(0, -3px, 0) scale(1.012);
  filter: brightness(1.08);
}

.hero h1 {
  font-size: clamp(4.2rem, 10vw, 9.2rem);
}

.hero p {
  margin-top: 1rem;
  font-weight: 800;
  font-size: clamp(1.1rem, 2.2vw, 1.9rem);
}

.hero-cta {
  margin-top: 1.25rem;
  width: min(100%, 620px);
}

.oval-btn {
  margin: 2rem auto 0;
  width: min(100%, 760px);
  min-height: 72px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.oval-btn.hero-cta,
.oval-btn.oval-btn-accent {
  border-color: var(--accent);
  color: var(--accent);
  background: transparent;
  width: min(100%, 620px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), width 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease, background-color 260ms ease;
}

.oval-btn.hero-cta:hover,
.oval-btn.hero-cta:focus-visible,
.oval-btn.oval-btn-accent:hover,
.oval-btn.oval-btn-accent:focus-visible {
  width: min(100%, 690px);
  transform: translateY(-1px) scale(1.015);
  background: rgba(255, 95, 31, 0.08);
  box-shadow: 0 0 24px rgba(255, 95, 31, 0.28);
}

.oval-btn:hover {
  opacity: 0.9;
}

.about {
  background: var(--bg-deep);
  text-align: center;
  padding: clamp(3.4rem, 8vw, 5rem) 0 3.2rem;
}

.about h2 {
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
}

.about-text {
  max-width: 1100px;
  margin-inline: auto;
  padding-top: clamp(1rem, 3vw, 1.8rem);
  padding-bottom: clamp(1.8rem, 5vw, 3rem);
}

.about-text .glow-title {
  white-space: normal;
  text-wrap: balance;
}

.about-copy {
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: clamp(0.96rem, 1.45vw, 1.25rem);
  line-height: 1.35;
  color: #ffffff;
}

.about-copy-single-line {
  white-space: normal;
  font-size: clamp(0.96rem, 1.45vw, 1.25rem);
}

.about-copy-emphasis {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.about-copy strong {
  font-weight: 800;
}

.about-copy em {
  font-style: italic;
}

.about-highlight {
  margin-top: 1rem;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  font-weight: 700;
}

.image-slot {
  --mx: 0px;
  --my: 0px;
  margin-top: clamp(2rem, 6vw, 3.2rem);
  width: min(100% - clamp(3rem, 8vw, 8rem), 1700px);
  margin-inline: auto;
  height: min(88vh, 52vw);
  position: relative;
  overflow: hidden;
  background: #12181a;
  border-radius: 6px;
}

.image-slot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-slot::after {
  content: "";
  position: absolute;
  inset: -35%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.17;
  mix-blend-mode: soft-light;
  background-image:
    repeating-radial-gradient(circle at 25% 35%, rgba(255, 255, 255, 0.34) 0 0.65px, rgba(0, 0, 0, 0.32) 0.65px 1.3px),
    repeating-radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.28) 0 0.55px, rgba(0, 0, 0, 0.28) 0.55px 1.1px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 1px, rgba(0, 0, 0, 0.08) 1px 2px);
  background-size: 72px 72px, 58px 58px, 100% 3px;
  animation: grainDrift 5.2s linear infinite, grainRapid 95ms steps(4) infinite, softFlicker 2.8s steps(3) infinite;
  transform: translate(calc(var(--mx) * 0.5), calc(var(--my) * 0.5));
  transition: transform 35ms linear;
  will-change: background-position, opacity, transform;
  filter: none;
}

.image-slot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 4px
    );
  mix-blend-mode: soft-light;
  opacity: 0.06;
  animation: scanFloat 12s linear infinite, gateWeave 6.2s ease-in-out infinite;
  transform: translate(calc(var(--mx) * 0.2), calc(var(--my) * 0.2));
  transition: transform 45ms linear;
}

@keyframes grainDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  33% {
    background-position: -11px 8px, 8px -6px, 0 0;
  }
  66% {
    background-position: 8px -9px, -9px 7px, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
}

@keyframes scanFloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 220px;
  }
}

@keyframes softFlicker {
  0% {
    opacity: 0.09;
  }
  35% {
    opacity: 0.13;
  }
  70% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.11;
  }
}

@keyframes grainRapid {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }
  25% {
    background-position: 4px -5px, -5px 4px, 0 0;
  }
  50% {
    background-position: -3px 4px, 4px -3px, 0 0;
  }
  75% {
    background-position: 5px 3px, -4px -5px, 0 0;
  }
  100% {
    background-position: 0 0, 0 0, 0 0;
  }
}

@keyframes gateWeave {
  0% {
    background-position: 0 0;
  }
  25% {
    background-position: 0 1px;
  }
  50% {
    background-position: 0 -1px;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px rgba(182, 243, 255, 0.5), 0 0 16px rgba(182, 243, 255, 0.2);
  }
  50% {
    text-shadow: 0 0 14px rgba(182, 243, 255, 0.72), 0 0 28px rgba(182, 243, 255, 0.34);
  }
  100% {
    text-shadow: 0 0 8px rgba(182, 243, 255, 0.5), 0 0 16px rgba(182, 243, 255, 0.2);
  }
}

@keyframes glowPulseMobile {
  0% {
    text-shadow: 0 0 4px rgba(182, 243, 255, 0.2), 0 0 9px rgba(182, 243, 255, 0.07);
  }
  50% {
    text-shadow: 0 0 8px rgba(182, 243, 255, 0.31), 0 0 15px rgba(182, 243, 255, 0.12);
  }
  100% {
    text-shadow: 0 0 4px rgba(182, 243, 255, 0.2), 0 0 9px rgba(182, 243, 255, 0.07);
  }
}

.partner {
  padding: clamp(3.5rem, 9vw, 6rem) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-deep);
}

.partner h2 {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 6.8vw, 6.2rem);
}

.accent-underline {
  text-decoration: none;
  color: inherit;
}

.no-wrap {
  white-space: nowrap;
}

.oval-btn-accent {
  margin-top: 2rem;
}

.site-footer {
  background: var(--bg-deep);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  text-align: left;
  padding: clamp(2.8rem, 7vw, 4.8rem) clamp(1rem, 3vw, 2rem);
}

.copyright {
  color: var(--accent);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(0.92rem, 2.8vw, 1.1rem);
  letter-spacing: -0.015em;
}

.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
}

.socials a {
  width: 1.95rem;
  height: 1.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.socials a svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: currentColor;
}

.socials a:hover {
  color: #ffffff;
}

.email {
  justify-self: end;
  text-align: right;
  color: var(--accent);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(0.92rem, 2.8vw, 1.1rem);
  letter-spacing: -0.015em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .shell {
    padding-inline: 1rem;
  }

  .nav-row {
    min-height: 102px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    row-gap: 0;
    padding-block: 0;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
    align-self: center;
    text-align: left;
    padding-inline: 0;
    white-space: nowrap;
    font-size: clamp(1rem, 5.2vw, 1.55rem);
    letter-spacing: 0.015em;
  }

  .brand img {
    height: clamp(45px, 5vw, 64px);
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
    z-index: 12;
  }

  .mobile-nav {
    position: fixed;
    top: 102px;
    left: 0;
    width: 100vw;
    height: calc(100dvh - 102px);
    min-height: calc(100dvh - 102px);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.95rem;
    padding: 7.2rem 1.25rem 2rem;
    background: #0c0c0d;
    opacity: 0;
    pointer-events: none;
    transform: translateY(0);
    transition: opacity 220ms ease;
  }

  .site-header.is-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav .nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: min(88vw, 430px);
    min-height: 58px;
    padding: 0.75rem 1.1rem;
    border: 2px solid var(--accent);
    border-radius: 999px;
    font-size: clamp(1.05rem, 4.8vw, 1.45rem);
    text-align: center;
    letter-spacing: 0.03em;
    color: var(--accent);
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    background: transparent;
  }

  .mobile-nav .nav-item::after {
    display: none;
  }

  .mobile-nav .nav-item:hover {
    color: var(--accent);
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-toggle span {
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .hero-content {
    padding: 0;
    transform: none;
    min-height: calc(100svh - 102px);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 0.9rem;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 11vw, 6.6rem);
  }

  .hero h1,
  .glow-title {
    text-shadow: 0 0 6px rgba(182, 243, 255, 0.27), 0 0 13px rgba(182, 243, 255, 0.1);
    animation-name: glowPulseMobile;
  }

  .about-copy {
    font-size: clamp(0.95rem, 2.6vw, 1.1rem);
  }

  .about-text .glow-title {
    white-space: normal;
    font-size: clamp(1.8rem, 7.3vw, 3rem);
    line-height: 1;
  }

  .partner h2 {
    font-size: clamp(1.8rem, 7.3vw, 3rem);
    line-height: 1;
  }

  .image-slot {
    height: min(78vh, 92vw);
    min-height: 0;
  }
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .shell {
    padding-inline: 0.75rem;
  }

  .hero {
    min-height: calc(100svh - 102px);
  }

  .hero-content {
    min-height: calc(100svh - 102px);
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .brand {
    font-size: clamp(0.92rem, 5vw, 1.28rem);
  }

  .mobile-nav .nav-item {
    font-size: 0.92rem;
  }

  .oval-btn {
    min-height: 58px;
  }

  .email {
    line-height: 1;
    word-break: break-word;
  }
}

@media (max-width: 1120px) {
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1rem;
  }

  .copyright,
  .email {
    text-align: center;
    justify-self: center;
  }
}
