﻿@charset "UTF-8";
html {
  font-size: 16px;
  position: relative;
  min-height: 100%;
}

body {
  background-color: #f5f5f5;
  color: #0d0d0d;
  font-family: "Segoe UI", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-optical-sizing: auto;
  font-style: normal;
}

.rv-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.rv-body--dark {
  background-color: #0d0d0d;
  color: #f5f5f5;
}

.btn:focus, .btn:active:focus, .form-control:focus, .form-control:active:focus, .form-check-input:focus, .form-check-input:active:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #c0392b;
}

a {
  color: white;
}
a:hover, a:focus {
  color: white;
}

.rv-button,
button:not([class]),
input[type=button],
input[type=submit],
input[type=reset],
a.rv-button {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 245, 245, 0.25);
  background-color: transparent;
  color: rgba(245, 245, 245, 0.45);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
  text-align: center;
  line-height: 1.5;
}
.rv-button:hover, .rv-button:focus-visible,
button:not([class]):hover,
button:not([class]):focus-visible,
input[type=button]:hover,
input[type=button]:focus-visible,
input[type=submit]:hover,
input[type=submit]:focus-visible,
input[type=reset]:hover,
input[type=reset]:focus-visible,
a.rv-button:hover,
a.rv-button:focus-visible {
  border-color: rgba(245, 245, 245, 0.4);
  color: rgba(245, 245, 245, 0.6);
}

.rv-button--cta,
button.rv-button--cta,
input[type=submit].rv-button--cta,
a.rv-button--cta {
  background-color: #ff6900;
  border-color: #ff6900;
  color: #f5f5f5;
  font-weight: 700;
}
.rv-button--cta:hover, .rv-button--cta:focus-visible,
button.rv-button--cta:hover,
button.rv-button--cta:focus-visible,
input[type=submit].rv-button--cta:hover,
input[type=submit].rv-button--cta:focus-visible,
a.rv-button--cta:hover,
a.rv-button--cta:focus-visible {
  background-color: rgb(214.2, 88.2, 0);
  border-color: rgb(214.2, 88.2, 0);
  color: #f5f5f5;
}

.rv-button:disabled,
button:disabled,
input[type=button]:disabled,
input[type=submit]:disabled,
input[type=reset]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.rv-navbar {
  background-color: #0d0d0d;
  width: 100%;
  padding: 20px 0;
}

.rv-navbar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .rv-navbar__inner {
    position: relative;
    flex-direction: row;
    justify-content: center;
    padding: 0 2rem;
  }
}

.rv-brand {
  font-size: 6vw;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f5f5f5 !important;
  text-decoration: none;
  line-height: 1;
}
.rv-brand img {
  height: 35px;
  width: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .rv-brand {
    position: absolute;
    left: 2rem;
  }
}

.rv-nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 3vw;
  list-style: none;
  margin: 0;
  padding: 0.6rem 1rem;
  width: 100%;
}
.rv-nav-links .nav-link {
  color: #f5f5f5;
  font-size: 3vw;
  line-height: 4vw;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0;
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}
.rv-nav-links .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f5f5f5;
  transition: width 0.25s ease;
}
.rv-nav-links .nav-link:hover, .rv-nav-links .nav-link.active {
  color: #f5f5f5;
}
.rv-nav-links .nav-link:hover::after, .rv-nav-links .nav-link.active::after {
  width: 100%;
}
.rv-nav-links .nav-link.rv-nav-cta {
  border: 1px solid #ff6900;
  border-radius: 6px;
  padding: 0.2em 0.7em;
}
.rv-nav-links .nav-link.rv-nav-cta::after {
  display: none;
}
.rv-nav-links .nav-link.rv-nav-cta:hover {
  border-color: #ff6900;
  background-color: #ff6900;
}

