html{
  overflow-y: scroll;
}

*{
  box-sizing: border-box;
}

body{
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.root-landing{
  display: flex;
  min-height: 100vh;
  position: relative;
}

.root-landing::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  transform: translateX(-2px);
  background: linear-gradient(to bottom, rgba(11,109,102,.0), rgba(11,109,102,.6), rgba(255,255,255,.1));
  opacity: .6;
  pointer-events: none;
}

.root-pane{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}

.root-pane__content{
  max-width: 440px;
  position: relative;
  z-index: 2;
}

.root-kicker{
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.root-title{
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 16px 0;
}

.root-lead{
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 28px 0;
}

.root-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.root-link:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(2,8,23,.12);
}

.root-pane--websites{
  background: radial-gradient(1200px 900px at 50% 0%, rgba(11,109,102,.14), rgba(255,255,255,0) 60%),
              radial-gradient(900px 700px at 10% 100%, rgba(15,23,42,.10), rgba(255,255,255,0) 55%),
              #cfe9e0;
  color: #0f172a;
}

.root-pane--websites::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/binary.png");
  background-repeat: repeat-y;
  background-size: 60% auto;
  background-position: left 0;
  opacity: .12;
  pointer-events: none;
  will-change: background-position;
  animation: rootBinaryFall 22s linear infinite;
}

.root-pane--websites .root-kicker{
  color: rgba(11,109,102,.9);
}

.root-pane--websites .root-lead{
  color: rgba(15,23,42,.72);
}

.root-pane--websites .root-link{
  background: rgba(11,109,102,.92);
  color: #f6f5f1;
}

.root-pane--integrations{
  background: #050A14 url("../img/hero.png") no-repeat center/cover;
  color: rgba(255,255,255,.92);
}

.root-pane--integrations::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 600px at 15% 5%, rgba(255,255,255,.08), rgba(255,255,255,0) 60%),
    radial-gradient(1000px 700px at 80% 20%, rgba(82,130,255,.10), rgba(255,255,255,0) 65%);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center 0, center 0;
  opacity: .35;
  mix-blend-mode: screen;
  pointer-events: none;
}

.root-pane--integrations .root-kicker{
  color: rgba(255,255,255,.7);
}

.root-pane--integrations .root-lead{
  color: rgba(255,255,255,.75);
}

.root-pane--integrations .root-link{
  background: #ffffff;
  color: #050A14;
}

.root-pane__note{
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: .7;
}

@keyframes rootBinaryFall{
  from{ background-position: left 0; }
  to{ background-position: left 1400px; }
}

@media (max-width: 900px){
  .root-landing{
    flex-direction: column;
  }

  .root-landing::after{
    left: 0;
    right: 0;
    top: 50%;
    bottom: auto;
    width: 100%;
    height: 4px;
    transform: translateY(-2px);
  }
}

@media (max-width: 600px){
  .root-pane{
    padding: 48px 24px;
  }
}
.root-pane--websites::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/binary.png");
  background-repeat: repeat-y;
  background-size: 100% auto;   /* <-- var 60% */
  background-position: left 0;
  opacity: .12;
  pointer-events: none;
  will-change: background-position;
  animation: rootBinaryFall 22s linear infinite;
}