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

.assistive-text {
  position: absolute !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  clip: rect(1px 1px 1px 1px) !important;
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px) !important; }

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative; }

img {
  max-width: 100%;
  height: auto; }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: transparent;
  padding: 1rem 2rem;
  display: none;
  visibility: hidden; }
  .nav__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto; }
  .nav__logo {
    height: 94px;
    width: 151px; }
    .nav__logo img {
      height: 94px;
      width: 151px;
      max-width: none;
      object-fit: contain; }
  .nav__links {
    display: flex;
    list-style: none;
    gap: 2rem; }
    .nav__links--center {
      flex: 1;
      justify-content: center; }
    .nav__links--right {
      gap: 1rem; }
  .nav__link {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    letter-spacing: -0.0375rem;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.3s ease; }
    .nav__link:hover {
      color: #4e9faf; }
    .nav__link--button {
      background: #f73d16;
      color: #020b18;
      padding: 0.75rem 1.5rem;
      border-radius: 0.75rem;
      font-family: "Geologica", sans-serif;
      font-size: 1.25rem;
      font-weight: 500;
      letter-spacing: 0.2rem;
      line-height: 1.2;
      text-align: center;
      text-transform: uppercase;
      white-space: nowrap; }
      .nav__link--button:hover {
        background: #d32b07;
        color: #020b18; }
  .nav__search {
    width: 18px;
    height: 18px;
    display: block; }
    .nav__search img {
      width: 18px;
      height: 18px;
      object-fit: contain;
      filter: brightness(0) invert(1); }

.nav-logo-hidden {
  opacity: 0 !important;
  visibility: hidden !important; }

.fixed-header {
  position: fixed;
  top: 4vh;
  left: 5vw;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem; }
  @media screen and (min-width: 1024px) {
    .fixed-header {
      top: 10vh;
      width: 50%; } }
  .fixed-header__container {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;
    background: transparent;
    padding: 0; }
  .fixed-header__logo {
    display: flex;
    align-items: center; }
  .fixed-header__oc-logo {
    height: 105px;
    width: 170px;
    object-fit: contain;
    object-position: center;
    display: block; }
  .fixed-header__separator {
    width: 1px;
    height: 120px;
    background: #cccccc;
    opacity: 0.8;
    margin: 0 27px 0 36px; }
  .fixed-header__shark-logo {
    height: 110px;
    width: auto;
    object-fit: contain; }
  @media (max-width: 768px) {
    .fixed-header {
      padding: 0.75rem 1rem; }
      .fixed-header__container {
        padding: 8px 16px; } }

.splash {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #082f61, #001a2a);
  pointer-events: none; }
  .splash__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(to bottom, #082f61, #001a2a); }
  .splash__image {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .splash__video {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .splash__content {
    position: relative;
    z-index: 2;
    text-align: center; }
  .splash__title {
    font-family: "Geologica", sans-serif;
    font-size: 9.9375rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.3) -4px 4px 15px;
    margin: 0;
    line-height: 0.9;
    letter-spacing: -0.298125rem;
    text-transform: uppercase;
    text-align: center;
    max-width: 748px; }
    @media (max-width: 768px) {
      .splash__title {
        font-size: 4rem;
        letter-spacing: -2px; } }
    @media (max-width: 1024px) {
      .splash__title {
        font-size: 6rem;
        letter-spacing: -3px; } }
  .splash__scroll-indicator {
    position: absolute;
    bottom: clamp(5rem, 15vh, 20vh);
    padding-bottom: env(safe-area-inset-bottom, 0);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    cursor: pointer; }
    @media (max-width: 768px) {
      .splash__scroll-indicator {
        left: 50%;
        transform: translateX(-50%);
        gap: 0.75rem; } }
  .splash__scroll-text {
    font-family: "Inter", sans-serif;
    font-size: 1.3125rem;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.21rem;
    line-height: 1.67;
    white-space: nowrap; }
    @media (max-width: 768px) {
      .splash__scroll-text {
        font-size: 1rem;
        letter-spacing: 0.15rem; } }
  .splash__arrow {
    width: auto;
    height: 60px;
    animation: arrowBounce 2s ease-in-out infinite; }

@keyframes arrowBounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-10px); }
  60% {
    transform: translateY(-5px); } }

.main {
  background-color: #001a2a; }

.main__background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; }
  .main__background::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #082F61 0%, #001a2a 100%); }

.main__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0); }
  @media (max-width: 768px) {
    .main__bg-image {
      object-position: 40% center; } }