.rv-nav-social {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0.4rem 0 0.6rem;
}
.rv-nav-social a {
  color: #f5f5f5;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.rv-nav-social a:hover {
  opacity: 1;
}
.rv-nav-social a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (min-width: 768px) {
  .rv-nav-social {
    position: absolute;
    right: 2rem;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .rv-brand {
    font-size: 40px;
  }
  .rv-nav-links .nav-link {
    font-size: 0.85rem;
    line-height: 1.4rem;
  }
}
.rv-footer {
  background-color: #0d0d0d;
  color: #f5f5f5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: auto;
}

.rv-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 25px 15px;
}
@media (min-width: 768px) {
  .rv-footer__top {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem 2.5rem 1.5rem;
  }
}

.rv-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .rv-footer__nav {
    justify-content: flex-start;
  }
}
.rv-footer__nav a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
}
.rv-footer__nav a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f5f5f5;
  transition: width 0.25s ease;
}
.rv-footer__nav a:hover::after {
  width: 100%;
}

.rv-footer__social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rv-footer__social a {
  color: #f5f5f5;
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.rv-footer__social a:hover {
  opacity: 1;
}
.rv-footer__social a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rv-footer__divider {
  border: none;
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  margin: 0;
}

.rv-footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.75rem;
  text-align: center;
}
@media (min-width: 768px) {
  .rv-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 1.25rem 2.5rem 1.75rem;
  }
}

.rv-footer__copy {
  color: #f5f5f5;
  margin: 0;
}

.rv-footer__partner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(245, 245, 245, 0.45);
}
.rv-footer__partner svg {
  width: 28px;
  height: 28px;
  fill: rgba(245, 245, 245, 0.45);
  flex-shrink: 0;
}
.rv-footer__partner span {
  font-size: 0.6rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.rv-footer__legal a {
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
}
.rv-footer__legal a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #f5f5f5;
  transition: width 0.25s ease;
}
.rv-footer__legal a:hover::after {
  width: 100%;
}

