:root {
  --rivver-blue: #28308a;
  --rivver-blue-light: #3b45b5;
  --rivver-blue-dark: #1e2468;
  --rivver-gradient: linear-gradient(135deg, var(--rivver-blue) 0%, var(--rivver-blue-dark) 100%);
  --pink: hsl(322, 100%, 66%);
  --pale-cyan: hsl(276, 100%, 96%);
  --dark-cyan: #1e2468;
  --gray-blue: hsl(208, 11%, 55%);
  --white: hsl(0, 0%, 100%);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-900: #111827;
  --dark-bg-layout: #121212;
  --dark-bg-container: #1e1e1e;

  --heading-font: "Poppins", sans-serif;
  --body-font: "Open Sans", sans-serif;
  --font-size: 18px
}

html {
  overflow-x: hidden;
}

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

body {
  font-family: var(--body-font);
  font-size: var(--font-size);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}


.hero__bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-tile {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  /* filter: blur(20px); */
}

.hero__bg-tile--visible {
  opacity: 0.15;
}

.hero__bg-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar {
  position: relative;
  z-index: 10;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 2rem !important;
  height: 40px !important;
  min-height: 40px !important;
  width: 100%;
  background-color: transparent;
}

.navbar__buttons {
  display: flex;
  gap: 1rem;
}

.navbar__logo {
  height: 40px;
  width: auto;
}

.cta {
  border-radius: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .6rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

.login__cta {
  border: 0.15rem solid var(--rivver-blue);
  color: var(--rivver-blue);
  padding: .1rem 1rem;
  background-color: transparent;
  transition: all 0.3s ease;
}

.login__cta:hover {
  background-color: var(--rivver-blue);
  color: var(--white);
}

.signup__cta {
  padding: .4rem 2rem;
  color: var(--white);
  background: var(--rivver-gradient);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(40, 48, 138, 0.39);
}

.signup__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(40, 48, 138, 0.5);
}

.hero__cta {
  color: var(--white);
  background: var(--rivver-gradient);
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(40, 48, 138, 0.39);
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(40, 48, 138, 0.5);
}

.hero__cta-primary {
  background: var(--rivver-gradient);
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  gap: 0.5rem;
}

.hero__cta-secondary {
  background: transparent;
  color: var(--rivver-blue);
  border: 2px solid var(--rivver-blue);
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  box-shadow: none;
}

.hero__cta-secondary:hover {
  background: var(--rivver-blue);
  color: white;
  transform: translateY(-2px);
}

.hero__cta-icon {
  width: 1rem;
  height: 1rem;
}

.hero__cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(131, 0, 255, 0.1) 0%, rgba(131, 0, 255, 0.05) 100%);
  border: 1px solid rgba(131, 0, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--rivver-blue);
}

.hero__badge-icon {
  font-size: 1rem;
}

.header {
  position: relative;
  width: 100%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.header--with-hero {
  height: 100dvh;
  min-height: 100dvh;
}

.header::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}



/* Overrides .header::before gradient — must come after it in the cascade */
.header--with-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  background-image: url('/images/clouds.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 0;
}

.header::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(30, 36, 104, 0.5) 100%
  );
}

.header--with-hero .header__frosted-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  /* -webkit-backdrop-filter: blur(40px); */
  /* backdrop-filter: blur(40px); */
  z-index: 1;
}

.hero {
  padding: 2rem 2.5rem;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
  color: var(--rivver-blue);
  width: 100%;
  min-height: calc(100dvh - 50px);
}

.hero__headline {
  font-size: 3rem;
  padding-bottom: 1.5rem;
  font-weight: 900;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--rivver-blue);
}

.hero__message {
  font-size: 1.25rem;
  line-height: 1.8;
  padding-bottom: 1.5rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--rivver-blue-dark);
}

