: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,  input {
    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: 100vh;      
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex;
    align-items: flex-start;
    color: white;
    font-size: 2rem;
}

.bg-one {
  /* Allow the section to grow with content while staying at least viewport height */
  height: auto;
  min-height: 200vh;
  padding: 0 0 0 0; /* breathing room above/below text */
  position: relative;
  overflow: hidden; 

}

.bg-one::before {
    /* Match the container's dynamic height */
    height: 100%;
    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: 20px;
}

.bg-one h1 {
    color: black;
   
}

.bg-one p {
    color: black;
}

.main {
    height: 100vh;
    display: flex;
    justify-content: space-between;
}

.main div {
    width: 50%;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.left div {
    width: 40%;
}

.left h1 {
    font-size: 24px;
}

.left p {
    font-size: 18px;
}

.right {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 10px;
}

.right h1 {
    font-size: 32px;
    font-style: italic;
}

.right p {
    font-size: 20px;
    font-style: italic;
}

.right h2 {
    font-size: 40px;
    margin-top: 60px;
}

.right i {
    opacity: 0.5;
    font-size: 18px;
}

.right input {
    width: 559px;
    height: 60px;
    backdrop-filter: blur(20px);
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(0,0,0,1);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
    color: rgba(0,0,0,1);
    font-size: 18px;
    text-align: right;
    padding: 20px;
}

.right input::placeholder,  .right textarea::placeholder{
    opacity: 0.3;
}


.right textarea {
    width: 559px;
    backdrop-filter: blur(20px);
    background-color: rgba(255,255,255,0);
    border: 1px solid rgba(0,0,0,1);
    border: 1px solid rgba(0,0,0,1);
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
    color: black;
    font-size: 18px;
    text-align: right;
    padding: 20px;
    resize: none;
}

.right a, .demo a {

    background-color: rgb(90, 169, 122);
    width: 559px;
    height: 60px;
    text-align: center;
    
    line-height: 60px;
    color: black;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,0.5);


    font-family: "JetBrains Mono";
    font-size: 24px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: -5%;
    
}



.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 {
    font-size: 20px;
    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;
}

