:root {
    --accent-color: rgb(76, 175, 229);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html, body {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    height: 100%;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}


b {
    font-weight: 600;
}

a {
    transition: 0.1s ease;
}

a:hover {
    transform: scale(1.05)  rotate(-1deg);
}

a:active {
    transform: scale(0.95);
    filter: brightness(30%);
} 

p, button, li {
    color: #FFF;
    font-family: "JetBrains Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    line-height: 170%; 
    letter-spacing: -5%;
} 

h1 {
    color: #000;
    font-family: "JetBrains Mono";
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 47.6px */
    letter-spacing: -5%;
}

h2 {
    color: #000;
    font-family: "JetBrains Mono";
    font-size: 40;
    font-style: normal;
    font-weight: 400;
    line-height: 170%; /* 47.6px */
    letter-spacing: -5%;
}

section {
    height: 140vh;      
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
}

.bg-one {
  position: relative;
  overflow: hidden; 
}

.bg-one::before {
  content: "";
  position: absolute;
  inset: 0;                                                                 
  background-color: #F0EFF5;
  z-index: 0;
}

.bg-one > * {
  position: relative;
  z-index: 1;
}

.bg-one-blob {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(180px, 22vw, 360px);
  height: clamp(180px, 22vw, 360px);
  background: #4CAFE5;
  opacity: 0.65;
  filter: blur(60px);
  transform: translate(0, 0);
  border-radius: 36% 64% 45% 55% / 52% 34% 66% 48%;
  pointer-events: none;
  z-index: 0; 
  will-change: transform, border-radius;
  animation: blob-morph 20s ease-in-out infinite alternate, blob-wobble 12s ease-in-out infinite alternate;
}
@keyframes blob-morph {
  0%   { border-radius: 36% 64% 45% 55% / 52% 34% 66% 48%; }
  25%  { border-radius: 42% 58% 40% 60% / 47% 39% 61% 53%; }
  50%  { border-radius: 55% 45% 58% 42% / 40% 62% 38% 60%; }
  75%  { border-radius: 47% 53% 40% 60% / 58% 37% 63% 42%; }
  100% { border-radius: 36% 64% 45% 55% / 52% 34% 66% 48%; }
}

@keyframes blob-wobble {
  0%   { box-shadow: 0 0 40px rgba(76,175,229,0.35); }
  100% { box-shadow: 0 0 65px rgba(76,175,229,0.55); }
}

.bg-one-hero-text {
    position: relative;
    right: 0px;
    width: 100%;
    text-align: right;
    margin-top: 100px;
}

.bg-one h1 {
    color: black;
    padding-right: 40px;
}

.customquote {
    padding-right: 0px !important; 
}

.bg-one p, li {
    color: black;
}



.pricing-holders {
    display: flex;
    gap: 60px;
    margin: 0 auto;
    justify-content: stretch;
    margin-top: 50px;
}

.pricing-holders > div {
    padding-left: 48px;
    padding-right: 48px;
    padding-top: 93px;
    padding-top: 158px;
    backdrop-filter: blur(320px);
    width: 360px;
    height: 930px;
    border: 1px solid rgba(0,0,0,0.5);
    box-shadow: 2px 2px 4px 0px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}




.pricing-holders > div > p, li {
    font-size: 18px;
}

.pricing-holders > div > div {
    margin-top: 46px;
    margin-bottom: 69px;
}

.pricing-holders img {
    filter: invert();
    width: 24px;
}
.pricing-holders > div > a{
    display: flex;
    align-items: center;
    margin-bottom: 158px;
    width: 100%;
    height: 35px;
    background-color: #4fad74;
    border: none;
    box-shadow: 11px 14px 20.5px 0px rgba(0, 0,0,0.25);
}
.pricing-holders > div > a > img{
    margin: 0 auto;
    height: 24px;
}

.pricing {
    display: flex;
    flex-direction: column;
    margin-top: 46px;
    
}
.pricing p, h1 {
    line-height: 100%;
}
.pricing p {
    font-size: 16px;
}

.pricing h1 {
    font-size: 46px;
    font-weight: 700;
}

.pricing > div {
    display: flex;
}

.pricing > h1 {
    text-align: center;
    font-size: 20px;
}

.pricing > div > div {
    margin-left: -35px;
    display: flex;
    flex-direction: column;
    width: 400px;
    justify-content: center;

}

.topbar {
    mix-blend-mode: difference;
    position: fixed;     /* sticks to top */
    top: 0;
    left: 0;
    width: 100%; 
    height: 80px; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-weight: 200;
    color: white;
    font-size: 20px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: -5% ;
    padding: 0 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;       /* keep it above everything else */
}

.nav-links {
    display: flex;
    justify-content: center;
    flex: 1; 
    gap: 20px;
    mix-blend-mode: difference;
}

.nav-links div {
    transition: 0.1s ease-in;
}

.nav-links div:hover {
    filter: brightness(75%);
    transform: scale(1.05)  rotate(-1deg);
}

.nav-links div:active {
    transform: scale(0.95);
    filter: brightness(30%);
}

.topbar img {
    width: 100px;
    margin-left: auto; /* pushes image to far right */
}


.footer {
    background-color: black;
    height: 568px;
    align-items: start;
    justify-content: space-between;
}

.footer-left {
    width: 853px;
    margin-left: 117px;
    margin-top: 70px;
}
.footer-hero {
    text-align: left;
    left: 0px;
    font-size: 40px;
}

.footer-hyperlinks {
    display: flex; 
    gap: 165px;
    margin-top: 70px;
    margin-right: 110px;
}

.footer-hyperlinks div p {
    transition: 0.1s ease-in;
}

.footer-hyperlinks div p:hover {
    filter: brightness(75%);
    transform: scale(1.05)  rotate(-1deg);
}

.footer-hyperlinks div p:active {
    transform: scale(0.95);
    filter: brightness(30%);
}


.email-input {
    margin-top: 60px;
    height: 50px;
    width: 673px;
    border-bottom: 1px solid white;
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.email-input a {
    margin: auto 0;
    transition: 0.1s ease-in;
}


.email-input a:hover {
    filter: brightness(75%);
    transform: scale(1.05)  rotate(-1deg);
}

.email-input a:active {
    transform: scale(0.95);
    filter: brightness(30%);
}


.email-input input {
    background-color: transparent;
    color: #FFF;
    font-family: "JetBrains Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 200;
    letter-spacing: -5%;
    border: none;
}

.email-input input:focus {
    outline: none;
}
.socials {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.socials a {
    transition: 0.1s ease-in;
}

.socials a:hover {
    filter: brightness(75%);
    transform: scale(1.05)  rotate(-1deg);
}

.socials a:active {
    transform: scale(0.95);
    filter: brightness(30%);
}


.copyright {
    margin-top: 60px;
    font-size: 14px;
}