.main {
  position: relative;
  min-height: 100vh; }
  .main__content {
    position: relative;
    max-width: 1200px;
    padding: 100vh 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-left: 50%;
    margin-right: 4rem; }
    @media (max-width: 1024px) {
      .main__content {
        margin-left: 0;
        margin-right: 0;
        gap: 3rem; } }
    @media (max-width: 768px) {
      .main__content {
        padding-left: 2rem;
        padding-right: 2rem;
        gap: 2rem; } }
  .main__footer-gradient {
    position: relative;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #001a2a);
    pointer-events: none;
    z-index: 0; }

.cta {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: transparent;
  text-align: left;
  margin-left: -12%;
  transform: translateY(100px);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .cta.cta__video-wrapper {
    margin-left: -6%; }
  @media (max-width: 1024px) {
    .cta {
      margin-left: 0;
      margin-right: 0; }
      .cta.cta__video-wrapper {
        margin-left: 0; }
      .cta .cta__content {
        padding: 0 !important; } }
  .cta.animate-in {
    transform: translateY(0); }
  .cta:nth-child(1) {
    transition-delay: 0.1s; }
    .cta:nth-child(1) .cta__media {
      margin-bottom: 0; }
  .cta:nth-child(2) {
    transition-delay: 0.2s; }
    .cta:nth-child(2) .cta__media {
      margin-bottom: -6%; }
  .cta:nth-child(3) {
    transition-delay: 0.3s; }
  .cta:nth-child(4) {
    transition-delay: 0.4s; }
    .cta:nth-child(4) .cta__media {
      margin-bottom: -10%; }
  .cta:nth-child(5) {
    transition-delay: 0.5s; }
  .cta:nth-child(6) {
    transition-delay: 0.6s; }
  @media (max-width: 1024px) {
    .cta__video-wrapper {
      padding: 0; }
      .cta__video-wrapper .cta__media {
        padding: 0 !important;
        margin-left: 0;
        margin-right: 0; } }
  .cta__media {
    position: relative;
    flex: 1;
    min-height: 250px;
    margin-bottom: -8%; }
    @media (max-width: 1024px) {
      .cta__media {
        margin-left: -12%;
        margin-right: -12%; } }
  .cta__image {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  @media (min-width: 1024px) {
    .cta.cta-learn {
      margin-left: -30px; }
      .cta.cta-learn .cta__content {
        padding-left: 10% !important; } }
  .cta.cta-learn .cta__image {
    margin-left: -5%; }
  .cta.cta-signup .cta__image {
    margin-left: -4%; }
  @media (min-width: 1024px) {
    .cta.cta-cleanup .cta__image {
      margin-left: -1%; } }
  @media (min-width: 1024px) {
    .cta.cta-difference .cta__content {
      padding-left: 11% !important; } }
  .cta__video {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 12px; }
  .cta__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e4d72;
    cursor: pointer;
    transition: all 0.3s ease; }
    .cta__play-button:hover {
      background: #ffffff;
      transform: translate(-50%, -50%) scale(1.1); }
  .cta__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 6%; }
  .cta + .cta .cta__content {
    padding: 0 0 0 12%; }
  .cta.cta__video-wrapper .cta__media {
    padding-left: 2rem; }
  .cta.cta__video-wrapper .cta__content {
    padding-right: 2rem;
    padding-top: 2rem; }
  .cta__title {
    font-family: "Geologica", sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 0.96;
    text-align: left; }
    @media (max-width: 768px) {
      .cta__title {
        font-size: 2rem;
        line-height: 1.2; } }
  .cta__description {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    text-align: left; }
    @media (max-width: 768px) {
      .cta__description {
        font-size: 1rem; } }
  .cta__video-line1 {
    font-family: "Inter", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
    line-height: 1.46;
    text-align: left; }
  .cta__video-line2 {
    font-family: "Inter", sans-serif;
    font-size: 1.8125rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 1rem 0;
    line-height: 1.34;
    text-align: left; }
  .cta__video-line3 {
    font-family: "Inter", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    line-height: 2;
    text-align: left; }
  .cta__button {
    display: inline-block;
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 1.25rem 2.4rem;
    border-radius: 10rem;
    text-decoration: none;
    font-family: "Geologica", sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.225rem;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.11;
    white-space: nowrap;
    --scale: 1;
    --btn-color: #008ed5; }
    @media (max-width: 768px) {
      .cta__button {
        font-size: 1rem;
        letter-spacing: 0.105rem; } }
    .cta__button:hover {
      text-decoration: none;
      color: #ffffff; }
    .cta__button::before {
      content: '';
      display: block;
      position: absolute;
      inset: 0;
      border-radius: 10rem;
      background-color: var(--btn-color);
      z-index: -1;
      transform: scale(var(--scale, 1)); }
    .cta__button--secondary {
      color: #ffffff; }
      .cta__button--secondary::before {
        background-color: transparent;
        outline: 2px solid var(--btn-color);
        outline-offset: -2px; }
    .cta__button--light {
      --btn-color: #a7e2ff;
      color: #001a2a; }
      .cta__button--light:hover {
        color: #001a2a; }
  .cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: 1rem; }
    @media (min-width: 1024px) {
      .cta__buttons {
        align-items: center;
        flex-direction: row; } }

.site-footer {
  background-color: #001a2a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 160px 0; }
  .site-footer__eco-circle {
    position: absolute;
    top: -152px;
    right: -461px;
    width: 1119px;
    height: 1134px;
    pointer-events: none; }
    .site-footer__eco-circle img {
      width: 100%;
      height: 100%;
      display: block; }
    @media (max-width: 1024px) {
      .site-footer__eco-circle {
        width: 600px;
        height: 608px;
        right: -200px;
        top: -80px; } }
    @media (max-width: 768px) {
      .site-footer__eco-circle {
        right: -340px; } }
  .site-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 120px;
    position: relative;
    z-index: 2; }
    @media (max-width: 1024px) {
      .site-footer__inner {
        padding: 0 32px; } }
  .site-footer__logo {
    margin-bottom: 120px; }
    .site-footer__logo img {
      width: 243px;
      height: auto;
      display: block; }
    @media (max-width: 1024px) {
      .site-footer__logo {
        margin-bottom: 48px; }
        .site-footer__logo img {
          width: 180px; } }
  .site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px; }
    @media (max-width: 1024px) {
      .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px; } }
  .site-footer__left {
    display: flex;
    flex-direction: column;
    gap: 20px; }
    @media (max-width: 1024px) {
      .site-footer__left {
        width: 100%; } }
  .site-footer__badges {
    display: flex;
    align-items: center;
    gap: 20px; }
    .site-footer__badges a:not(:last-child) {
      opacity: 0.6; }
    .site-footer__badges img {
      display: block;
      width: auto;
      max-height: 83px; }
    @media (max-width: 1024px) {
      .site-footer__badges {
        gap: 12px;
        flex-wrap: wrap; }
        .site-footer__badges img {
          max-height: 60px; } }
  .site-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px; }
    @media (max-width: 1024px) {
      .site-footer__right {
        align-items: flex-start;
        width: 100%; } }
  .site-footer__social {
    display: flex;
    align-items: center;
    gap: 24px; }
    @media (max-width: 1024px) {
      .site-footer__social {
        gap: 18px; } }
  .site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.2s ease; }
    .site-footer__social-link svg {
      width: 28px;
      height: 28px; }
    .site-footer__social-link:hover {
      opacity: 1; }
  .site-footer__recaptcha {
    font-size: 0.6875rem;
    font-style: italic;
    color: #86a1b2;
    letter-spacing: -0.02em;
    line-height: 1.75;
    margin: 0; }
    .site-footer__recaptcha a {
      color: #86a1b2;
      text-decoration: underline; }
      .site-footer__recaptcha a:hover {
        color: #ffffff; }
  .site-footer__copyright {
    font-size: 1.125rem;
    font-weight: 500;
    color: #86a1b2;
    letter-spacing: -0.03em;
    margin: 0;
    white-space: nowrap; }
  .site-footer__shark-fin {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 99px;
    height: 85px;
    pointer-events: none;
    z-index: 3; }
    .site-footer__shark-fin img {
      width: 100%;
      height: 100%; }

@media (max-width: 768px) {
  .nav {
    padding: 0.75rem 1rem; }
    .nav__container {
      flex-wrap: wrap;
      gap: 1rem; }
    .nav__links {
      gap: 1rem;
      font-size: 0.9rem; }
      .nav__links--center {
        order: 3;
        flex: 1 1 100%;
        justify-content: center; }
  .cta {
    padding: 0; }
    .cta.cta__video-wrapper .cta__media {
      padding-left: 0; }
    .cta.cta__video-wrapper .cta__content {
      padding-right: 0;
      padding-left: 0; }
    .cta__media {
      min-height: 200px; } }