@keyframes rv-glitch-idle {
  0%, 94%, 100% {
    filter: none;
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
  95% {
    filter: drop-shadow(-4px 0 0 rgba(255, 0, 60, 0.85)) drop-shadow(4px 0 0 rgba(0, 255, 230, 0.85));
    transform: translate(3px, 0);
    clip-path: inset(15% 0 55% 0);
  }
  96% {
    filter: drop-shadow(4px 0 0 rgba(255, 0, 60, 0.85)) drop-shadow(-4px 0 0 rgba(0, 255, 230, 0.85));
    transform: translate(-3px, 1px);
    clip-path: inset(55% 0 15% 0);
  }
  97% {
    filter: drop-shadow(-3px 0 0 rgba(255, 0, 60, 0.6)) drop-shadow(3px 0 0 rgba(0, 255, 230, 0.6));
    transform: translate(2px, -1px);
    clip-path: inset(30% 0 35% 0);
  }
  98% {
    filter: none;
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes rv-glitch-hover {
  0% {
    filter: none;
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
  15% {
    filter: drop-shadow(-5px 0 0 rgba(255, 0, 60, 0.9)) drop-shadow(5px 0 0 rgba(0, 255, 230, 0.9));
    transform: translate(4px, 0);
    clip-path: inset(10% 0 60% 0);
  }
  30% {
    filter: drop-shadow(5px 0 0 rgba(255, 0, 60, 0.9)) drop-shadow(-5px 0 0 rgba(0, 255, 230, 0.9));
    transform: translate(-4px, 2px);
    clip-path: inset(60% 0 10% 0);
  }
  45% {
    filter: drop-shadow(-3px 0 0 rgba(255, 0, 60, 0.7)) drop-shadow(3px 0 0 rgba(0, 255, 230, 0.7));
    transform: translate(2px, -2px);
    clip-path: inset(35% 0 30% 0);
  }
  60% {
    filter: drop-shadow(4px 0 0 rgba(255, 0, 60, 0.5)) drop-shadow(-4px 0 0 rgba(0, 255, 230, 0.5));
    transform: translate(-2px, 0);
    clip-path: inset(80% 0 5% 0);
  }
  80%, 100% {
    filter: none;
    transform: translate(0);
    clip-path: inset(0 0 0 0);
  }
}
.rv-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  overflow: hidden;
  padding: 2rem 1rem;
  background-color: #0d0d0d;
}
@media (max-width: 767px) {
  .rv-hero {
    min-height: 55vh;
  }
}

.rv-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  filter: brightness(0.55);
}
.rv-hero-bg-video.is-ready {
  opacity: 1;
}

.rv-hero__grunge {
  position: absolute;
  inset: 0;
  background-image: url("/images/crt.png");
  background-size: cover;
  background-repeat: repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  filter: url(#rv-crt-bend);
  transform: scale(1.22);
}

@keyframes rv-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rv-tagline-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rv-tagline-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.rv-hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rv-hero__tagline {
  text-align: center;
  font-family: inherit;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f5f5f5;
  margin: 40px 0 0;
  padding: 0;
  pointer-events: none;
  user-select: none;
  animation: rv-fade-up 0.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media (max-width: 767px) {
  .rv-hero__tagline {
    margin-top: 15px;
  }
}

.rv-hero__tagline-word {
  display: inline-block;
  font-weight: 600;
  min-width: 4ch;
  text-align: center;
}
.rv-hero__tagline-word.rv-word--in {
  animation: rv-tagline-in 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rv-hero__tagline-word.rv-word--out {
  animation: rv-tagline-out 0.3s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

.rv-logo {
  position: relative;
  z-index: 0;
  display: block;
  width: min(420px, 70vw);
  height: auto;
  aspect-ratio: 1526/284;
  cursor: pointer;
  opacity: 0;
  animation: rv-glitch-idle 7s infinite;
  animation-play-state: paused;
}
.rv-logo.is-loaded {
  animation: rv-fade-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) both, rv-glitch-idle 7s 0.8s infinite;
  animation-play-state: running;
}
.rv-logo:hover {
  animation: rv-glitch-hover 0.5s steps(1) forwards;
}
@media (min-width: 768px) {
  .rv-logo {
    width: min(940px, 70vw);
  }
}

.rv-pitch-stats {
  background-color: rgb(23.2, 23.2, 23.2);
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  border-bottom: 1px solid rgba(245, 245, 245, 0.15);
}
.rv-pitch-stats__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 767px) {
  .rv-pitch-stats__inner {
    grid-template-columns: 1fr 1fr;
  }
}
.rv-pitch-stats__item {
  padding: 1.75rem 1.5rem;
  border-right: 1px solid rgba(245, 245, 245, 0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.rv-pitch-stats__item:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .rv-pitch-stats__item:nth-child(2) {
    border-right: none;
  }
}
.rv-pitch-stats__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rv-pitch-stats__title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.3;
}
.rv-pitch-stats__bullet {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ff6900;
  flex-shrink: 0;
}
.rv-pitch-stats__body {
  font-size: 0.78rem;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

.rv-pitch-main {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 120px 1.5rem;
}
@media (max-width: 767px) {
  .rv-pitch-main {
    padding: 70px 1.5rem;
  }
}
.rv-pitch-main__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 767px) {
  .rv-pitch-main__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .rv-pitch-main__left {
    position: sticky;
    top: 2rem;
  }
}

.rv-pitch-info__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 1.25rem;
}
.rv-pitch-info__heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #f5f5f5;
  margin: 0 0 1.25rem;
}
.rv-pitch-info__orange {
  color: #ff6900;
}
.rv-pitch-info__body {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.rv-pitch-info__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 245, 245, 0.15);
}
.rv-pitch-info__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: #bbb;
  line-height: 1.5;
}
.rv-pitch-info__list li::before {
  content: "●";
  color: #ff6900;
  font-size: 0.55rem;
  flex-shrink: 0;
  margin-top: 0.38rem;
}
.rv-pitch-info__contact-block {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 245, 245, 0.15);
}
.rv-pitch-info__contact-label {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 0.3rem;
}
.rv-pitch-info__email {
  color: #ff6900;
  text-decoration: none;
  font-size: 0.88rem;
}
.rv-pitch-info__email:hover {
  text-decoration: underline;
}

.rv-pitch-form-section__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ff6900;
  margin: 0 0 1.75rem;
}