.hero__highlight {
  color: var(--dark-bg-container);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero__image {
  width: 100%;
  height: auto;
}

.hero__image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.hero__image-main {
  display: none;
}

.hero__image-mobile {
  max-width: 75%;
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  border-radius: 1rem;
  margin: 0 auto;
}

.main {
  /* padding: 1.5rem 2rem; */
  /* gap: 1rem; */
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: auto;
}

/* ...removed unused section styles... */

/* Jumbotron Section Styles */
.hero-jumbotron {
  background: var(--rivver-blue);
  color: var(--white);
  padding: 5rem 0;
  margin-bottom: 3rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.hero-jumbotron .container {
  position: relative;
  z-index: 2;
}

.hero-jumbotron::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.hero-jumbotron__title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-jumbotron__lead {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

.landing-page.dark .hero-jumbotron {
  background: var(--dark-bg-container);
}

.footer {
  padding-top: 2rem;
  color: var(--dark-cyan);
  background-color: #f6f6f7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  line-height: 1.6rem;
  text-align: center;
  margin-top: auto;
}

.footer__top {
  padding: 0 1rem;
  margin-bottom: 2rem;
}

.footer__logo {
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.footer__link {
  color: var(--gray-blue);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--rivver-blue);
}

.footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.social__icon {
  fill: var(--dark-cyan);
  transition: fill 0.3s ease;
}

.social__icon:hover {
  fill: var(--rivver-blue);
}

.footer__newsletter {
  margin: 0rem auto 2rem;
  max-width: 800px;
  width: 100%;
  padding: 0 1.5rem;
  text-align: center;
}

.footer__newsletter-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-cyan);
}

.footer__newsletter-description {
  font-size: 0.9375rem;
  color: var(--gray-blue);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.footer__newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}

.footer__newsletter-input {
  padding: 0.5rem 0.875rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color 0.3s;
  width: 100%;
}

.footer__newsletter-input:focus {
  outline: none;
  border-color: var(--rivver-blue);
}

.footer__newsletter-button {
  padding: 0.5rem 1.75rem;
  background-color: var(--rivver-blue);
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
  width: 100%;
}

.footer__newsletter-button:hover:not(:disabled) {
  background-color: var(--rivver-blue-light);
}

.footer__bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding-bottom: 30px;
}

.footer__bottom p {
  margin-bottom: 0;
  display: block;
  color: grey;
}

.footer__email {
  color: #000;
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
  }
  
  .footer__logo {
    margin-bottom: 0;
  }
  
  .footer__social {
    margin-bottom: 0;
  }

  .footer__newsletter-form {
    flex-direction: row;
    justify-content: center;
  }
}

/* ...existing code... */

@media (min-width: 640px) {
  .footer__newsletter-form {
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
  }

  .footer__newsletter-input {
  padding: 0.5rem 0.875rem;
  }
}