.rv-pitch-form__hint {
  font-size: 0.78rem;
  color: #666;
  margin: 0 0 0.5rem;
}
.rv-pitch-form__textarea {
  min-height: 160px;
}
.rv-pitch-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  gap: 50px;
}
@media (max-width: 767px) {
  .rv-pitch-form__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.rv-pitch-form__footer-note {
  font-size: 0.8rem;
  color: #666;
  margin: 0 0 0.15rem;
}
.rv-pitch-form__footer-note--bold {
  color: #f5f5f5;
  font-weight: 700;
}

.rv-pitch-slider {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.75rem 0;
}
.rv-pitch-slider__inline-value {
  color: #ff6900;
  font-weight: 700;
}
.rv-pitch-slider__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(245, 245, 245, 0.15);
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0.5rem 0;
}
.rv-pitch-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6900;
  border: 3px solid #0d0d0d;
  box-shadow: 0 0 0 2px #ff6900;
  cursor: pointer;
}
.rv-pitch-slider__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6900;
  border: 3px solid #0d0d0d;
  box-shadow: 0 0 0 2px #ff6900;
  cursor: pointer;
}

.rv-pitch-links-box {
  border: 1px solid rgba(245, 245, 245, 0.15);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.rv-pitch-links-box--focused {
  border-color: #ff6900;
}
.rv-pitch-links-box__input-row {
  display: flex;
  align-items: stretch;
  background: #f5f5f5;
}
.rv-pitch-links-box__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.75rem 1rem;
  font-size: 16px;
  color: #0d0d0d;
  font-family: inherit;
}
.rv-pitch-links-box__input::placeholder {
  color: #aaa;
}
.rv-pitch-links-box__add {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(245, 245, 245, 0.15);
  color: #999;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0 1.25rem;
  cursor: pointer;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.rv-pitch-links-box__add:hover {
  color: #0d0d0d;
}
.rv-pitch-links-box__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  background: rgb(25.75, 25.75, 25.75);
}
.rv-pitch-links-box__type {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid #444;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.rv-pitch-links-box__type:hover {
  color: #aaa;
  border-color: #666;
}
.rv-pitch-links-box__type--active {
  color: #ff6900;
  border-color: #ff6900;
}
.rv-pitch-links-box__list {
  min-height: 3rem;
  background: rgb(20.65, 20.65, 20.65);
  border-top: 1px solid rgba(245, 245, 245, 0.15);
  display: flex;
  flex-direction: column;
}
.rv-pitch-links-box__empty {
  margin: 0;
  padding: 0.65rem 0.85rem;
  font-size: 0.78rem;
  color: #444;
  font-style: italic;
}
.rv-pitch-links-box__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid rgba(245, 245, 245, 0.15);
}
.rv-pitch-links-box__row:last-child {
  border-bottom: none;
}
.rv-pitch-links-box__row-type {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ff6900;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 5.5rem;
}
.rv-pitch-links-box__row-url {
  flex: 1;
  font-size: 0.8rem;
  color: #aaa;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rv-pitch-links-box__row-remove {
  background: transparent;
  border: none;
  color: #555;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.1rem;
  flex-shrink: 0;
  transition: color 0.15s ease;
}
.rv-pitch-links-box__row-remove:hover {
  color: #f5f5f5;
}

.rv-pitch-block {
  background-color: #0d0d0d;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 25px;
}

.rv-pitch-block__heading {
  font-size: clamp(1.8rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 2rem;
  max-width: 920px;
}

.rv-pitch-block__rule {
  width: 2.5rem;
  height: 3px;
  background: #ff6900;
  border: none;
  border-radius: 2px;
  margin: 0 0 2.25rem;
}

.rv-pitch-block__body {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 245, 245, 0.55);
  max-width: 44ch;
  margin: 0 0 2.75rem;
}
.rv-pitch-block__body strong {
  color: #f5f5f5;
  font-weight: 700;
}

.rv-pitch-block__body-coda {
  color: rgba(245, 245, 245, 0.55);
}

.rv-pitch-block__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.rv-pitch-block__tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 245, 245, 0.25);
  background-color: transparent;
  color: rgba(245, 245, 245, 0.45);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
  text-align: center;
  line-height: 1.5;
}
.rv-pitch-block__tag:hover, .rv-pitch-block__tag:focus-visible {
  border-color: rgba(245, 245, 245, 0.4);
  color: rgba(245, 245, 245, 0.6);
}

.rv-pitch-block__tag--struck {
  text-decoration: line-through;
  text-decoration-color: rgba(245, 245, 245, 0.35);
}

.rv-pitch-block__tag--cta {
  background-color: #ff6900;
  border-color: #ff6900;
  color: #f5f5f5;
  font-weight: 700;
}
.rv-pitch-block__tag--cta:hover, .rv-pitch-block__tag--cta:focus-visible {
  background-color: rgb(214.2, 88.2, 0);
  border-color: rgb(214.2, 88.2, 0);
  color: #f5f5f5;
}

.rv-jobs-hero {
  max-width: 960px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}
.rv-jobs-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ff6900;
  margin-bottom: 1.25rem;
}
.rv-jobs-hero__title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 1;
  color: #f5f5f5;
  margin-bottom: 1.5rem;
}
.rv-jobs-hero__sub {
  max-width: 440px;
  color: rgba(245, 245, 245, 0.45);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.rv-jobs-list {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.rv-job {
  border-top: 1px solid rgba(245, 245, 245, 0.15);
}
.rv-job:last-child {
  border-bottom: 1px solid rgba(245, 245, 245, 0.15);
}
.rv-job__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  gap: 1rem;
  text-align: left;
}
.rv-job__header:focus-visible {
  outline: 2px solid #ff6900;
  outline-offset: 2px;
}
.rv-job__title-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.rv-job__title {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #f5f5f5;
}
.rv-job--open .rv-job__title {
  color: #ff6900;
}
.rv-job__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.rv-job__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 245, 245, 0.15);
  color: rgba(245, 245, 245, 0.45);
}
.rv-job__tag--orange {
  border-color: #ff6900;
  color: #ff6900;
}
.rv-job__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.rv-job__location {
  font-size: 0.85rem;
  color: rgba(245, 245, 245, 0.45);
  white-space: nowrap;
}
.rv-job__toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.15);
  color: #f5f5f5;
  flex-shrink: 0;
}
.rv-job__toggle-icon svg {
  width: 1rem;
  height: 1rem;
}
.rv-job__body {
  padding-bottom: 2rem;
  overflow: hidden;
}
.rv-job__body--hidden {
  display: none;
}
.rv-job__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .rv-job__columns {
    grid-template-columns: 1fr;
  }
}
.rv-job__column-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ff6900;
  margin-bottom: 1rem;
}
.rv-job__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rv-job__list li {
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.rv-job__list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(245, 245, 245, 0.45);
}
.rv-job__apply {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}
.rv-job__apply:hover {
  color: #ff6900;
}

.rv-jobs-footer {
  max-width: 960px;
  margin: 4rem auto 0;
  padding: 2.5rem 1.5rem 5rem;
}
.rv-jobs-footer p {
  color: rgba(245, 245, 245, 0.45);
  font-size: 0.9rem;
  margin: 0 0 0.25rem;
}
.rv-jobs-footer__link {
  color: #ff6900;
  text-decoration: none;
}
.rv-jobs-footer__link:hover {
  text-decoration: underline;
}

.rv-orange {
  color: #ff6900;
}

.rv-about-label {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}