@media (min-width: 768px) {
  .hero__image-main {
    display: block;
    max-width: 70%;
    z-index: 2;
    right: 5rem;
    border-radius: 1rem;
  }

  .hero__image-mobile {
    max-width: 25%;
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    z-index: 3;
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

/* Removed unused section styles */
}

@media (min-width:1440px) {


  .navbar__logo {
    width: 12rem;
  }


  .login__cta {
    border: 0.15rem solid var(--rivver-blue);
    color: var(--rivver-blue);
    padding: .4rem 2rem;
  }

  .signup__cta {
    padding: .4rem 2rem;
    color: var(--white);
    background: var(--rivver-gradient);
    width: auto;
  }

    .hero {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      max-width: 100%;
      margin: auto;
      text-align: center;
      gap: 4rem;
      padding: 2rem;
      min-height: calc(100dvh - 50px);
    }  .hero__cta{
    width: auto;
  }

  .hero__cta-group {
    justify-content: center;
  }

  .hero__main {
    max-width: 800px;
    position: relative;
    z-index: 10;
    width: 100%;
  }

  .hero__headline {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    padding-bottom: 1.5rem;
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
  }

  .hero__message {
    font-size: 1.25rem;
    line-height: 1.8;
    width: 100%;
    font-weight: 400;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    text-align: center;
  }

  .hero__title {
    text-align: center;
  }

  .hero__image-gradient {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(131, 0, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .hero__image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 0;
    margin-top: 3rem;
  }

  .hero__image-main {
    display: block;
    max-width: 80%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(40, 48, 138, 0.2);
    z-index: 2;
    margin: 0 auto;
  }

  .hero__image-mobile {
    max-width: 20%;
    height: auto;
    position: absolute;
    right: 10%;
    bottom: -2rem;
    z-index: 3;
    border-radius: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  

  .main__cta {
    width: 50%;
    margin-left: 0;
  }

  .main {
    /* width: 80%;
    margin: auto; */
    padding: 0
  }

  .section {
    margin: auto;
    display: flex;
    padding: 2rem 0;
    align-items: center;
    justify-content: center;
    gap: 4rem;
  }
  
  .section:not(.section__final) {
    width: 75%;
  }

  .section__icon {
    object-fit: contain;
    width: 4rem;
  }

  .section__main {
    width: 50%;
    max-width: 40vw;
    text-align: left;
  }

  .section__heading {
    font-size: 2rem;
    line-height: 3rem;
    font-weight: 700;
    padding: 1.5rem 0;
  }

  .section__message {
    font-size: 1.2rem;
    line-height: 2rem;
    width: 80%;
    text-align: justify;
  }

  .section__paragraph {
    font-size: 1.2rem;
    line-height: 2rem;
    width: 100%;
    text-align: justify;
  }

  .call-to-action__message {
    font-size: 1.2rem;
    line-height: 2rem;
    width: 80%;
    text-align: center;
  }

  .section__verify {
    width: 75%;
    margin: auto;
  }

  .section__image {
    width: 42%;
  }

  .section__cta{
    color: var(--white);
    width: 12rem;
    max-width: 33vw;
    justify-content: space-around;
    margin: 0;
  }


  .section__workflow{
    display: flex;
    flex-direction: column;
  }

  .workflow--info {
    width: 90%;
    max-width: 200px;
  }

  .section__call-to-action{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center !important;
    font-size: 1rem;
    gap: 0.5rem;
    color: var(--white);
    border-radius: 2rem;
  }
  
  .section__call-to-action .section__heading,
  .section__call-to-action .section__kicker,
  .section__call-to-action .section__message {
    color: var(--white);
  }
  
  .section__call-to-action .section__cta {
    background-color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-family: var(--heading-font);
    font-weight: 700 !important;
  }

  .section__build {
    display: flex;
    flex-direction: column;
    left: 30%;
    width: 40%;
    gap: .1rem
  }

  .footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
    gap: 2rem;
  }

  .footer__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 30px;
  }

  .footer__info,
  .footer__copyright,
  .footer__contact {
    margin: 0;
    font-size: 0.9rem;
  }

  .footer__email {
    color: var(--dark-cyan);
  }

  .footer__email:hover {
    text-decoration: underline;
  }

  .footer__links {
    flex-direction: row;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  
  .footer__link {
    color: var(--gray-blue);
  }
  .holder {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
  }

  .terms_section, .about_section, .contact_section {
    display: flex;
    padding: 2rem 0;
    align-items: center;
    justify-content: center;
  }


} 
.section__final {
  margin: 1rem;
}
/* Removed unused verify dark styles */

.section__paragraph {
  width: 100%;
  text-align: justify;
}

/* 404 Error Page Styles */
.hero__cta-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.hero__cta-secondary:hover {
  background-color: var(--white);
  color: var(--rivver-blue);
}

/* Removed unused dark mode landing page styles */

/* About Page Dark Mode */
.about-page.dark {
  background-color: var(--dark-bg-layout);
  color: var(--white);
}

.about-page.dark .main {
  background-color: var(--dark-bg-layout);
}

.about-page.dark .section__main {
  background-color: var(--dark-bg-layout);
}

.about-page.dark .section__docs_heading,
.about-page.dark .section__heading {
  color: var(--white);
}

.about-page.dark .section__paragraph {
  color: rgba(255, 255, 255, 0.85);
}

.about-page.dark .section__kicker {
  color: var(--rivver-blue);
}

/* Contact Page Dark Mode */
.contact-page.dark {
  background-color: var(--dark-bg-layout);
  color: var(--white);
}

.contact-page.dark .main {
  background-color: var(--dark-bg-layout);
}

.contact-page.dark .section__main {
  background-color: var(--dark-bg-layout);
}

.contact-page.dark .section__heading {
  color: var(--white);
}

.contact-page.dark .section__paragraph {
  color: rgba(255, 255, 255, 0.85);
}

.contact-page.dark .section__kicker {
  color: var(--rivver-blue);
}

.contact-page.dark .contact_section,
.contact-page.dark .about_section {
  background-color: var(--dark-bg-layout);
}

.contact-page.dark .terms_section {
  background-color: var(--dark-bg-layout);
}

.contact-page.dark div[style*="background-color: #fff"] {
  background-color: var(--dark-bg-container) !important;
}

/* Terms Page Dark Mode */
.terms-page.dark {
  background-color: var(--dark-bg-layout);
  color: var(--white);
}

.terms-page.dark .main__docs {
  background-color: var(--dark-bg-layout);
}

.terms-page.dark .terms_section {
  background-color: var(--dark-bg-layout);
}

.terms-page.dark .section__main {
  background-color: var(--dark-bg-layout);
}

.terms-page.dark h1,
.terms-page.dark .section__docs_heading {
  color: var(--white);
}

.terms-page.dark .section__paragraph {
  color: rgba(255, 255, 255, 0.85);
}

/* .terms-page.dark .section__docs__kicker {
  color: var(--rivver-blue);
} */

/* Navbar Dark Mode */
.landing-page.dark .navbar__logo,
.about-page.dark .navbar__logo,
.blog-page.dark .navbar__logo,
.contact-page.dark .navbar__logo,
.terms-page.dark .navbar__logo {
  filter: brightness(0) invert(1);
}
/* 
.about-page.dark .login__cta,
.contact-page.dark .login__cta,
.terms-page.dark .login__cta {
  border-color: var(--white);
  color: var(--white);
}

.about-page.dark .login__cta:hover,
.contact-page.dark .login__cta:hover,
.terms-page.dark .login__cta:hover {
  background-color: var(--white);
  color: var(--rivver-blue);
} */

/* 404 Not Found Page Dark Mode */
.landing-page.dark .hero__headline,
.landing-page.dark .hero__message {
  color: var(--white);
}

/* Blog Page Dark Mode */
.blog-page.dark {
  background-color: var(--dark-bg-layout);
  color: var(--white);
}

.blog-page.dark .main {
  background-color: var(--dark-bg-layout);
}

.blog-page.dark .section {
  background-color: var(--dark-bg-layout) !important;
}

.blog-page.dark .section__main {
  background-color: var(--dark-bg-layout);
}

.blog-page.dark .section__heading {
  color: var(--white);
}

.blog-page.dark .section__kicker {
  color: var(--rivver-blue);
}

.blog-title {
  color: var(--dark-cyan);
}

.blog-content {
  color: var(--dark-cyan);
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-page.dark .blog-title {
  color: var(--white);
}

.blog-page.dark .blog-content {
  color: rgba(255, 255, 255, 0.85);
}

.blog-page.dark .blog-content h1,
.blog-page.dark .blog-content h2,
.blog-page.dark .blog-content h3 {
  color: var(--white);
}

.blog-page.dark .blog-tag {
  background-color: #333 !important;
  color: #1e88e5 !important;
}

.blog-author {
  color: #333;
}

.blog-page.dark .blog-author {
  color: #ccc;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  border: 1px solid #eaeaea;
  background-color: #fff;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.blog-page.dark .blog-card {
  background-color: var(--dark-bg-container);
  border-color: rgba(255, 255, 255, 0.1);
}

.blog-page.dark .blog-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.blog-page .blog-tag {
  background-color: #f0f7ff;
  color: #1e88e5;
}

.blog-page.dark .blog-content p, 
.blog-page.dark .blog-content li {
  color: rgba(255, 255, 255, 0.7);
}


.waitlist-form .footer__newsletter-input, .waitlist-form .footer__newsletter-button { padding: 0.75rem 1rem; }
.navbar {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 5px 1rem !important;
  height: 50px !important;
  min-height: 50px;
  width: 100%;
  background-color: transparent;
}
.navbar__left {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2rem !important;
  flex-grow: 1;
}
.navbar__links {
  color: var(--rivver-blue) !important;
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 1.5rem !important;
  align-items: center !important;
}
.navbar__link {
  color: var(--rivver-blue) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  transition: color 0.3s ease !important;
  white-space: nowrap !important;
}
@media (min-width: 1440px) { .navbar {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 5px 1rem !important;
  height: 50px !important;
  width: 100%;
  background-color: transparent;
} .navbar__left {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2rem !important;
  flex-grow: 1;
} .navbar__links {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 1.5rem !important;
  align-items: center !important;
} }

.header:has(+:not(.hero)) { min-height: 50px; } @media (max-width: 1439px) { .navbar {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 5px 2rem !important;
  height: 50px !important;
  width: 100%;
  background-color: transparent;
} .navbar__left {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2rem !important;
  flex-grow: 1;
} .navbar__buttons { width: 100%; justify-content: flex-start; margin-top: 1rem; } }


.header::before, .header::after { display: none; }
.header--with-hero::before, .header--with-hero::after { display: block; }

@media (max-width: 768px) { 
  .navbar {
    padding: 5px 1rem !important;
    height: 50px !important;
  } 
  .navbar__logo { width: 40px !important; } 
  .navbar__link { 
    color: var(--rivver-blue) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: color 0.3s ease !important;
    white-space: nowrap !important;
  } 
  .navbar__left { gap: 1rem !important; } 
}