.rv-about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  overflow: hidden;
  padding: 2rem 1rem;
}
.rv-about-hero .rv-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0.55);
}
.rv-about-hero__grunge {
  position: absolute;
  inset: 0;
  background-image: url("/images/crt.png");
  background-size: cover;
  background-repeat: repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  filter: url(#rv-about-crt-bend);
  transform: scale(1.22);
}
.rv-about-hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rv-about-hero__title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.05;
}
.rv-about-hero__sub {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #aaa;
  margin: 1rem 0 0;
}
.rv-about-hero__sub-accent {
  color: #ff6900;
}
.rv-about-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ccc;
  margin: 1.5rem 0 0;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-about-hero__subtitle.rv-subtitle--in {
  animation: rv-subtitle-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.rv-about-hero__subtitle.rv-subtitle--out {
  animation: rv-subtitle-out 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}

@keyframes rv-subtitle-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rv-subtitle-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}
.rv-about-who {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 150px 1.5rem;
}
@media (max-width: 767px) {
  .rv-about-who {
    padding: 80px 1.5rem;
  }
}
.rv-about-who__inner {
  max-width: 1110px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 767px) {
  .rv-about-who__inner {
    grid-template-columns: 1fr;
  }
}
.rv-about-who__heading {
  font-size: clamp(1.3rem, 3.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: #f5f5f5;
  text-align: right;
}
.rv-about-who__right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.rv-about-who__right p {
  color: #aaa;
  line-height: 1.7;
  margin: 0;
}

.rv-about-values {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 150px 1.5rem;
  border-top: 1px solid #1e1e1e;
}
@media (max-width: 767px) {
  .rv-about-values {
    padding: 80px 1.5rem;
  }
}
.rv-about-values__inner {
  max-width: 960px;
  margin: 0 auto;
}
.rv-about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0.5rem;
}
@media (max-width: 767px) {
  .rv-about-values__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.rv-about-value {
  padding: 1.75rem 1.5rem;
}
.rv-about-value__title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #f5f5f5;
  margin: 0 0 0.6rem;
}
.rv-about-value__body {
  color: #888;
  line-height: 1.6;
  margin: 0;
}

.rv-about-team {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 150px 1.5rem;
  border-top: 1px solid #1e1e1e;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .rv-about-team {
    padding: 80px 1.5rem;
  }
}
.rv-about-team__logo-wall {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.05;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0;
}
.rv-about-team__logo-row {
  display: flex;
  flex-shrink: 0;
  gap: 20px;
}
.rv-about-team__logo-row:nth-child(even) {
  margin-left: -110px;
}
.rv-about-team__logo-row img {
  display: block;
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
  user-select: none;
  pointer-events: none;
}
.rv-about-team__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.rv-about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .rv-about-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rv-about-member {
  perspective: 800px;
  cursor: pointer;
}
.rv-about-member__card {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  border-radius: 50%;
  will-change: transform;
}
.rv-about-member__photo {
  width: 80%;
  aspect-ratio: 1/1;
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.rv-about-member__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.rv-about-member__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.08) 0%, transparent 65%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.rv-about-member:hover .rv-about-member__photo::after, .rv-about-member:focus-within .rv-about-member__photo::after {
  opacity: 1;
}
.rv-about-member__initials {
  font-size: 2rem;
  font-weight: 800;
  color: #333;
  font-family: "Outfit", sans-serif;
  position: relative;
  z-index: 1;
}
.rv-about-member__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #f5f5f5;
  margin: 0 0 0.15rem;
  text-align: center;
}
.rv-about-member__role {
  font-size: 0.78rem;
  text-align: center;
  color: #666;
  margin: 0;
}

.rv-about-cta {
  background-color: #0d0d0d;
  border-top: 1px solid #1e1e1e;
  padding: 150px 1.5rem;
  text-align: center;
}
@media (max-width: 767px) {
  .rv-about-cta {
    padding: 80px 1.5rem;
  }
}
.rv-about-cta__inner {
  max-width: 960px;
  margin: 0 auto;
}
.rv-about-cta__heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #f5f5f5;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}
.rv-about-cta__btn {
  margin-top: 0.25rem;
}

.rv-contact-orange {
  color: #ff6900;
}

.rv-contact-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1.5rem;
}
.rv-contact-label--orange {
  color: #ff6900;
}

.rv-contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 55vh;
  overflow: hidden;
  padding: 2rem 1rem;
}
.rv-contact-hero canvas {
  z-index: 0 !important;
}
.rv-contact-hero__grunge {
  position: absolute;
  inset: 0;
  background-image: url("/images/crt.png");
  background-size: cover;
  background-repeat: repeat;
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
  filter: url(#rv-contact-crt-bend);
  transform: scale(1.22);
}
.rv-contact-hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.rv-contact-hero__title {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  color: #f5f5f5;
  margin: 0;
  line-height: 1.05;
}

.rv-contact-main {
  background-color: #0d0d0d;
  color: #f5f5f5;
  padding: 120px 1.5rem;
}
@media (max-width: 767px) {
  .rv-contact-main {
    padding: 70px 1.5rem;
  }
}
.rv-contact-main__inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 767px) {
  .rv-contact-main__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.rv-contact-main__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: #f5f5f5;
  margin: 0 0 1.5rem;
}
.rv-contact-main__body {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.75;
  margin: 0 0 3rem;
}

.rv-contact-links {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(245, 245, 245, 0.15);
}

.rv-contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(245, 245, 245, 0.15);
  text-decoration: none;
  color: #f5f5f5;
  transition: opacity 0.2s ease;
}
.rv-contact-link:hover {
  opacity: 0.7;
}
.rv-contact-link__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.rv-contact-link__text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5f5f5;
}
.rv-contact-link__text span {
  font-size: 0.8rem;
  color: #888;
}
.rv-contact-link__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f5f5f5;
  transition: border-color 0.2s ease;
}
.rv-contact-link__icon svg {
  width: 1rem;
  height: 1rem;
}
.rv-contact-link:hover .rv-contact-link__icon {
  border-color: rgba(245, 245, 245, 0.4);
}

.rv-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.rv-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .rv-contact-form__row {
    grid-template-columns: 1fr;
  }
}
.rv-contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.rv-contact-form__group--full {
  grid-column: 1/-1;
}
.rv-contact-form__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #bbb;
  text-transform: uppercase;
}
.rv-contact-form__input {
  background-color: #f5f5f5;
  color: #0d0d0d;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0.65rem 0.85rem;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  appearance: none;
}
.rv-contact-form__input::placeholder {
  color: #aaa;
}
.rv-contact-form__input:focus {
  border-color: #ff6900;
}
.rv-contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23888'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2rem;
}
.rv-contact-form__textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.rv-contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  gap: 50px;
}
@media (max-width: 767px) {
  .rv-contact-form__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
.rv-contact-form__note {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.rv-contact-form__submit {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(245, 245, 245, 0.25);
  background-color: transparent;
  color: rgba(245, 245, 245, 0.45);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  font-family: inherit;
  text-align: center;
  line-height: 1.5;
  background-color: #ff6900;
  border-color: #ff6900;
  color: #f5f5f5;
  font-weight: 700;
}
.rv-contact-form__submit:hover, .rv-contact-form__submit:focus-visible {
  border-color: rgba(245, 245, 245, 0.4);
  color: rgba(245, 245, 245, 0.6);
}
.rv-contact-form__submit:hover, .rv-contact-form__submit:focus-visible {
  background-color: rgb(214.2, 88.2, 0);
  border-color: rgb(214.2, 88.2, 0);
  color: #f5f5f5;
}

.grecaptcha-badge {
  visibility: hidden !important;
  pointer-events: none !important;
}

.rv-recaptcha-notice {
  font-size: 14px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}
.rv-recaptcha-notice a {
  color: #888;
  text-decoration: underline;
}
.rv-recaptcha-notice a:hover {
  color: #f5f5f5;
}

.rv-form-feedback {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left-width: 3px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.03);
}
.rv-form-feedback--success {
  border-left-color: #ff6900;
}
.rv-form-feedback--success .rv-form-feedback__icon {
  border-color: #ff6900;
  color: #ff6900;
}
.rv-form-feedback--error {
  border-left-color: #e05252;
}
.rv-form-feedback--error .rv-form-feedback__icon {
  border-color: #e05252;
  color: #e05252;
}
.rv-form-feedback__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rv-form-feedback__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
.rv-form-feedback__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.rv-form-feedback__title {
  font-size: 1rem;
  font-weight: 700;
  color: #f5f5f5;
}
.rv-form-feedback__sub {
  font-size: 0.875rem;
  color: #888;
  margin: 0;
  line-height: 1.6;
}
.rv-form-feedback__sub a {
  color: #e05252;
  text-decoration: none;
}
.rv-form-feedback__sub a:hover {
  text-decoration: underline;
}
